source: trunk/third/motif/config/site.def @ 12423

Revision 12423, 2.1 KB checked in by ghudson, 26 years ago (diff)
Linux and NetBSD support, from source-sipb.
Line 
1XCOMM site:  $XConsortium: site.def,v 1.2 91/07/30 20:26:44 rws Exp $
2
3/*****************************************************************************
4 *                                                                           *
5 *                         SITE-SPECIFIC DEFINITIONS                         *
6 *                                                                           *
7 * This file contains two halves, one included before the vendor-specific    *
8 * configuration file (.cf file), and one included after the .cf file.       *
9 * The before-half should be protected by #ifdef BeforeVendorCF, and the     *
10 * after-half should be protected by #ifdef AfterVendorCF.                   *
11 *                                                                           *
12 * The before-half should only set things that the .cf file depends on.      *
13 * For the .cf files shipped in this release, the main variable in this      *
14 * category is HasGcc.                                                       *
15 *                                                                           *
16 * The after-half should contain all other definitions.  For example,        *
17 * place your ProjectRoot definition here.  Beware that several of the       *
18 * .cf files supplied by vendors have a ProjectRoot already defined, so      *
19 * you may need to #undef it first.                                          *
20 *                                                                           *
21 * OS Major and Minor version numbers should be changed directly in the .cf  *
22 * file, not overridden in site.def.                                         *
23 *                                                                           *
24 *****************************************************************************/
25
26#ifdef BeforeVendorCF
27
28#ifdef OSF1Architecture
29#define HasGcc YES
30#endif
31
32#endif /* BeforeVendorCF */
33
34#ifdef AfterVendorCF
35
36/*
37#ifdef ProjectRoot
38#undef ProjectRoot
39#endif
40#define ProjectRoot /usr/X11R5
41*/
42
43#if defined(NetBSDArchitecture) || defined(LinuxArchitecture)
44#define ProjectRoot             /usr/athena
45#define AvoidNullMakeCommand    1
46#endif
47
48#define DontBuildMotifDemos
49
50#endif /* AfterVendorCF */
Note: See TracBrowser for help on using the repository browser.