aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Robert2008-08-07 01:36:30 +0000
committerAdrian Robert2008-08-07 01:36:30 +0000
commitb330336c40599bc7bc2e9d8bdd591cbff62d01e1 (patch)
tree0f408a601f1e3f88f3d6f918a295af641b4dcbb6
parent4eec6197df7ed1f789862002ef18a68f89b95e9d (diff)
downloademacs-b330336c40599bc7bc2e9d8bdd591cbff62d01e1.tar.gz
emacs-b330336c40599bc7bc2e9d8bdd591cbff62d01e1.zip
* Makefile.in (emacs): Remove ndef NS conditional for 'emacs -list-load-path-shadows'. (nsgui.h): Reduce number of things depending on it.
-rw-r--r--src/ChangeLog8
-rw-r--r--src/Makefile.in11
-rw-r--r--src/config.in5
3 files changed, 14 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9dd960b50fb..5a95dff5428 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
2
3 * config.in: Regenerate.
4
5 * Makefile.in (emacs): Remove ndef NS conditional for 'emacs
6 -list-load-path-shadows'.
7 (nsgui.h): Reduce number of things depending on it.
8
12008-08-06 Chong Yidong <cyd@stupidchicken.com> 92008-08-06 Chong Yidong <cyd@stupidchicken.com>
2 10
3 * xdisp.c (try_scrolling): Use iterator to find the scroll margin, 11 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
diff --git a/src/Makefile.in b/src/Makefile.in
index 3edd0af5e1a..3a12c7e2e95 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -910,10 +910,7 @@ emacs${EXEEXT}: temacs${EXEEXT} ${etc}DOC ${lisp} ${SOME_MACHINE_LISP}
910 @: bootstrap-emacs, so let us replace it. 910 @: bootstrap-emacs, so let us replace it.
911 -ln -f emacs${EXEEXT} bootstrap-emacs${EXEEXT} 911 -ln -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}
912#endif /* ! defined (CANNOT_DUMP) */ 912#endif /* ! defined (CANNOT_DUMP) */
913/* XXX: not working under NS currently due to path shenanigans.. */
914#ifndef HAVE_NS
915 -./emacs -q -batch -f list-load-path-shadows 913 -./emacs -q -batch -f list-load-path-shadows
916#endif
917 914
918/* We run make-docfile twice because the command line may get too long 915/* We run make-docfile twice because the command line may get too long
919 on some systems. */ 916 on some systems. */
@@ -1252,9 +1249,11 @@ composite.o: composite.c buffer.h character.h $(INTERVAL_SRC) $(config_h)
1252 select which of these should be compiled. */ 1249 select which of these should be compiled. */
1253 1250
1254#ifdef HAVE_NS 1251#ifdef HAVE_NS
1255buffer.o callint.o cmds.o dispnew.o editfns.o fileio.o frame.o \ 1252/* In fact, every .o file depends directly or indirectly on dispextern.h
1256 fontset.o indent.o insdel.o keyboard.o macros.o minibuf.o msdos.o process.o \ 1253 and hence nsgui.h under NS. But the ones that actually use stuff there
1257 scroll.o sysdep.o term.o widget.o window.o xdisp.o xfaces.o sound.o: nsgui.h 1254 are more limited. */
1255dispnew.o font.o fontset.o frame.o fringe.o image.o keyboard.o menu.o \
1256 window.o xdisp.o xfaces.o: nsgui.h
1258 1257
1259${ns_appdir}: ${ns_appsrc} 1258${ns_appdir}: ${ns_appsrc}
1260 rm -fr ${ns_appdir} 1259 rm -fr ${ns_appdir}
diff --git a/src/config.in b/src/config.in
index 42c9c8658e8..ffa4688462e 100644
--- a/src/config.in
+++ b/src/config.in
@@ -1039,12 +1039,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1039 side does this in s/darwin.h and we cannot 1039 side does this in s/darwin.h and we cannot
1040 parallel this exactly since GNUstep is multi-OS. */ 1040 parallel this exactly since GNUstep is multi-OS. */
1041#ifdef HAVE_NS 1041#ifdef HAVE_NS
1042# ifdef C_SWITCH_SYSTEM
1043# undef C_SWITCH_SYSTEM
1044# endif
1045# ifdef NS_IMPL_GNUSTEP 1042# ifdef NS_IMPL_GNUSTEP
1046/* See also .m.o rule in Makefile.in */ 1043/* See also .m.o rule in Makefile.in */
1047# define C_SWITCH_X_SYSTEM -MMD -MP -D_REENTRANT -fPIC -fno-strict-aliasing 1044# define C_SWITCH_X_SYSTEM -D_REENTRANT -fPIC -fno-strict-aliasing
1048# define GNU_OBJC_CFLAGS -fgnu-runtime -Wno-import -fconstant-string-class=NSConstantString -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGSWARN -DGSDIAGNOSE 1045# define GNU_OBJC_CFLAGS -fgnu-runtime -Wno-import -fconstant-string-class=NSConstantString -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGSWARN -DGSDIAGNOSE
1049# define OTHER_FILES ns-app 1046# define OTHER_FILES ns-app
1050# else /* NS_IMPL_COCOA */ 1047# else /* NS_IMPL_COCOA */