Browse Source

Slightly redundant to check for crypt() here again, but the TRY_RUN stuff

needs it defined in the same m4 file or it won't work, and it will just
get pulled out of the cache anyway, so it isn't a big deal.
experimetnal/RETURN_REF_PATCH
Rasmus Lerdorf 27 years ago
parent
commit
1e57766b11
  1. 4
      ext/standard/config.m4

4
ext/standard/config.m4

@ -114,6 +114,10 @@ AC_CHECK_LIB(bind, inet_aton, [
EXTRA_LIBS="$EXTRA_LIBS -lbind"
AC_DEFINE(HAVE_LIBBIND) ], [])
AC_CHECK_LIB(crypt, crypt, [
AC_ADD_LIBRARY(crypt)
AC_DEFINE(HAVE_LIBCRYPT) ], [])
divert(3)

Loading…
Cancel
Save