linux: build with thread safety and REENTRANT enabled.
[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. 1997):
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
38 #ifndef DefaultLinuxCLibMajorVersion
39 # define DefaultLinuxCLibMajorVersion    6
40 #endif
41 #ifndef DefaultLinuxCLibMinorVersion
42 # define DefaultLinuxCLibMinorVersion    0
43 #endif
44 #ifndef DefaultLinuxCLibTeenyVersion
45 # define DefaultLinuxCLibTeenyVersion    0
46 #endif
47
48 #ifndef LinuxCLibMajorVersion
49 # define LinuxCLibMajorVersion           DefaultLinuxCLibMajorVersion
50 #endif
51 #ifndef LinuxCLibMinorVersion
52 # define LinuxCLibMinorVersion           DefaultLinuxCLibMinorVersion
53 #endif
54 #ifndef LinuxCLibTeenyVersion
55 # define LinuxCLibTeenyVersion           DefaultLinuxCLibTeenyVersion
56 #endif
57
58 #ifndef LinuxBinUtilsMajorVersion
59 # define LinuxBinUtilsMajorVersion       DefaultLinuxBinUtilsMajorVersion
60 #endif
61
62 XCOMM operating system:  OSName (OSMajorVersion./**/OSMinorVersion./**/OSTeenyVersion)
63 XCOMM libc:  (LinuxCLibMajorVersion./**/LinuxCLibMinorVersion./**/LinuxCLibTeenyVersion)
64 XCOMM binutils:  (LinuxBinUtilsMajorVersion)
65
66 #ifndef UseElfFormat
67 # if OSMajorVersion > 1 || (OSMajorVersion == 1 && OSMinorVersion > 1)
68 #  define UseElfFormat          YES
69 # else
70 #  define UseElfFormat          NO
71 #  error "Only ELF format is supported on linux"
72 # endif
73 #endif
74
75 #define UseInstalledX11         YES
76
77 #define BuildLibPathVar         LD_LIBRARY_PATH
78 #define HasGcc                  YES
79 #define HasGcc2                 YES
80 #define HasGcc2ForCplusplus     YES
81 #define GccUsesGas              YES
82 #define UseGas                  YES
83 #define GnuCpp                  YES
84 #define HasShadowPasswd         YES
85 #define HasPutenv               YES
86 #define HasShm                  YES
87 #define HasSockets              YES
88
89 #define HasMakefileSafeInclude  YES
90 #define DependFileName          .depend
91 #define DependCmd               $(CC) -E -MM -MG
92
93 #ifdef IncludeMakefile
94 # undef IncludeMakefile
95 #endif
96
97 #define IncludeMakefile(file)   -include file
98
99 #if (LinuxDistribution == LinuxRedHat)
100 # define HasZlib                YES
101 #endif
102
103 #define AvoidNullMakeCommand    YES
104 #define StripInstalledPrograms  YES
105 #define CompressAllFonts        YES
106 #define Malloc0ReturnsNull      YES
107 #define NeedConstPrototypes     YES
108 #define NeedFunctionPrototypes  YES
109 #define NeedNestedPrototypes    YES
110 #define NeedVarargsPrototypes   YES
111 #define NeedWidePrototypes      NO
112 #define SetTtyGroup             YES
113
114 #define CcCmd                   gcc -g -pipe
115 #define CplusplusCmd            g++ -g -pipe -fpermissive
116 #define AsCmd                   as
117 #define LdCmd                   ld
118
119 #define CplusplusLibC           -lstdc++
120 #define AsmDefines              -D__ELF__
121
122 #define MkdirHierCmd            mkdir -p
123 #define CppCmd                  /lib/cpp
124 #if OSMajorVersion >= 2
125 # define YaccCmd                yacc
126 #else
127 # define YaccCmd                bison -y
128 #endif
129 #define LexCmd                  flex -l
130 #define LexLib                  -lfl
131 #define PreProcessCmd           CcCmd -E
132 #define PostIncDir              DefaultGccIncludeDir
133 #define LdCombineFlags          -r
134 #define XawI18nDefines          -DUSE_XWCHAR_STRING -DUSE_XMBTOWC
135 #define HasWChar32              YES
136 #define StandardCppDefines      -traditional -nostdinc StandardDefines
137 #define ExtensionOSDefines      -DXTESTEXT1
138
139 #define LinuxLocaleDefines      /**/
140
141 #define DefaultCCOptions        -ansi
142
143 XCOMM If you have the tirpc library on your system, and you have the
144 XCOMM libtirpc-dev installed, then define HasTIRPCLib to YES in either
145 XCOMM your host.def or site.def file.  Using the tirpc lib should
146 XCOMM allow running rpcbind in secure mode (ie: without the -i option).
147 XCOMM The default is NO.
148
149 #ifndef HasTIRPCLib
150 # define HasTIRPCLib NO
151 #endif
152
153 #if HasTIRPCLib
154 TIRPCLIB = -ltirpc
155 #else
156 TIRPCLIB = 
157 #endif
158
159 #if !defined(DefaultGcc2i386Opt)
160 # define DefaultGcc2i386Opt -O2 -fno-strict-aliasing -Wno-write-strings
161 #endif
162
163 #if LinuxCLibMajorVersion < 6
164 # define LinuxSourceDefines     -D_POSIX_SOURCE \
165                                 -D_BSD_SOURCE -D_SVID_SOURCE LinuxLocaleDefines
166 # ifndef HasLibCrypt
167 #  define HasLibCrypt           NO
168 # endif
169
170 #else
171 # define LinuxSourceDefines     -D_POSIX_C_SOURCE=199309L \
172                                 -D_POSIX_SOURCE \
173                                 -D_BSD_SOURCE -D_SVID_SOURCE -D_XOPEN_SOURCE \
174                                 -D__NO_STRING_INLINES -D__NO_MATH_INLINES \
175                                 LinuxLocaleDefines
176 # define HasPosixThreads        YES
177 # define ThreadedX              YES
178 # define HasThreadSafeAPI       YES
179 # define ThreadsLibraries       -lpthread
180 # define SystemMTDefines                -D_REENTRANT
181 # ifndef HasLibCrypt
182 #  define HasLibCrypt           YES
183 # endif
184 #endif
185
186 #ifdef SparcArchitecture
187 # define LinuxMachineDefines -Dsparc
188
189 # if UseElfFormat
190 #  define HasPlugin             YES
191 #  define VendorHasX11R6_3libXext YES     /* XC or XFree86 3.3.1 */
192 # endif
193 #endif /* SparcArchitecture */
194
195 #ifdef ARMArchitecture
196 # define LinuxMachineDefines -D__arm__
197 # define LSBBitOrder             YES
198
199 # if UseElfFormat
200 #  define HasPlugin              YES
201 #  define VendorHasX11R6_3libXext YES     /* XC or XFree86 3.3.1 */
202 # endif 
203 #endif /* ARMArchitecture */
204
205 #ifdef i386Architecture
206 # define OptimizedCDebugFlags   DefaultGcc2i386Opt
207 # define LinuxMachineDefines    -D__i386__
208 /* For DtHelp TIFF processing routines. */
209 # define LSBBitOrder             YES
210
211 # if UseElfFormat
212 #  define HasPlugin             YES
213 #  define VendorHasX11R6_3libXext       YES     /* XC or XFree86 3.3.1 */
214 # endif
215 #endif /* i386Architecture */
216
217 #ifdef AMD64Architecture
218 # define OptimizedCDebugFlags   DefaultGcc2i386Opt
219 # define LinuxMachineDefines    -D__x86_64__ 
220 /* For DtHelp TIFF processing routines. */
221 # define LSBBitOrder            YES
222
223 # if UseElfFormat
224 #  define HasPlugin             YES
225 #  define VendorHasX11R6_3libXext       YES     /* XC or XFree86 3.3.1 */
226 # endif
227 #endif /* AMD64Architecture */
228
229 #ifdef PpcArchitecture
230 # define OptimizedCDebugFlags    DefaultGcc2i386Opt
231 # define LinuxMachineDefines     -D__powerpc__
232 #endif /* PpcArchitecture */
233
234 #ifdef AlphaArchitecture
235 # define OptimizedCDebugFlags   DefaultGcc2i386Opt
236 # define LinuxMachineDefines    -D__alpha__
237 #endif /* AlphaArchitecture */
238
239 #ifdef Mc68020Architecture
240 # define OptimizedCDebugFlags   DefaultGcc2i386Opt
241 # define LinuxMachineDefines    -D__mc68000__
242 # define StandardCppDefines      -traditional 
243 #endif /* Mc68020Architecture */
244
245 #define StandardDefines         -Dlinux LinuxMachineDefines LinuxSourceDefines
246
247 #define ConnectionFlags         -DUNIXCONN -DTCPCONN
248
249 XCOMM This is needed for CDE currently
250 #define CplusplusStandardDefines StandardDefines 
251
252 /* Some of these man page defaults are overriden in the above OS sections */
253 #ifndef ManSuffix
254 # define ManSuffix      1x
255 #endif
256 #ifndef ManDir
257 # define ManDir         $(MANSOURCEPATH)1
258 #endif
259 #ifndef LibManSuffix
260 # define LibManSuffix   3x
261 #endif
262 #ifndef LibmanDir
263 # define LibmanDir      $(MANSOURCEPATH)3
264 #endif
265 #ifndef FileManSuffix
266 # define FileManSuffix  5x
267 #endif
268 #ifndef FileManDir
269 # define FileManDir     $(MANSOURCEPATH)5
270 #endif
271
272 #define ArchitectureDefines     -DLINUX_ARCHITECTURE
273
274 #define TtClientLibs $(TTLIB) $(TIRPCLIB) $(XTOOLLIB) $(XLIB)
275 #define TtClientDepLibs $(DEPTTLIB) $(DEPXTOOLLIB) $(DEPXLIB)
276
277 #include <lnxDep.rules>
278 #include <lnxLib.rules>