User: ben
Date: 05/09/27 07:35:28
Modified: xemacs/src ChangeLog Makefile.in.in
Log:
Add SRC inclusion, for lib-src changes
Makefile.in.in: Always include SRC, so <config.h> in lib-src always works.
sysdep.c: Fix bit-rotted dup2 code. Also new -> new_.
nt.c: Fix possible use of uninitialized var. Also new -> new_.
text.c, event-Xt.c, lisp.h, number-gmp.c, number-gmp.h: Fix compilation warnings. A
couple of changes of new -> new_,
'foo -> `foo'.
Revision Changes Path
1.862 +5 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.861
retrieving revision 1.862
diff -u -p -r1.861 -r1.862
--- ChangeLog 2005/09/27 05:32:19 1.861
+++ ChangeLog 2005/09/27 05:35:24 1.862
@@ -1,5 +1,10 @@
2005-09-27 Ben Wing <ben(a)xemacs.org>
+ * Makefile.in.in (cppflags):
+ Always include SRC, so <config.h> in lib-src always works.
+
+2005-09-27 Ben Wing <ben(a)xemacs.org>
+
* sysdep.c (emacs_set_tty):
* sysdep.c (qxe_link):
* sysdep.c (qxe_rename):
1.117 +1 -1 XEmacs/xemacs/src/Makefile.in.in
Index: Makefile.in.in
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/Makefile.in.in,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -p -r1.116 -r1.117
--- Makefile.in.in 2005/04/08 23:11:18 1.116
+++ Makefile.in.in 2005/09/27 05:35:26 1.117
@@ -380,7 +380,7 @@ mo_file = $(LIB_SRC)/emacs.mo
## -Demacs is needed to make some files produce the correct version
## for use in Emacs.
-cppflags = $(CPPFLAGS) -Demacs -I. $(c_switch_all)
+cppflags = $(CPPFLAGS) -Demacs -I. -I$(SRC) $(c_switch_all)
cflags = $(CFLAGS) $(cppflags)
#if defined (WIN32_NATIVE)
ldflags = $(LDFLAGS) -mwindows -e _mainCRTStartup $(ld_switch_all)
$(ld_dynamic_link_flags)