aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2010-05-25 20:42:07 -0700
committerGlenn Morris2010-05-25 20:42:07 -0700
commitccd89fb3d6475cae1df64a64f87977c21e98389b (patch)
tree13c59eaf566fdb239414f3398bbb20aa78db1730 /src
parent4710f4fcc51f8465e9b6f4099e66dcea04f59997 (diff)
downloademacs-ccd89fb3d6475cae1df64a64f87977c21e98389b.tar.gz
emacs-ccd89fb3d6475cae1df64a64f87977c21e98389b.zip
Remove some NS_IMPL_GNUSTEP build dead code.
* configure.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS) (GNUSTEP_MAKEFILES): Remove. (LD_SWITCH_SYSTEM_TEMACS): Move NS_IMPL_GNUSTEP_TEMACS_LDFLAGS stuff to here. * src/Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): Remove. (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS. * msdos/sed1v2.inp (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): No longer present. Comments: See http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00846.html. Nothing from gui.make was used at all in src/Makefile.in. The only thing used from base.make was $CONFIG_SYSTEM_LIBS, but because we only set shared _after_ sourcing base.make, it was always empty. We can move the remaining flags, set in configure, to the standard variable LD_SWITCH_SYSTEM_TEMACS.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/Makefile.in8
2 files changed, 7 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d451e873adb..ba513b1bcf2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12010-05-26 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
4 Remove.
5 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
6
12010-05-26 Kenichi Handa <handa@m17n.org> 72010-05-26 Kenichi Handa <handa@m17n.org>
2 8
3 * composite.c (composition_compute_stop_pos): Fix condition for 9 * composite.c (composition_compute_stop_pos): Fix condition for
diff --git a/src/Makefile.in b/src/Makefile.in
index 0a2d1d0a8ab..bbe573e69be 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -111,14 +111,8 @@ LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@
111## which are only good with temacs. 111## which are only good with temacs.
112LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@ 112LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@
113 113
114## If NS_IMPL_GNUSTEP, some definitions and includes are expanded here.
115@NS_IMPL_GNUSTEP_INC@
116
117## This uses ${CONFIG_SYSTEM_LIBS} from NS_IMPL_GNUSTEP_INC.
118NS_IMPL_GNUSTEP_TEMACS_LDFLAGS=@NS_IMPL_GNUSTEP_TEMACS_LDFLAGS@
119
120## Flags to pass to ld only for temacs. 114## Flags to pass to ld only for temacs.
121TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS) $(NS_IMPL_GNUSTEP_TEMACS_LDFLAGS) 115TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS)
122 116
123## $LDFLAGS, or empty if NS_IMPL_GNUSTEP (for some reason). 117## $LDFLAGS, or empty if NS_IMPL_GNUSTEP (for some reason).
124TEMACS_LDFLAGS2 = @TEMACS_LDFLAGS2@ 118TEMACS_LDFLAGS2 = @TEMACS_LDFLAGS2@