diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/Makefile.in | 10 |
2 files changed, 7 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 18b53c58fbc..81eea170da1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-04-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM. | ||
| 4 | |||
| 1 | 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * alloc.c (lisp_align_malloc): Remove unneeded prototype. | 7 | * alloc.c (lisp_align_malloc): Remove unneeded prototype. |
| @@ -9738,7 +9742,7 @@ See ChangeLog.11 for earlier changes. | |||
| 9738 | ;; coding: utf-8 | 9742 | ;; coding: utf-8 |
| 9739 | ;; End: | 9743 | ;; End: |
| 9740 | 9744 | ||
| 9741 | Copyright (C) 2011-2012 Free Software Foundation, Inc. | 9745 | Copyright (C) 2011-2012 Free Software Foundation, Inc. |
| 9742 | 9746 | ||
| 9743 | This file is part of GNU Emacs. | 9747 | This file is part of GNU Emacs. |
| 9744 | 9748 | ||
diff --git a/src/Makefile.in b/src/Makefile.in index a90fd5841e4..bb9afa866af 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -75,16 +75,13 @@ C_SWITCH_MACHINE=@C_SWITCH_MACHINE@ | |||
| 75 | ## System-specific CFLAGS. | 75 | ## System-specific CFLAGS. |
| 76 | C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@ | 76 | C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@ |
| 77 | 77 | ||
| 78 | ## Currently only set if NS_IMPL_GNUSTEP. | 78 | GNUSTEP_CFLAGS=@GNUSTEP_CFLAGS@ |
| 79 | ## C_SWITCH_X_SITE may override this. | ||
| 80 | C_SWITCH_X_SYSTEM=@C_SWITCH_X_SYSTEM@ | ||
| 81 | 79 | ||
| 82 | ## Define C_SWITCH_X_SITE to contain any special flags your compiler | 80 | ## Define C_SWITCH_X_SITE to contain any special flags your compiler |
| 83 | ## may need to deal with X Windows. For instance, if you've defined | 81 | ## may need to deal with X Windows. For instance, if you've defined |
| 84 | ## HAVE_X_WINDOWS and your X include files aren't in a place that your | 82 | ## HAVE_X_WINDOWS and your X include files aren't in a place that your |
| 85 | ## compiler can find on its own, you might want to add "-I/..." or | 83 | ## compiler can find on its own, you might want to add "-I/..." or |
| 86 | ## something similar. This is normally set by configure. | 84 | ## something similar. This is normally set by configure. |
| 87 | ## This is used before C_SWITCH_X_SYSTEM and may override it. | ||
| 88 | C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ | 85 | C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ |
| 89 | 86 | ||
| 90 | ## Define LD_SWITCH_X_SITE to contain any special flags your loader | 87 | ## Define LD_SWITCH_X_SITE to contain any special flags your loader |
| @@ -302,14 +299,11 @@ MKDEPDIR=@MKDEPDIR@ | |||
| 302 | ## -DHAVE_CONFIG_H is needed for some other files to take advantage of | 299 | ## -DHAVE_CONFIG_H is needed for some other files to take advantage of |
| 303 | ## the information in `config.h'. | 300 | ## the information in `config.h'. |
| 304 | ## | 301 | ## |
| 305 | ## C_SWITCH_X_SITE must come before C_SWITCH_X_SYSTEM | ||
| 306 | ## since it may have -I options that should override those. | ||
| 307 | ## | ||
| 308 | ## FIXME? MYCPPFLAGS only referenced in etc/DEBUG. | 302 | ## FIXME? MYCPPFLAGS only referenced in etc/DEBUG. |
| 309 | ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAGS) -I. -I$(srcdir) \ | 303 | ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAGS) -I. -I$(srcdir) \ |
| 310 | -I$(lib) -I$(srcdir)/../lib \ | 304 | -I$(lib) -I$(srcdir)/../lib \ |
| 311 | $(C_SWITCH_MACHINE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \ | 305 | $(C_SWITCH_MACHINE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \ |
| 312 | $(C_SWITCH_X_SYSTEM) $(CFLAGS_SOUND) $(RSVG_CFLAGS) $(IMAGEMAGICK_CFLAGS) \ | 306 | $(GNUSTEP_CFLAGS) $(CFLAGS_SOUND) $(RSVG_CFLAGS) $(IMAGEMAGICK_CFLAGS) \ |
| 313 | $(LIBXML2_CFLAGS) $(DBUS_CFLAGS) \ | 307 | $(LIBXML2_CFLAGS) $(DBUS_CFLAGS) \ |
| 314 | $(SETTINGS_CFLAGS) $(FREETYPE_CFLAGS) $(FONTCONFIG_CFLAGS) \ | 308 | $(SETTINGS_CFLAGS) $(FREETYPE_CFLAGS) $(FONTCONFIG_CFLAGS) \ |
| 315 | $(LIBOTF_CFLAGS) $(M17N_FLT_CFLAGS) $(DEPFLAGS) $(PROFILING_CFLAGS) \ | 309 | $(LIBOTF_CFLAGS) $(M17N_FLT_CFLAGS) $(DEPFLAGS) $(PROFILING_CFLAGS) \ |