Remove UXPDS support
This commit is contained in:
@@ -17,7 +17,7 @@ LOCAL_LIBRARIES = ../libDtCmP/libDtCmP.a $(CSALIB) DtClientLibs
|
||||
-DRELMAJOR="$(OSMAJORVERSION)" -DRELMINOR="$(OSMINORVERSION)" \
|
||||
$(ICONV_INBUF_DEFINE)
|
||||
|
||||
#if defined(RsArchitecture) || defined(USLArchitecture) || defined(UXPArchitecture) || defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
#if defined(RsArchitecture) || defined(USLArchitecture) || defined(LinuxArchitecture) || defined(BSDArchitecture)
|
||||
TTY_LIBRARIES = $(LOCAL_LIBRARIES)
|
||||
#elif defined(AlphaArchitecture)
|
||||
TTY_LIBRARIES = $(DTCMPLIB) $(CSALIB) $(DTSVCLIB) $(XTOOLLIB) $(XLIB)
|
||||
|
||||
@@ -59,14 +59,14 @@
|
||||
#include <pwd.h>
|
||||
#include <netdb.h>
|
||||
#include <sys/utsname.h> /* SYS_NMLN */
|
||||
#if defined(sun) || defined(USL) || defined(__uxp__)
|
||||
#if defined(sun) || defined(USL)
|
||||
#include <sys/systeminfo.h>
|
||||
#else
|
||||
#include <sys/dir.h>
|
||||
#endif /* sun || USL || __uxp__ */
|
||||
#endif /* sun || USL */
|
||||
#include <sys/param.h>
|
||||
|
||||
#if (defined(USL) || defined(__uxp__)) && !defined(DOM_NM_LN)
|
||||
#if defined(USL) && !defined(DOM_NM_LN)
|
||||
#define DOM_NM_LN BUFSIZ
|
||||
#endif
|
||||
|
||||
@@ -548,13 +548,13 @@ cm_get_local_host()
|
||||
static char *local_host;
|
||||
|
||||
if (local_host == NULL) {
|
||||
#if defined(sun) || defined(USL) || defined(__uxp__)
|
||||
#if defined(sun) || defined(USL)
|
||||
local_host = (char *)ckalloc(MAXHOSTNAMELEN);
|
||||
(void) sysinfo(SI_HOSTNAME, local_host, MAXHOSTNAMELEN);
|
||||
#else
|
||||
local_host = (char *)ckalloc(MAXHOSTNAMELEN);
|
||||
(void) gethostname(local_host, MAXHOSTNAMELEN);
|
||||
#endif /* sun || USL || __uxp__ */
|
||||
#endif /* sun || USL */
|
||||
}
|
||||
return local_host;
|
||||
}
|
||||
@@ -582,14 +582,14 @@ cm_get_local_domain()
|
||||
|
||||
if (local_domain == NULL) {
|
||||
local_domain = ckalloc(BUFSIZ);
|
||||
#if defined(sun) || defined(USL) || defined(__uxp__)
|
||||
#if defined(sun) || defined(USL)
|
||||
sysinfo(SI_SRPC_DOMAIN, local_domain, DOM_NM_LN);
|
||||
#else
|
||||
if(-1 == getdomainname(local_domain, BUFSIZ)) {
|
||||
fprintf(stderr, "getdomainname() failed %d '%s'\n", errno, strerror(errno));
|
||||
}
|
||||
|
||||
#endif /* sun || USL || __uxp__ */
|
||||
#endif /* sun || USL */
|
||||
}
|
||||
return(local_domain);
|
||||
}
|
||||
|
||||
@@ -428,7 +428,7 @@ setinput (FILE* f)
|
||||
return(-1);
|
||||
}
|
||||
|
||||
#if !defined(USL) && !defined(__uxp__) && !defined(linux)
|
||||
#if !defined(USL) && !defined(linux)
|
||||
/* no madvise so we lose this optimization */
|
||||
madvise(start_of_mmapped_area, len, MADV_SEQUENTIAL);
|
||||
#endif
|
||||
|
||||
@@ -46,12 +46,12 @@
|
||||
#endif /* _NETINET_IN_H */
|
||||
#endif
|
||||
|
||||
#if defined(SunOS) || defined(USL) || defined(__uxp__)
|
||||
#if defined(SunOS) || defined(USL)
|
||||
#include <netconfig.h>
|
||||
#include <netdir.h>
|
||||
#include <sys/stropts.h>
|
||||
#include <tiuser.h>
|
||||
#endif /* SunOS || USL || __uxp__ */
|
||||
#endif /* SunOS || USL */
|
||||
#include <sys/param.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
@@ -521,7 +521,7 @@ main(int argc, char **argv)
|
||||
SVCXPRT *udp_transp = (SVCXPRT *)-1;
|
||||
int fd, error;
|
||||
|
||||
#if defined(SunOS) || defined(USL) || defined(__uxp__)
|
||||
#if defined(SunOS) || defined(USL)
|
||||
struct netconfig *nconf_udp;
|
||||
struct netconfig *nconf_tcp;
|
||||
struct t_info info;
|
||||
@@ -548,7 +548,7 @@ main(int argc, char **argv)
|
||||
|
||||
standalone = 0;
|
||||
|
||||
#if defined(SunOS) || defined(USL) || defined(__uxp__)
|
||||
#if defined(SunOS) || defined(USL)
|
||||
#if !defined(USL) || (defined(USL) && (OSMAJORVERSION > 1))
|
||||
/* we need a TLI endpoint rather than a socket */
|
||||
if (ioctl(0, I_LOOK, mname) != 0) {
|
||||
@@ -621,7 +621,7 @@ main(int argc, char **argv)
|
||||
signal(SIGHUP, sighup_handler);
|
||||
|
||||
|
||||
#if defined(SunOS) || defined(USL) || defined(__uxp__)
|
||||
#if defined(SunOS) || defined(USL)
|
||||
/* raise the soft limit of number of file descriptor */
|
||||
/* this is to prevent the backend from running out of open file des */
|
||||
getrlimit(RLIMIT_NOFILE, &rl);
|
||||
@@ -629,7 +629,7 @@ main(int argc, char **argv)
|
||||
setrlimit(RLIMIT_NOFILE, &rl);
|
||||
#endif
|
||||
|
||||
#if defined(SunOS) || defined(USL) || defined(__uxp__)
|
||||
#if defined(SunOS) || defined(USL)
|
||||
nconf_udp = getnetconfigent("udp");
|
||||
nconf_tcp = getnetconfigent("tcp");
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <rpc/rpc.h>
|
||||
#if defined(SunOS) || defined(USL) || defined(__uxp__)
|
||||
#if defined(SunOS) || defined(USL)
|
||||
#include <netdb.h>
|
||||
#include <sys/systeminfo.h>
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user