# HG changeset patch # User jwe # Date 811497657 0 # Node ID cd2b52fb9019ec47a0f8f0e21c17408b502934d2 # Parent dba5dbb3784b15bfe343286ca9a2aafc863851ed [project @ 1995-09-19 08:00:23 by jwe] diff -r dba5dbb3784b -r cd2b52fb9019 readline/Makefile.in --- a/readline/Makefile.in Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/Makefile.in Tue Sep 19 08:00:57 1995 +0000 @@ -42,7 +42,7 @@ # The header files for this library. HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h \ - posixstat.h tilde.h rlconf.h config.h.in acconfig.h + posixstat.h tilde.h rlconf.h config.h.in OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \ rltty.o complete.o bind.o isearch.o display.o signals.o \ diff -r dba5dbb3784b -r cd2b52fb9019 readline/bind.c --- a/readline/bind.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/bind.c Tue Sep 19 08:00:57 1995 +0000 @@ -19,6 +19,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #include diff -r dba5dbb3784b -r cd2b52fb9019 readline/complete.c --- a/readline/complete.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/complete.c Tue Sep 19 08:00:57 1995 +0000 @@ -19,12 +19,13 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#define READLINE_LIBRARY -#if defined (HAVE_CONFIG_H) -# include "config.h" +#ifdef HAVE_CONFIG_H +#include #endif +#define READLINE_LIBRARY + #include #include #include diff -r dba5dbb3784b -r cd2b52fb9019 readline/display.c --- a/readline/display.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/display.c Tue Sep 19 08:00:57 1995 +0000 @@ -19,12 +19,13 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#define READLINE_LIBRARY -#if defined (HAVE_CONFIG_H) -# include "config.h" +#ifdef HAVE_CONFIG_H +#include #endif +#define READLINE_LIBRARY + #include #include diff -r dba5dbb3784b -r cd2b52fb9019 readline/funmap.c --- a/readline/funmap.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/funmap.c Tue Sep 19 08:00:57 1995 +0000 @@ -19,6 +19,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #if defined (STATIC_MALLOC) diff -r dba5dbb3784b -r cd2b52fb9019 readline/history.c --- a/readline/history.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/history.c Tue Sep 19 08:00:57 1995 +0000 @@ -23,6 +23,11 @@ /* The goal is to make the implementation transparent, so that you don't have to know what data types are used, just what functions you can call. I think I have done that. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #include diff -r dba5dbb3784b -r cd2b52fb9019 readline/isearch.c --- a/readline/isearch.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/isearch.c Tue Sep 19 08:00:57 1995 +0000 @@ -24,6 +24,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #include diff -r dba5dbb3784b -r cd2b52fb9019 readline/keymaps.c --- a/readline/keymaps.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/keymaps.c Tue Sep 19 08:00:57 1995 +0000 @@ -18,12 +18,13 @@ You should have received a copy of the GNU General Public License along with Readline; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#define READLINE_LIBRARY -#if defined (HAVE_CONFIG_H) -# include "config.h" +#ifdef HAVE_CONFIG_H +#include #endif +#define READLINE_LIBRARY + #if defined (HAVE_STDLIB_H) # include #else diff -r dba5dbb3784b -r cd2b52fb9019 readline/parens.c --- a/readline/parens.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/parens.c Tue Sep 19 08:00:57 1995 +0000 @@ -19,6 +19,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #include "rlconf.h" diff -r dba5dbb3784b -r cd2b52fb9019 readline/readline.c --- a/readline/readline.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/readline.c Tue Sep 19 08:00:57 1995 +0000 @@ -20,6 +20,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #include diff -r dba5dbb3784b -r cd2b52fb9019 readline/rltty.c --- a/readline/rltty.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/rltty.c Tue Sep 19 08:00:57 1995 +0000 @@ -20,6 +20,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #if defined (HAVE_CONFIG_H) diff -r dba5dbb3784b -r cd2b52fb9019 readline/search.c --- a/readline/search.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/search.c Tue Sep 19 08:00:57 1995 +0000 @@ -20,6 +20,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #include diff -r dba5dbb3784b -r cd2b52fb9019 readline/signals.c --- a/readline/signals.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/signals.c Tue Sep 19 08:00:57 1995 +0000 @@ -19,6 +19,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY #include diff -r dba5dbb3784b -r cd2b52fb9019 readline/tilde.c --- a/readline/tilde.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/tilde.c Tue Sep 19 08:00:57 1995 +0000 @@ -19,6 +19,10 @@ along with Readline; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #if defined (HAVE_STRING_H) # include #else /* !HAVE_STRING_H */ diff -r dba5dbb3784b -r cd2b52fb9019 readline/vi_mode.c --- a/readline/vi_mode.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/vi_mode.c Tue Sep 19 08:00:57 1995 +0000 @@ -20,6 +20,11 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifdef HAVE_CONFIG_H +#include +#endif + #define READLINE_LIBRARY /* **************************************************************** */ diff -r dba5dbb3784b -r cd2b52fb9019 readline/xmalloc.c --- a/readline/xmalloc.c Tue Sep 19 07:54:35 1995 +0000 +++ b/readline/xmalloc.c Tue Sep 19 08:00:57 1995 +0000 @@ -19,6 +19,10 @@ along with Readline; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #if defined (ALREADY_HAVE_XMALLOC) #else #include