Add support for DG/UX.

Thanks to fraioli@dg-rtp.dg.com (Marc J. Fraioli).
This commit is contained in:
ramiro%netscape.com 1998-08-25 19:35:56 +00:00
parent d87d1e35f3
commit dd29666e79
3 changed files with 11 additions and 1 deletions

View File

@ -976,6 +976,14 @@ EXPORT_LDFLAGS += -lresolv -lsocket -lc /usr/ucblib/libucb.a
endif
########################################
# Data General DG/UX
ifeq ($(OS_ARCH),dgux)
OTHER_LIBS = $(MOTIFLIB) $(OS_LIBS)
endif
#######################################################################
$(MICROLINE_LIB):

View File

@ -1944,6 +1944,8 @@ build_user_agent_string(char *versionLocale)
strcat (buf, "NEC/EWS-UX/V");
#elif defined(SNI)
strcat (buf, "SINIX-N");
#elif defined(DGUX)
strcat (buf, "DG/UX");
#else
ERROR!! run "uname -s" and put the result here.
#endif

View File

@ -57,7 +57,7 @@ extern "C" char * _XmStringGetTextConcat(XmString);
#include "xpgetstr.h"
#if defined(IRIX) || defined(OSF1) || defined(SOLARIS) || defined(UNIXWARE) || defined(SNI) || defined(NCR) || defined(NEC)
#if defined(IRIX) || defined(OSF1) || defined(SOLARIS) || defined(UNIXWARE) || defined(SNI) || defined(NCR) || defined(NEC) || defined(DGUX)
#include <sys/statvfs.h> /* for statvfs() */
#define STATFS statvfs
#elif defined(SCO_SV)