aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-03-23 05:57:11 +0000
committerJim Blandy1993-03-23 05:57:11 +0000
commit90e80f3c34d175cbc005e261131b763352de9cc6 (patch)
tree0dd0feee5e1930bff6cfc158c691c0814182406d /src
parent033791beb4bca2b91f74c39c346972f9432f442c (diff)
downloademacs-90e80f3c34d175cbc005e261131b763352de9cc6.tar.gz
emacs-90e80f3c34d175cbc005e261131b763352de9cc6.zip
* config.h.in (C_SWITCH_X_SITE, LD_SWITCH_X_SITE): New flags.
* ymakefile (C_SWITCH_X_SITE, LD_SWITCH_X_SITE): Provide default values. Include C_SWITCH_X_SITE in CFLAGS, include LD_SWITCH_X_SITE in LIBX, and pass C_SWITCH_X_SITE to the make which builds the X Menu library.
Diffstat (limited to 'src')
-rw-r--r--src/config.in24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/config.in b/src/config.in
index 6886fd79ad0..ea4702ea279 100644
--- a/src/config.in
+++ b/src/config.in
@@ -154,18 +154,26 @@ and this notice must be preserved on all copies. */
154#endif 154#endif
155#endif 155#endif
156 156
157/* Define LD_SWITCH_SITE to contain any special flags your loader may 157/* Define LD_SWITCH_SITE to contain any special flags your loader may need. */
158 need. For instance, if you've defined HAVE_X_WINDOWS above and your
159 X libraries aren't in a place that your loader can find on its own,
160 you might want to add "-L/..." or something similar. */
161/* #define LD_SWITCH_SITE */ 158/* #define LD_SWITCH_SITE */
162 159
163/* Define C_SWITCH_SITE to contain any special flags your compiler may 160/* Define C_SWITCH_SITE to contain any special flags your compiler needs. */
164 need. For instance, if you've defined HAVE_X_WINDOWS above and your
165 X include files aren't in a place that your compiler can find on its
166 own, you might want to add "-I/..." or something similar. */
167/* #define C_SWITCH_SITE */ 161/* #define C_SWITCH_SITE */
168 162
163/* Define LD_SWITCH_X_SITE to contain any special flags your loader
164 may need to deal with X Windows. For instance, if you've defined
165 HAVE_X_WINDOWS above and your X libraries aren't in a place that
166 your loader can find on its own, you might want to add "-L/..." or
167 something similar. */
168/* #define LD_SWITCH_X_SITE */
169
170/* Define C_SWITCH_X_SITE to contain any special flags your compiler
171 may need to deal with X Windows. For instance, if you've defined
172 HAVE_X_WINDOWS above and your X include files aren't in a place
173 that your compiler can find on its own, you might want to add
174 "-I/..." or something similar. */
175/* #define C_SWITCH_X_SITE */
176
169/* Define the return type of signal handlers if the s-xxx file 177/* Define the return type of signal handlers if the s-xxx file
170 did not already do so. */ 178 did not already do so. */
171#ifndef SIGTYPE 179#ifndef SIGTYPE