site.def
来自「genesis 2000 v9.1软件下载」· DEF 代码 · 共 60 行
DEF
60 行
XCOMM site: $XConsortium: site.def,v 1.2 91/07/30 20:26:44 rws Exp $
/*****************************************************************************
* *
* SITE-SPECIFIC DEFINITIONS *
* *
* This file contains two halves, one included before the vendor-specific *
* configuration file (.cf file), and one included after the .cf file. *
* The before-half should be protected by #ifdef BeforeVendorCF, and the *
* after-half should be protected by #ifdef AfterVendorCF. *
* *
* The before-half should only set things that the .cf file depends on. *
* For the .cf files shipped in this release, the main variable in this *
* category is HasGcc. *
* *
* The after-half should contain all other definitions. For example, *
* place your ProjectRoot definition here. Beware that several of the *
* .cf files supplied by vendors have a ProjectRoot already defined, so *
* you may need to #undef it first. *
* *
* OS Major and Minor version numbers should be changed directly in the .cf *
* file, not overridden in site.def. *
* *
*****************************************************************************/
#ifdef BeforeVendorCF
/* #define HasGcc YES */
#endif /* BeforeVendorCF */
#ifdef AfterVendorCF
/*
#ifdef ProjectRoot
#undef ProjectRoot
#endif
#define ProjectRoot /usr/X11R5
*/
/*
sidd: This is to avoid having to have different versions of this
file for release and development.
The imake program will recognize X11DIR as an environment
variable for the build environment and define NCXBUILD to cpp.
*/
/*
sidd: The string substitution is done to circumvent the MKS make
problem with passing the '\' character through to sub-shells
*/
#ifdef NCXBUILD
#define ProjectRoot $(X11DIR:s~\~/~)
#else
#define ProjectRoot $(NCDIR:s~\~/~)
#endif
#endif /* AfterVendorCF */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?