1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
XCOMM platform: $XConsortium: sun.cf,v 1.72.1.1 92/03/18 13:13:37 rws Exp $
#define OSName SunOS 4.1.1
XCOMM operating system: OSName
#define OSMajorVersion 4
#define OSMinorVersion 1
#define OSTeenyVersion 1
#if OSMajorVersion < 4 || (OSMajorVersion == 4 && OSMinorVersion < 1)
/* We do not guarantee this will work */
#define BootstrapCFlags -DNOSTDHDRS
#define StandardDefines -DNOSTDHDRS
#endif
/* You ALSO need this if you have Sun ld patch 100170-06 or later to 4.1.1 */
#if OSMajorVersion == 4 && (OSMinorVersion > 1 || (OSMinorVersion == 1 && OSTeenyVersion > 1))
#define SunPost411FCSLd YES
#endif
#define HasSaberC YES
#define HasNdbm YES
#define HasShm YES
#define HasSecureRPC YES
#define HasPutenv YES
#define ExtraLibraries -R/usr/ucblib -L/usr/ucblib -lucb
#ifdef sparc
#undef sparc
#define SparcArchitecture
#endif
#ifdef sun386
#undef sun386
#define i386Architecture
#endif
#if HasGcc
#define ExtraLoadFlags -B/usr/bin/
#define AllocateLocalDefines /**/
.c.o:
$(CC) -c $(CFLAGS) $*.c
#else
#define AllocateLocalDefines -DINCLUDE_ALLOCA_H
#ifdef mc68000
#define DefaultCCOptions -f68881 -pipe
#else
#define DefaultCCOptions
#endif
#endif
#ifdef Solaris2
#define DefaultCCOptions -DSolaris
#endif
#define LibraryCCOptions /* don't want special floating point */
|