diff options
| author | Bruce Momjian | 2003-02-14 14:05:00 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2003-02-14 14:05:00 +0000 |
| commit | 0e010a54a3b17fe6a66c1ed71caff9dc0fac4c2b (patch) | |
| tree | 32bf039930f2f1124a4465db136dde459138b1de /configure.in | |
| parent | 044dca9f7cbf305f8c9dc1eb830cfd34ff8417c8 (diff) | |
Update FAQ's in head and 7.3.X.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 791beb39895..19f6d74defa 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Header: /cvsroot/pgsql/configure.in,v 1.235 2003/02/11 21:05:35 petere Exp $ +dnl $Header: /cvsroot/pgsql/configure.in,v 1.236 2003/02/14 14:05:00 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -724,7 +724,9 @@ if test "$with_openssl" = yes ; then fi if test "$with_pam" = yes ; then - AC_CHECK_HEADER(security/pam_appl.h, [], [AC_MSG_ERROR([header file <security/pam_appl.h> is required for PAM])]) + AC_CHECK_HEADERS(security/pam_appl.h, [], + [AC_CHECK_HEADERS(pam/pam_appl.h, [], + [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])]) fi |
