XCOMM platform: $XFree86: xc/config/cf/darwin.cf,v 1.20 2001/10/06 20:05:50 torrey Exp $ /* Darwin / Mac OS X configuration by John Carmack */ /* imake determines the default values by parsing uname */ #ifndef OSName #define OSName DefaultOSName #endif #ifndef OSMajorVersion #define OSMajorVersion DefaultOSMajorVersion #endif #ifndef OSMinorVersion #define OSMinorVersion DefaultOSMinorVersion #endif #ifndef OSTeenyVersion #define OSTeenyVersion DefaultOSTeenyVersion #endif XCOMM operating system: OSName (OSMajorVersion./**/OSMinorVersion./**/OSTeenyVersion) /* * Define the operating system's capabilities */ #define HasSnprintf YES #define HasPutenv YES #define HasBSD44Sockets YES #define HasUsableFileMmap YES #define HasZlib YES #ifndef HasShm # define HasShm YES #endif #define HasNdbm YES #ifndef HasGroff # define HasGroff YES #endif /* The most common file system, HFS+, is not case sensitive. */ #ifndef CaseSensitiveFileSystem # define CaseSensitiveFileSystem NO #endif /* * This enables some settings for developers. */ #ifndef XFree86Devel # define XFree86Devel NO #endif /* * This enables Quartz compatibility. * Turn off to build on raw Darwin systems. */ #ifndef DarwinQuartzSupport # define DarwinQuartzSupport YES #endif /* we don't need -lm */ #define MathLibrary /**/ /* we don't have a termcap library */ #define TermcapLibrary /**/ /* we don't have a dbm library */ #define DBMLibrary /**/ #define MkdirHierCmd mkdir -p /* our cpp isn't in /lib/cpp and it doesn't like -undef */ #define CppCmd /usr/bin/cpp #define RawCppCmd CppCmd #define StandardCppDefines -no-cpp-precomp /* we have a gcc compatible compiler, but its not called gcc */ #define CcCmd /usr/bin/cc #define CplusplusCmd /usr/bin/c++ /* default flags to pass to cc */ #ifndef DefaultCCOptions #if XFree86Devel # define DefaultCCOptions -Wall -Wpointer-arith -Wstrict-prototypes \ -Wmissing-prototypes -Wmissing-declarations \ -Wredundant-decls -Wnested-externs \ -no-cpp-precomp #else # define DefaultCCOptions -Wall -Wpointer-arith -no-cpp-precomp #endif #endif /* flags to pass to cc when building libraries */ #ifndef LibraryCCOptions # define LibraryCCOptions DefaultCCOptions -fno-common #endif #ifdef PpcDarwinArchitecture # define DarwinMachineDefines -D__powerpc__ # define OptimizedCDebugFlags -O2 # define ByteOrder X_BIG_ENDIAN #endif /* PpcDarwinArchitecture */ #ifdef i386DarwinArchitecture # define DarwinMachineDefines -D__i386__ # define OptimizedCDebugFlags -O2 -fno-strength-reduce # define ByteOrder X_LITTLE_ENDIAN #endif /* i386DarwinArchitecture */ /* * __DARWIN__ will be used for platform specific #ifdefs that can't * be handled by existing X defines. * * Darwin's alloca() seg faults (rather than returning NULL) on failed * allocations, so we can't use it. * * Darwin's setlocale() doesn't work properly, so use X11's instead. */ #define StandardDefines DarwinMachineDefines -D__DARWIN__ \ -DNO_ALLOCA -DCSRG_BASED /* * Set this to NO to just build the client libs, which should work without * having to write any platform specific code. */ #define BuildServer YES /* our custom X server */ #define XDarwinServer YES /* Thanks to the IOKit, the X server does not have to be SetUID. */ #ifndef InstallXserverSetUID # define InstallXserverSetUID NO #endif /* no direct graphics extension */ #define BuildXF86DGA NO /* no server support for extra tablets and weird input devices */ #define BuildXInputExt NO #define BuildXInputLib YES /* no Display Power Management extension */ #define BuildDPMSExt NO #define BuildLibPathVar DYLD_LIBRARY_PATH /* include rules to build shared libraries */ #include /* * Darwin specific Imake Config files */ #ifndef LocalConfigFiles #define LocalConfigFiles \ darwinLib.rules \ darwinLib.tmpl #endif /* include all the XFree86 rules */ #include