diff options
author | Rasmus Lerdorf <rasmus@php.net> | 1999-04-22 04:21:08 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 1999-04-22 04:21:08 +0000 |
commit | 77cdb5f4832e8bff4625d40a6368d9be78534b97 (patch) | |
tree | 336a94b63743812bc61fc855d4854186258df150 /acconfig.h.in | |
parent | 916692f4ad8c06883460406b7c747e62ed467f39 (diff) | |
download | php-git-77cdb5f4832e8bff4625d40a6368d9be78534b97.tar.gz |
Bring imap build rules up to date. We still have a problem here though.
In this new build structure we are adding libraries to $LIBS as we add
modules instead of doing an AC_SUBST into the Makefile. One reason for
doing the subst in php3 was to get around the libraries that could not
be included in $LIBS because doing so would mess up the various configure
tests. For example, you can't do a -limap as part of the various simple
configure compile programs because -limap requires a bunch of callback
symbols to be present.
Diffstat (limited to 'acconfig.h.in')
-rw-r--r-- | acconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/acconfig.h.in b/acconfig.h.in index 7920bf8d56..a06baf28d2 100644 --- a/acconfig.h.in +++ b/acconfig.h.in @@ -28,6 +28,9 @@ /* Define if you have the resolv library (-lresolv). */ #define HAVE_LIBRESOLV 0 +/* Define if you have the pam library (-lpam). */ +#define HAVE_LIBPAM 0 + /* Define if you want safe mode enabled by default. */ #define PHP_SAFE_MODE 0 |