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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
XCOMM platform: $XConsortium: linux.cf,v 1.11 95/01/23 18:32:03 kaleb Exp $
XCOMM platform: $XFree86: xc/config/cf/linux.cf,v 3.22 1995/01/28 15:40:22 dawes Exp $
#define OSName Linux
#define OSVendor /**/
#define OSMajorVersion 1
#define OSMinorVersion 0
#define OSTeenyVersion 0
#ifndef UseElfFormat
#define UseElfFormat NO
#endif
#define HasGcc YES
#define HasGcc2 YES
#ifndef HasGcc2ForCplusplus
# define HasGcc2ForCplusplus YES
#endif
#define GccUsesGas YES
#define UseGas YES
#define GnuCpp YES
#define HasShadowPasswd NO
#ifndef HasLibCrypt
# define HasLibCrypt NO
#endif
#define HasPutenv YES
#define HasShm YES
#define HasSockets YES
#define AvoidNullMakeCommand YES
#define StripInstalledPrograms YES
#define CompressAllFonts YES
#define Malloc0ReturnsNull YES
#define NeedConstPrototypes YES
#define NeedFunctionPrototypes YES
#define NeedNestedPrototypes YES
#define NeedVarargsPrototypes YES
#define NeedWidePrototypes NO
#if UseElfFormat
#define CcCmd gcc -b i486-linuxelf
#define AsCmd /usr/i486-linuxelf/bin/as
#define LdCmd ld -m elf_i386
#define AsmDefines -D__ELF__
#define CplusplusCmd g++ -b i486-linuxelf
#else
#define CcCmd gcc
#define AsCmd as
#define LdCmd ld
#define AsmDefines -DUSE_GAS
#endif
#define CppCmd /lib/cpp
#define YaccCmd bison -y
#define LexCmd flex -l
#define LexLib -lfl
#define PreProcessCmd CcCmd -E
#define PostIncDir `CcCmd --print-libgcc-file-name | sed 's/libgcc.a/include/'`
#define LdCombineFlags -r
/*
* commented out by jamal
*#define OptimizedCDebugFlags -O2 -m486
*/
#define StandardDefines -Dlinux -D__i386__ -D_POSIX_SOURCE \
-D_BSD_SOURCE -D_GNU_SOURCE -DX_LOCALE
/* commemnted out by jamal
#define XawI18nDefines -DUSE_XWCHAR_STRING -DUSE_XMBTOWC
#define HasWChar32 YES
#define StandardCppDefines -traditional StandardDefines
#define ServerOSDefines XFree86ServerOSDefines -DDDXTIME -DPART_NET
#define ServerExtraDefines -DGCCUSESGAS XFree86ServerDefines
#define ServerExtraSysLibs $(CBRT) -lm
#define ConnectionFlags -DUNIXCONN -DTCPCONN
*/
/* Some of these man page defaults are overriden in the above OS sections */
#ifndef ManSuffix
# define ManSuffix 1x
#endif
#ifndef ManDir
# define ManDir $(MANSOURCEPATH)1
#endif
#ifndef LibManSuffix
# define LibManSuffix 3x
#endif
#ifndef LibmanDir
# define LibmanDir $(MANSOURCEPATH)3
#endif
#ifndef FileManSuffix
# define FileManSuffix 5x
#endif
#ifndef FileManDir
# define FileManDir $(MANSOURCEPATH)5
#endif
/*
*#include <lnxLib.rules>
*#include <xfree86.cf>
*/
|