From fdb37f073be63ba111235dd0e47181cf93596b26 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 5 Apr 1998 21:29:49 +0000 Subject: this patch solve 2 problemes : probleme number 1 : - configure can find the library readline , but don't find the header file . so in this case we don't use lib readline . probleme number 2 : - when you have postgres 6.2.1 and readline installed with the same prefix( and generally all your software ) . you can compile the version 6.3 . I use this prefix , when configure ask me for "Additional directories to search for include files" . ( because there a conflict in the header when you compile psql.c ) In this case, you must permut the sequence of directive -I . Erwan MAS --- src/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/configure.in') diff --git a/src/configure.in b/src/configure.in index 0028f998f66..c3564223500 100644 --- a/src/configure.in +++ b/src/configure.in @@ -453,8 +453,8 @@ AC_HEADER_SYS_WAIT AC_CHECK_HEADERS(limits.h unistd.h termios.h values.h sys/select.h) AC_CHECK_HEADERS(sys/resource.h netdb.h arpa/inet.h getopt.h) AC_CHECK_HEADERS(readline.h history.h dld.h crypt.h endian.h float.h) -AC_CHECK_HEADERS(readline/history.h ieeefp.h fp_class.h netinet/in.h) -AC_CHECK_HEADERS(string.h strings.h) +AC_CHECK_HEADERS(readline/readline.h readline/history.h ieeefp.h fp_class.h) +AC_CHECK_HEADERS(netinet/in.h string.h strings.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST -- cgit v1.2.3