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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
|
XCOMM platform: $TOG: FreeBSD.cf /main/21 1997/10/05 20:42:34 kaleb $
XCOMM
XCOMM
XCOMM
XCOMM platform: $XFree86: xc/config/cf/FreeBSD.cf,v 3.98 2000/08/16 01:45:27 dawes Exp $
#ifndef UseElfFormat
#define UseElfFormat DefaultToElfFormat
#endif
#if UseElfFormat
#define OSBinaryFormat [ELF]
#else
#define OSBinaryFormat [a.out]
#endif
#ifndef OSName
#define OSName DefaultOSName OSBinaryFormat
#endif
#ifndef OSVendor
#define OSVendor /**/
#endif
#ifndef OSMajorVersion
#define OSMajorVersion DefaultOSMajorVersion
#endif
#ifndef OSMinorVersion
#define OSMinorVersion DefaultOSMinorVersion
#endif
#ifndef OSTeenyVersion
#define OSTeenyVersion DefaultOSTeenyVersion
#endif
#ifndef OSRelVersion
/* Include this to get finer-grained information about the OS version */
#include "/usr/include/osreldate.h"
#define OSRelVersion __FreeBSD_version
#endif
XCOMM operating system: OSName (OSMajorVersion./**/OSMinorVersion./**/OSTeenyVersion) (OsRelVersion)
#define HasCplusplus YES
#define GccUsesGas YES
#define UseGas YES
#define GnuCpp YES
#define HasNdbm YES
#define HasPutenv YES
#define HasSnprintf YES
#define HasBSD44Sockets YES
#define HasDlopen YES
#ifndef HasLibCrypt
# define HasLibCrypt YES
#endif
#ifndef HasShm
# define HasShm YES
#endif
#define HasWChar32 YES
#define HasUsableFileMmap YES
#define HasNCurses YES
#define HasVarRun YES
#define HasVarDb 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
#define HasPlugin YES
#define VendorHasX11R6_3libXext YES /* XC or XFree86 >= 3.3.1 */
#define MkdirHierCmd mkdir -p
#ifndef LexCmd
#define LexCmd flex -l
#endif
#define CcCmd cc
#define CppCmd /usr/bin/cpp
#define PreProcessCmd CppCmd
#define StandardCppOptions -traditional
#define StandardCppDefines /**/
#if defined(UseInstalled)
#define DefaultCCOptions /**/
#else
#define DefaultCCOptions -ansi -pedantic -Dasm=__asm GccWarningOptions
#endif
#ifndef ExtraLibraries
/* support for multi-byte locales is in libxpg4 rather than libc */
#if (OSMajorVersion > 2 || (OSMajorVersion == 2 && OSMinorVersion >= 2)) && \
!(OSMajorVersion == 4 && OSRelVersion >= 400020) && \
!(OSRelVersion >= 500005)
#define ExtraLibraries -lxpg4
#else
#define ExtraLibraries /**/
#endif
#endif
#ifndef UseGnuMalloc
/* 2.2 doesn't really have GnuMalloc */
#if OSMajorVersion < 2 || (OSMajorVersion == 2 && OSMinorVersion < 2)
#define UseGnuMalloc YES
#else
#define UseGnuMalloc NO
#endif
#endif
/* 2.2.2 and later has setusercontext() */
#if OSMajorVersion > 2 || (OSMajorVersion == 2 && OSMinorVersion > 2) || \
(OSMajorVersion == 2 && OSMinorVersion == 2 && OSTeenyVersion >= 2)
#define HasSetUserContext YES
#endif
/* 3.3(?) and later has support for setting MTRRs */
#ifndef HasMTRRSupport
#if OSMajorVersion > 3 || (OSMajorVersion == 3 && OSMinorVersion >= 3)
#define HasMTRRSupport YES
#else
#define HasMTRRSupport NO
#endif
#endif
/*
* Drivers that don't need AGP can work with 4.0, but we don't have a
* mechanism for specifying a subset of drivers in the OS.cf files yet.
*/
#ifndef BuildXF86DRI
#if OSMajorVersion >= 5 || (OSMajorVersion == 4 && OSMinorVersion >= 1)
#define BuildXF86DRI YES
#endif
#endif
/*
* 4.1/i386 and 5.0/i386 have the AGP driver.
*/
#ifndef HasAgpGart
#if defined(i386Architecture) && \
(OSMajorVersion >= 5 || (OSMajorVersion == 4 && OSMinorVersion >= 1))
#define HasAgpGart YES
#endif
#endif
/*
* This doesn't work the way it does on every other system. On FreeBSD it's
* only a "hint, not a demand", whatever that means. Note that this is not
* what it says in the ld and ld.so man pages, which are rather vague on the
* matter.
*
* But we do know that if a) you do what the X Project team does and set your
* ProjectRoot to something like "/X11", and b) you have other X libraries,
* e.g. in /usr/X11R6/lib, and you have added /usr/X11R6/lib to your
* ld.so.cache with ldconfig, then any programs linked with this "hint" will
* find that ld.so ignores the "hint" at runtime and loads the libraries in
* the ld.so.cache, i.e.the wrong ones, instead! Empirically we find that
* the run-path is only used as a last resort to find the libraries, after
* the LD_LIBRARY_PATH and ld.so.cache.
*
* N. B. to FreeBSD users who are not familiar with the semantics of the run-
* path on other systems. The run-path is akin to a per-program ld.so.cache.
* If a program is linked with a run-path, that run-path should take
* precedence over _everything_ else! In my opinion ldconfig and the
* ld.so.cache should be deprecated immediately now that FreeBSD has run-
* paths. Any program that needs libraries that are outside the "well known"
* locations should be linked with a run-path.
*
* All of which begs the question: If this option doesn't work in any useful
* way, why did they (FreeBSD) bother to add it? It would be nice if FreeBSD
* would fix ld.so so that run-paths are truly useful.
*
* Using run-paths is added with the intent that vendors who ship X for
* FreeBSD should use it too. Once everyone uses it then there will be no
* reason for FreeBSD to assume that it knows where X libraries are installed
* and they can remove it from the list of directories they add to ld.so.cache
* in their /etc/rc file.
*/
#if OSMajorVersion > 2 || (OSMajorVersion == 2 && OSMinorVersion >= 2)
#ifndef ExtraLoadFlags
#if UseElfFormat
#define ExtraLoadFlags -Wl,-rpath,$(USRLIBDIRPATH)
#else
#define ExtraLoadFlags -Wl,-R,$(USRLIBDIRPATH)
#endif
#endif
#endif
#ifndef SharedLibraryLoadFlags
#if UseElfFormat
#define SharedLibraryLoadFlags -shared -rpath $(USRLIBDIRPATH)
#else
#define SharedLibraryLoadFlags -Bshareable -R $(USRLIBDIRPATH)
#endif
#endif
#ifndef GnuMallocLibrary
#define GnuMallocLibrary -lgnumalloc
#endif
#if (OSMajorVersion > 2) || (OSMajorVersion == 2 && OSMinorVersion >= 2) \
|| (OSMajorVersion == 2 && OSMinorVersion == 1 && OSTeenyVersion >= 6)
/* 2.1.6 and 2.2 have libz */
#ifndef HasZlib
#define HasZlib YES
#endif
#endif
/*
* For FreeBSD 2.2.5 and later don't make any assumptions about the version
* of Tcl in the base OS.
*
* Note the static libs in some versions of the FreeBSD packages are
* broken. The symptom of this is unresolved symbols when linking
* XF86Setup. If you run into this problem, either build your own
* static libs from the standard Tcl and Tk source, or change the
* definitions of XF86SetupUsesStatic{Tcl,Tk}. The latter is not
* recommended for binaries that are going to be redistributed.
*/
#if OSMajorVersion > 2 || (OSMajorVersion == 2 && OSMinorVersion > 2) || \
(OSMajorVersion == 2 && OSMinorVersion == 2 && OSTeenyVersion > 5)
/*
* For 2.2.6, 3.0 and later the defaults assume that the tcl-8.0 and tk-8.0
* packages have been installed. XF86Setup is much faster with 8.x than
* with earlier versions.
*
*/
#ifndef TkLibName
#define TkLibName tk80
#endif
#ifndef TkIncDir
#define TkIncDir /usr/local/include/tk8.0
#endif
#ifndef TclLibName
#define TclLibName tcl80
#endif
#ifndef TclIncDir
#define TclIncDir /usr/local/include/tcl8.0
#endif
#elif OSMajorVersion == 2 && OSMinorVersion == 2 && OSTeenyVersion > 2
/*
* For 2.2.5, the defaults assume that the tcl-7.6 and tk-4.2
* packages have been installed.
*/
#ifndef TkLibName
#define TkLibName tk42
#endif
#ifndef TkIncDir
#define TkIncDir /usr/local/include/tk4.2
#endif
#ifndef TclLibName
#define TclLibName tcl76
#endif
#ifndef TclIncDir
#define TclIncDir /usr/local/include/tcl7.6
#endif
#elif OSMajorVersion == 2 && OSMinorVersion == 2
/*
* FreeBSD 2.2 prior to 2.2.5
*
* tcl is part of the base OS.
*
* Note: the tk-4.1 package for FreeBSD doesn't have the static lib, so
* you'll have to build it yourself, or change the definition of
* XF86SetupUsesStaticTk.
*/
#ifndef TkLibName
#define TkLibName tk41
#endif
#ifndef TclLibName
#define TclLibName tcl
#endif
#ifndef TclLibDir
#define TclLibDir /usr/lib
#endif
#ifndef TclIncDir
#define TclIncDir /usr/include
#endif
/* FreeBSD 2.2 has libtcl in the base system */
#ifndef XF86SetupUsesStaticTcl
#define XF86SetupUsesStaticTcl NO
#endif
#else /* ! 2.2 or later */
#if OSMajorVersion == 2 && OSMinorVersion == 1 && OSTeenyVersion >= 6
/*
* 2.1.x with x >=6 has tk 4.1 and tcl 7.5 in the packages collection.
* Neither packages include the static libs, so you either need to build
* them yourself or set XF86SetupUsesStaticTcl and XF86SetupUsesStaticTk
* to NO. This isn't the default because we don't want the XFree86
* binaries to have these packages as a dependency.
*/
#ifndef TkLibName
#define TkLibName tk41
#endif
#ifndef TclLibName
#define TclLibName tcl75
#endif
#else /* ! 2.1.6 or later */
#ifndef TkLibName
#define TkLibName tk40
#endif
#ifndef TclLibName
#define TclLibName tcl74
#endif
#endif
#endif
#undef InstallCmd
#define InstallCmd /usr/bin/install
#if UseElfFormat
# define AsmElfDefines -D__ELF__
#else
# define AsmElfDefines /**/
#endif
#if GccUsesGas
# define GccGasOption -DGCCUSESGAS
# define AsmDefines -DUSE_GAS AsmElfDefines
#else
# define GccGasOption /**/
# define AsmDefines AsmElfDefines
#endif
#ifdef i386Architecture
#define ServerExtraDefines GccGasOption XFree86ServerDefines
#endif
#ifdef AlphaArchitecture
#define ServerExtraDefines GccGasOption XFree86ServerDefines -D_XSERVER64
#endif
#define StandardDefines -DCSRG_BASED
#if OSMajorVersion > 1
#define ServerOSDefines XFree86ServerOSDefines -DDDXTIME
#define XawI18nDefines -DUSE_XWCHAR_STRING
#define HasMakefileSafeInclude YES
#define IncludeMakefile(file) @@# dependencies are in .depend
#define DependFileName .depend
#ifndef DoLoadableServer
#define DoLoadableServer YES
#endif
#ifndef ForceNormalLib
#define ForceNormalLib YES
#endif
#define HasMkstemp YES
#else
#define ServerOSDefines XFree86ServerOSDefines -DDDXTIME -DXNO_SYSCONF
#define XawI18nDefines -DUSE_XWCHAR_STRING -DUSE_XMBTOWC
#endif
/* The GCC strength-reduce bug is fixed for FreeBSD 2.1.5 and later */
#ifndef DefaultGcc2i386Opt
#if OSMajorVersion > 2 || (OSMajorVersion == 2 && OSMinorVersion > 1) || (OSMajorVersion == 2 && OSMinorVersion == 1 && OSTeenyVersion >= 5)
#define DefaultGcc2i386Opt -O2
#endif
#endif
#ifdef i386Architecture
# define OptimizedCDebugFlags DefaultGcc2i386Opt
#else
# define OptimizedCDebugFlags -O
#endif
#ifndef PreIncDir
# define PreIncDir /usr/include
#endif
#define TroffCmd groff -Tps
#define NroffCmd groff -Tascii
#define SetTtyGroup YES
#ifndef ExtraFilesToClean
# define ExtraFilesToClean *.core
#endif
#define DefaultUserPath /bin:/usr/bin:/sbin:/usr/sbin:$(BINDIR):/usr/gnu/bin:/usr/local/bin
#define DefaultSystemPath /bin:/usr/bin:/sbin:/usr/sbin:$(BINDIR)
#ifndef SystemManDirectory
#define SystemManDirectory /usr/share/man
#endif
#define InstKmemFlags -g kmem -m 2755
/*
* Compress manual pages
*/
#ifndef CompressManPages
# define CompressManPages YES
#endif
#if CompressManPages
#ifndef CompressManCmd
# define CompressManCmd gzip -n
#endif
COMPRESSMANCMD = CompressManCmd
#ifndef InstallManPageLong
#define InstallManPageLong(file,destdir,dest) @@\
BuildInstallHtmlManPage(file,dest,$(MANSUFFIX)) @@\
@@\
install.man:: file.man @@\
MakeDir($(DESTDIR)destdir) @@\
$(RM) $(DESTDIR)destdir/dest.$(MANSUFFIX)* @@\
$(INSTALL) -c $(INSTMANFLAGS) file.man \ @@\
$(DESTDIR)destdir/dest.$(MANSUFFIX) @@\
-$(COMPRESSMANCMD) $(DESTDIR)destdir/dest.$(MANSUFFIX)
#endif
#ifndef InstallGenManPageLong
#define InstallGenManPageLong(file,destdir,dest,suffix) @@\
BuildInstallHtmlManPage(file,dest,suffix) @@\
@@\
install.man:: file.man @@\
MakeDir($(DESTDIR)destdir) @@\
$(RM) $(DESTDIR)destdir/dest.suffix* @@\
$(INSTALL) -c $(INSTMANFLAGS) file.man \ @@\
$(DESTDIR)destdir/dest.suffix @@\
-$(COMPRESSMANCMD) $(DESTDIR)destdir/dest.suffix
#endif
#ifndef InstallMultipleMan
#define InstallMultipleMan(list,dest) @@\
install.man:: list @@\
MakeDir($(DESTDIR)dest) @@\
@case '${MFLAGS}' in *[i]*) set +e;; esac; \ @@\
for i in list; do \ @@\
(MNAME=`echo $$i | cut -f1 -d.`; \ @@\
set -x; \ @@\
$(RM) $(DESTDIR)dest/$${MNAME}*; \ @@\
$(INSTALL) -c $(INSTMANFLAGS) $$i \ @@\
$(DESTDIR)dest/$${MNAME}.$(MANSUFFIX); \ @@\
$(COMPRESSMANCMD) $(DESTDIR)dest/$${MNAME}.$(MANSUFFIX)); \ @@\
done
#endif
/*
* InstallManPageAliases - install soft links for aliases.
*/
#ifndef InstallManPageAliasesBase
#define InstallManPageAliasesBase(file,destdir,aliases) @@\
install.man:: @@\
@(SUFFIX=`echo $(DESTDIR)destdir/file.* | sed -e 's,.*/[^\.]*.,,'`; \ @@\
for i in aliases; do (set -x; \ @@\
$(RM) $(DESTDIR)destdir/$$i.*; \ @@\
(cd $(DESTDIR)destdir; $(LN) file.$${SUFFIX} \ @@\
$$i.$${SUFFIX})); \ @@\
done)
#endif
#ifndef InstallManPageAliases
#define InstallManPageAliases(file,destdir,aliases) @@\
InstallHtmlManPageAliases(file,aliases,$(MANSUFFIX)) @@\
@@\
InstallManPageAliasesBase(file,destdir,aliases)
#endif
/*
* InstallGenManPageAliases - install soft links for aliases.
*/
#ifndef InstallGenManPageAliases
#define InstallGenManPageAliases(file,destdir,suffix,aliases) @@\
InstallHtmlManPageAliases(file,aliases,suffix) @@\
@@\
InstallManPageAliasesBase(file,destdir,aliases)
#endif
#endif
#if OSMajorVersion > 2 || (OSMajorVersion == 2 && OSMinorVersion >= 1)
#define HasBsdMake YES
#endif
#ifndef StaticLibrary
#define StaticLibrary(libpath,libname) -Wl,-Bstatic Concat(-L,libpath) Concat(-l,libname) -Wl,-Bdynamic
#endif
#if UseElfFormat
#define DlLibrary -rdynamic
#else
#define DlLibrary /**/
#endif
#ifdef AlphaArchitecture
#define IoLibrary -lio
#else
#define IoLibrary /**/
#endif
#define ServerExtraSysLibs IoLibrary
/*
* A hack to work around an optimization problem with gcc 2.95.2
*/
#if OSMajorVersion >= 4
#define GccOptBug295
#endif
#include <bsdLib.rules>
#include <xfree86.cf>
|