Merge branch 'linux1'
[oweals/cde.git] / cde / config / cf / linux.cf
1 XCOMM platform:  $TOG: linux.cf /main/47 1998/04/17 11:32:51 mgreess $
2
3 #ifndef OSName
4 #define OSName                  DefaultOSName
5 #endif
6 #ifndef OSMajorVersion
7 #define OSMajorVersion          DefaultOSMajorVersion
8 #endif
9 #ifndef OSMinorVersion
10 #define OSMinorVersion          DefaultOSMinorVersion
11 #endif
12 #ifndef OSTeenyVersion
13 #define OSTeenyVersion          DefaultOSTeenyVersion
14 #endif
15
16 #ifndef LinuxDistribution 
17 #define LinuxDistribution       DefaultLinuxDistribution
18 /*
19   Add "#define LinuxDistribution Linux<mumble>" to your site.def or host.def.
20   Currently only LinuxSuSE will be figured out automatically.
21   Valid values are (from the list at www.linux.org in Oct. '97):
22     LinuxUnknown    (0)
23     LinuxSuSE       (1)
24     LinuxCaldera    (2)
25     LinuxCraftworks (3)
26     LinuxDebian     (4)
27     LinuxInfoMagic  (5)
28     LinuxKheops     (6)
29     LinuxPro        (7)
30     LinuxRedHat     (8)
31     LinuxSlackware  (9)
32     LinuxTurbo      (10)
33     LinuxWare       (11)
34     LinuxYggdrasil  (12)
35 */
36 #endif
37 #ifndef LinuxCLibMajorVersion
38 #define LinuxCLibMajorVersion   DefaultLinuxCLibMajorVersion
39 #endif
40 #ifndef LinuxCLibMinorVersion
41 #define LinuxCLibMinorVersion   DefaultLinuxCLibMinorVersion
42 #endif
43 #ifndef LinuxCLibTeenyVersion
44 #define LinuxCLibTeenyVersion   DefaultLinuxCLibTeenyVersion
45 #endif
46 #ifndef LinuxBinUtilsMajorVersion
47 #define LinuxBinUtilsMajorVersion       DefaultLinuxBinUtilsMajorVersion
48 #endif
49
50 XCOMM operating system:  OSName (OSMajorVersion./**/OSMinorVersion./**/OSTeenyVersion)
51 XCOMM libc:  (LinuxCLibMajorVersion./**/LinuxCLibMinorVersion./**/LinuxCLibTeenyVersion)
52 XCOMM binutils:  (LinuxBinUtilsMajorVersion)
53
54 #ifndef UseElfFormat
55 #if OSMajorVersion > 1 || (OSMajorVersion == 1 && OSMinorVersion > 1)
56 #define UseElfFormat            YES
57 #else
58 #define UseElfFormat            NO
59 #error "Only ELF format is supported on linux"
60 #endif
61 #endif
62 #define BuildLibPathVar         LD_LIBRARY_PATH
63 #define HasGcc                  YES
64 #define HasGcc2                 YES
65 #define HasGcc2ForCplusplus     YES
66 #define GccUsesGas              YES
67 #define UseGas                  YES
68 #define GnuCpp                  YES
69 #define HasShadowPasswd         YES
70 #define HasPutenv               YES
71 #define HasShm                  YES
72 #define HasSockets              YES
73 #if (LinuxDistribution == LinuxRedHat)
74 #define HasZlib                 YES
75 #endif
76
77 #define AvoidNullMakeCommand    YES
78 #define StripInstalledPrograms  YES
79 #define CompressAllFonts        YES
80 #define Malloc0ReturnsNull      YES
81 #define NeedConstPrototypes     YES
82 #define NeedFunctionPrototypes  YES
83 #define NeedNestedPrototypes    YES
84 #define NeedVarargsPrototypes   YES
85 #define NeedWidePrototypes      NO
86 #define SetTtyGroup             YES
87
88 #define CcCmd                   gcc -pipe
89 #define CplusplusCmd            g++ -pipe -fpermissive 
90 #define AsCmd                   as
91 #define LdCmd                   ld
92
93 #define CplusplusLibC           -lstdc++
94 #define AsmDefines              -D__ELF__
95
96 #define MkdirHierCmd            mkdir -p
97 #define CppCmd                  /lib/cpp
98 #if OSMajorVersion >= 2
99 #define YaccCmd                 yacc
100 #else
101 #define YaccCmd                 bison -y
102 #endif
103 #define LexCmd                  flex -l
104 #define LexLib                  -lfl
105 #define PreProcessCmd           CcCmd -E
106 #define PostIncDir              DefaultGccIncludeDir
107 #define LdCombineFlags          -r
108 #define XawI18nDefines          -DUSE_XWCHAR_STRING -DUSE_XMBTOWC
109 #define HasWChar32              YES
110 #define StandardCppDefines      -traditional StandardDefines
111 #define ExtensionOSDefines      -DXTESTEXT1
112
113 #if (LinuxDistribution == LinuxSuSE)
114 #define LinuxLocaleDefines      /**/
115 #else
116 #define LinuxLocaleDefines      -DX_LOCALE
117 #endif
118
119 #if LinuxCLibMajorVersion < 6
120 # define LinuxSourceDefines     -D_POSIX_SOURCE \
121                                 -D_BSD_SOURCE -D_SVID_SOURCE LinuxLocaleDefines
122 # ifndef HasLibCrypt
123 #  define HasLibCrypt           NO
124 # endif
125
126 #else
127 # define LinuxSourceDefines     -D_POSIX_C_SOURCE=199309L \
128                                 -D_POSIX_SOURCE \
129                                 -D_BSD_SOURCE -D_SVID_SOURCE -D_XOPEN_SOURCE \
130                                 -D__NO_STRING_INLINES -D__NO_MATH_INLINES \
131                                 LinuxLocaleDefines
132 # define HasPosixThreads        YES
133 # define ThreadedX              YES
134 # define HasThreadSafeAPI       YES
135 # define ThreadsLibraries       -lpthread
136 # define SystemMTDefines                -D_REENTRANT
137 # ifndef HasLibCrypt
138 #  define HasLibCrypt           YES
139 # endif
140 #endif
141
142 #ifdef i386Architecture
143 #define OptimizedCDebugFlags    DefaultGcc2i386Opt
144 #define LinuxMachineDefines     -D__i386__
145 /* For DtHelp TIFF processing routines. */
146 #define LSBBitOrder             YES
147
148 #if UseElfFormat
149 #define HasPlugin               YES
150 #define VendorHasX11R6_3libXext YES     /* XC or XFree86 3.3.1 */
151 #endif
152 #endif /* i386Architecture */
153
154 #ifdef AMD64Architecture
155 #define OptimizedCDebugFlags    DefaultGcc2i386Opt
156 #define LinuxMachineDefines     -D__x86_64__ 
157 /* For DtHelp TIFF processing routines. */
158 #define LSBBitOrder             YES
159
160 #if UseElfFormat
161 #define HasPlugin               YES
162 #define VendorHasX11R6_3libXext YES     /* XC or XFree86 3.3.1 */
163 #endif
164 #endif /* AMD64Architecture */
165
166 #ifdef AlphaArchitecture
167 #define OptimizedCDebugFlags    -O2
168 #define LinuxMachineDefines     -D__alpha__
169 #endif /* AlphaArchitecture */
170
171 #ifdef Mc68020Architecture
172 #define OptimizedCDebugFlags    -O2
173 #define LinuxMachineDefines     -D__mc68000__
174 #define StandardCppDefines      -traditional 
175 #endif /* Mc68020Architecture */
176
177 #define StandardDefines         -Dlinux LinuxMachineDefines LinuxSourceDefines
178
179 #define ConnectionFlags         -DUNIXCONN -DTCPCONN
180
181 XCOMM This is needed for CDE currently
182 #define CplusplusStandardDefines StandardDefines 
183
184 /* Some of these man page defaults are overriden in the above OS sections */
185 #ifndef ManSuffix
186 # define ManSuffix      1x
187 #endif
188 #ifndef ManDir
189 # define ManDir         $(MANSOURCEPATH)1
190 #endif
191 #ifndef LibManSuffix
192 # define LibManSuffix   3x
193 #endif
194 #ifndef LibmanDir
195 # define LibmanDir      $(MANSOURCEPATH)3
196 #endif
197 #ifndef FileManSuffix
198 # define FileManSuffix  5x
199 #endif
200 #ifndef FileManDir
201 # define FileManDir     $(MANSOURCEPATH)5
202 #endif
203
204 #define ArchitectureDefines     -DLINUX_ARCHITECTURE
205
206 #define TtClientLibs $(TTLIB) $(XTOOLLIB) $(XLIB)
207 #define TtClientDepLibs $(DEPTTLIB) $(DEPXTOOLLIB) $(DEPXLIB)
208
209 #include <lnxLib.rules>
210 #include <xfree86.cf>