Remove UXPDS support

This commit is contained in:
chase
2018-05-15 20:11:08 -05:00
committed by Jon Trulson
parent 0f8233dadd
commit 8a4f389634
319 changed files with 317 additions and 8776 deletions

View File

@@ -40,7 +40,7 @@
#ifdef __hpux
#include <ndir.h> /* opendir(), directory(3C) */
#else
#if defined(sun) || defined(USL) || defined(sco) || defined(__uxp__)
#if defined(sun) || defined(USL) || defined(sco)
#include <dirent.h> /* opendir(), directory(3C) */
#else
#include <sys/dir.h>

View File

@@ -38,7 +38,7 @@
#ifdef __hpux
#include <ndir.h>
#else
#if defined(sun) || defined(USL) || defined(sco) || defined(__uxp__)
#if defined(sun) || defined(USL) || defined(sco)
#include <dirent.h>
#else
#include <sys/dir.h>

View File

@@ -54,7 +54,7 @@ $END$
#endif
#include <langinfo.h>
#if defined(sun) || defined(USL) || defined(__uxp__)
#if defined(sun) || defined(USL)
#include <regexpr.h> /* for compile,advance */
#else
#include <regex.h> /* for regcomp,regexec */
@@ -125,7 +125,7 @@ typedef enum {
__DtXLATE_TYPE_CONTAINS = 4
} __DtXlateType;
#if defined(sun) || defined(USL) || defined(__uxp__)
#if defined(sun) || defined(USL)
/* Sun doesn't support regcomp() and regexec() yet, so
define this here and fill it will the results of advance() */
typedef struct regmatch_t {
@@ -1127,7 +1127,7 @@ Boolean CheckSearchOpValueMatchesSpec(
value or do a pure match */
if (srchData->curTransType == __DtXLATE_TYPE_REGEX)
{
#if defined(sun) || defined(USL) || defined(__uxp__)
#if defined(sun) || defined(USL)
char * ex = NULL;
/* True: leave escape char in place */
@@ -2199,7 +2199,7 @@ int _DtXlateGetXlateEnv(
/* then look up version number of execution host */
if (ret_AppExecEnvVersion)
{
#if defined(sun) || defined(_AIX) || defined(USL) || defined(__uxp__) || defined(__osf__) || defined(linux) || defined(CSRG_BASED)
#if defined(sun) || defined(_AIX) || defined(USL) || defined(__osf__) || defined(linux) || defined(CSRG_BASED)
char version[SYS_NMLN+SYS_NMLN+2];
#else
char version[UTSLEN+UTSLEN+2];