openbsd-ports/www/php4/patches/patch-configure_in
avsm 60f5c024d4 - fix imap flavor build, enable kerberos support as well
(checked by heko, naddy)
- work with any LOCALBASE for most flavors (heko)
- turn off url_fopen by default for better security, most people
  never use it
- correctly detect the crypt function as part of libc,
  not a separate library
- unbreak curl, since 7.9 is now present in our tree
- more informative INSTALL script (naddy, heko)
2001-10-04 21:27:44 +00:00

23 lines
443 B
Plaintext

$OpenBSD: patch-configure_in,v 1.3 2001/10/04 21:27:44 avsm Exp $
--- configure.in.orig Thu Oct 4 21:36:32 2001
+++ configure.in Thu Oct 4 21:37:23 2001
@@ -363,6 +363,7 @@ AC_FUNC_VPRINTF
AC_CHECK_FUNCS(
asctime_r \
chroot \
+crypt \
ctime_r \
cuserid \
flock \
@@ -622,9 +623,8 @@ fi
AC_CHECK_LIB(crypt, crypt, [
PHP_ADD_LIBRARY(crypt)
- AC_DEFINE(HAVE_LIBCRYPT,1,[ ])
AC_DEFINE(HAVE_CRYPT,1,[ ])
-], [])
+])
divert(5)