User: ben
Date: 05/10/14 03:02:31
Modified: xemacs/lib-src ChangeLog i.c mmencode.c winclient.c
Log:
Include config.h in lib-src progs
i.c, mmencode.c: Always include config.h first.
winclient.c: Move include of windows.h after config.h.
Revision Changes Path
1.196 +8 -0 XEmacs/xemacs/lib-src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lib-src/ChangeLog,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -p -r1.195 -r1.196
--- ChangeLog 2005/09/19 00:36:05 1.195
+++ ChangeLog 2005/10/14 01:02:29 1.196
@@ -1,3 +1,11 @@
+2005-10-13 Ben Wing <ben(a)xemacs.org>
+
+ * i.c:
+ * mmencode.c:
+ Always include config.h first.
+ * winclient.c:
+ Move include of windows.h after config.h.
+
2005-09-18 Mike Alexander <mta(a)arbortext.com>
* installexe.sh: Don't add an exe extention to a file that already
1.6 +4 -0 XEmacs/xemacs/lib-src/i.c
Index: i.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lib-src/i.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- i.c 2004/12/07 00:20:51 1.5
+++ i.c 2005/10/14 01:02:30 1.6
@@ -31,6 +31,10 @@ does. It can be used also when xemacs s
command ina script, especially when its standart output should be
obtained programmatically. */
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
#include <windows.h>
#include <stdio.h>
#include <string.h>
1.9 +3 -0 XEmacs/xemacs/lib-src/mmencode.c
Index: mmencode.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lib-src/mmencode.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -r1.8 -r1.9
--- mmencode.c 2001/08/13 04:45:48 1.8
+++ mmencode.c 2005/10/14 01:02:30 1.9
@@ -13,6 +13,9 @@ OF THIS MATERIAL FOR ANY PURPOSE. IT IS
WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
*/
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
#define NEWLINE_CHAR '\n'
#include <stdlib.h>
#include <stdio.h>
1.4 +2 -1 XEmacs/xemacs/lib-src/winclient.c
Index: winclient.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lib-src/winclient.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- winclient.c 2002/05/28 08:44:26 1.3
+++ winclient.c 2005/10/14 01:02:30 1.4
@@ -22,10 +22,11 @@
/* -- Includes -------------------------------------------------------------- */
-#include <windows.h>
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
+#include <windows.h>
+#include <ddeml.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
Show replies by date