comparison src/paths.h.in @ 388:aabb7f5b1c81 r21-2-9

Import from CVS: tag r21-2-9
author cvs
date Mon, 13 Aug 2007 11:09:42 +0200
parents cc15677e0335
children 74fd4e045ea6
comparison
equal deleted inserted replaced
387:f892a9d0bb8d 388:aabb7f5b1c81
32 32
33 PATH_PREFIX The value of --prefix. 33 PATH_PREFIX The value of --prefix.
34 34
35 PATH_LOADSEARCH The default value of `load-path'. 35 PATH_LOADSEARCH The default value of `load-path'.
36 36
37 PATH_MODULESEARCH The default value of `module-load-path'.
38
37 PATH_PACKAGEPATH The default value of `package-path'. 39 PATH_PACKAGEPATH The default value of `package-path'.
38 40
39 PATH_SITE The default location of site-specific Lisp files. 41 PATH_SITE The default location of site-specific Lisp files.
42
43 PATH_SITE_MODULES The default location of site-specific modules.
40 44
41 PATH_EXEC The default value of `exec-directory' and `exec-path'. 45 PATH_EXEC The default value of `exec-directory' and `exec-path'.
42 (exec-path also contains the value of whatever is in 46 (exec-path also contains the value of whatever is in
43 the PATH environment variable.) 47 the PATH environment variable.)
44 48
67 71
68 #ifdef LISPDIR_USER_DEFINED 72 #ifdef LISPDIR_USER_DEFINED
69 #define PATH_LOADSEARCH "@LISPDIR@" 73 #define PATH_LOADSEARCH "@LISPDIR@"
70 #endif 74 #endif
71 75
76 #ifdef MODULEDIR_USER_DEFINED
77 #define PATH_MODULESEARCH "@MODULEDIR@"
78 #endif
79
80 #ifdef SITELISPDIR_USER_DEFINED
81 #define PATH_SITE "@SITELISPDIR@"
82 #endif
83
84 #ifdef SITEMODULEDIR_USER_DEFINED
85 #define PATH_SITE_MODULES "@SITEMODULEDIR@"
86 #endif
87
72 #ifdef PACKAGE_PATH_USER_DEFINED 88 #ifdef PACKAGE_PATH_USER_DEFINED
73 #define PATH_PACKAGEPATH "@PACKAGE_PATH@" 89 #define PATH_PACKAGEPATH "@PACKAGE_PATH@"
74 #endif 90 #endif
75 91
76 #ifdef ARCHLIBDIR_USER_DEFINED 92 #ifdef ARCHLIBDIR_USER_DEFINED