# HG changeset patch # User Paul Eggert # Date 940317676 0 # Node ID e0d966fb548f3c43468857543e495e3a83539e33 # Parent cc03e8352d4889b7c8cd7a3c720e60eb8569ad30 Add support for large files, plus some locale improvements. * dispatch.c, lwlib-Xaw.c, lwlib-Xlw.c, lwlib-Xm.c, lwlib.c, xlwmenu.c, xrdb-cpp.c, xrdb.c: Include before any system include files. * lwlib-Xm.c, lwlib.c: Do not include or , as does this. diff -r cc03e8352d48 -r e0d966fb548f lwlib/ChangeLog --- a/lwlib/ChangeLog Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/ChangeLog Tue Oct 19 07:21:16 1999 +0000 @@ -1,3 +1,14 @@ +1999-10-19 Paul Eggert + + Add support for large files, plus some locale improvements. + + * dispatch.c, lwlib-Xaw.c, lwlib-Xlw.c, lwlib-Xm.c, lwlib.c, xlwmenu.c, + xrdb-cpp.c, xrdb.c: + Include before any system include files. + + * lwlib-Xm.c, lwlib.c: + Do not include or , as does this. + 1999-10-07 Gerd Moellmann * lwlib-Xm.c (make_menu_in_widget, update_one_menu_entry): Use diff -r cc03e8352d48 -r e0d966fb548f lwlib/dispatch.c --- a/lwlib/dispatch.c Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/dispatch.c Tue Oct 19 07:21:16 1999 +0000 @@ -27,6 +27,10 @@ * compile this file unless you have the Xt sources online. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include /* Don't change this: see comments in Imakefile. */ #include #include "dispatch.h" diff -r cc03e8352d48 -r e0d966fb548f lwlib/lwlib-Xaw.c --- a/lwlib/lwlib-Xaw.c Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/lwlib-Xaw.c Tue Oct 19 07:21:16 1999 +0000 @@ -18,6 +18,10 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include "lwlib-Xaw.h" diff -r cc03e8352d48 -r e0d966fb548f lwlib/lwlib-Xlw.c --- a/lwlib/lwlib-Xlw.c Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/lwlib-Xlw.c Tue Oct 19 07:21:16 1999 +0000 @@ -18,6 +18,10 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include "lwlib-Xlw.h" #include #include diff -r cc03e8352d48 -r e0d966fb548f lwlib/lwlib-Xm.c --- a/lwlib/lwlib-Xm.c Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/lwlib-Xm.c Tue Oct 19 07:21:16 1999 +0000 @@ -18,9 +18,11 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include +#ifdef HAVE_CONFIG_H +#include +#endif + #include -#include #include #include diff -r cc03e8352d48 -r e0d966fb548f lwlib/lwlib.c --- a/lwlib/lwlib.c Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/lwlib.c Tue Oct 19 07:21:16 1999 +0000 @@ -22,6 +22,10 @@ #undef __STRICT_BSD__ /* ick */ #endif +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include @@ -29,10 +33,6 @@ #include "lwlib-utils.h" #include -#ifdef __osf__ -#include -#include -#endif extern long *xmalloc(); #if defined (USE_LUCID) diff -r cc03e8352d48 -r e0d966fb548f lwlib/xlwmenu.c --- a/lwlib/xlwmenu.c Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/xlwmenu.c Tue Oct 19 07:21:16 1999 +0000 @@ -20,6 +20,10 @@ /* Created by devin@lucid.com */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include diff -r cc03e8352d48 -r e0d966fb548f lwlib/xrdb-cpp.c --- a/lwlib/xrdb-cpp.c Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/xrdb-cpp.c Tue Oct 19 07:21:16 1999 +0000 @@ -29,6 +29,10 @@ #define __STDC_EXTENDED__ #endif +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff -r cc03e8352d48 -r e0d966fb548f lwlib/xrdb.c --- a/lwlib/xrdb.c Tue Oct 19 07:20:29 1999 +0000 +++ b/lwlib/xrdb.c Tue Oct 19 07:21:16 1999 +0000 @@ -4,6 +4,10 @@ avoid version skew problems. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include