diff options
| author | Bruce Momjian | 1998-04-05 21:29:49 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-04-05 21:29:49 +0000 |
| commit | fdb37f073be63ba111235dd0e47181cf93596b26 (patch) | |
| tree | 6e0a08f0c3e3495f60409235b9a0e47cc07a5d89 /src/configure.in | |
| parent | 34fec16198ef8a18f69992df0ac7d0bee5a00551 (diff) | |
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
Diffstat (limited to 'src/configure.in')
| -rw-r--r-- | src/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
