Use PHP_ARG_WITH

This commit is contained in:
Sascha Schumann 2000-03-27 23:43:00 +00:00
parent 1f822b98ce
commit a97eccaba3
2 changed files with 35 additions and 46 deletions

View File

@ -2,30 +2,25 @@ dnl $Id$
dnl config.m4 for extension mcrypt
dnl don't forget to call PHP_EXTENSION(mcrypt)
AC_MSG_CHECKING(for mcrypt support)
AC_ARG_WITH(mcrypt,
PHP_ARG_WITH(mcrypt, for mcrypt support,
[ --with-mcrypt[=DIR] Include mcrypt support. DIR is the mcrypt
install directory.],
[
if test "$withval" != "no"; then
for i in /usr/local /usr $withval; do
if test -f $i/include/mcrypt.h; then
MCRYPT_DIR=$i
fi
done
if test "$MCRYPT_DIR" = ""; then
AC_MSG_ERROR(Please reinstall libmcrypt - I cannot find mcrypt.h)
install directory.])
if test "$PHP_MCRYPT" != "no"; then
for i in /usr/local /usr $PHP_MCRYPT; do
if test -f $i/include/mcrypt.h; then
MCRYPT_DIR=$i
fi
AC_ADD_INCLUDE($MCRYPT_DIR/include)
AC_ADD_LIBRARY_WITH_PATH(mcrypt, $MCRYPT_DIR/lib)
done
AC_DEFINE(HAVE_LIBMCRYPT,1,[ ])
AC_MSG_RESULT(yes)
PHP_EXTENSION(mcrypt)
else
AC_MSG_RESULT(no)
if test -z "$MCRYPT_DIR"; then
AC_MSG_ERROR(Please reinstall libmcrypt - I cannot find mcrypt.h)
fi
],[
AC_MSG_RESULT(no)
])
AC_ADD_INCLUDE($MCRYPT_DIR/include)
AC_ADD_LIBRARY_WITH_PATH(mcrypt, $MCRYPT_DIR/lib)
AC_DEFINE(HAVE_LIBMCRYPT,1,[ ])
PHP_EXTENSION(mcrypt)
fi

View File

@ -2,30 +2,24 @@ dnl $Id$
dnl config.m4 for extension mhash
dnl don't forget to call PHP_EXTENSION(mhash)
AC_MSG_CHECKING(for mhash support)
AC_ARG_WITH(mhash,
PHP_ARG_WITH(mhash, for mhash support,
[ --with-mhash[=DIR] Include mhash support. DIR is the mhash
install directory.],
[
if test "$withval" != "no"; then
for i in /usr/local /usr /opt/mhash $withval; do
if test -f $i/include/mhash.h; then
MHASH_DIR=$i
fi
done
if test "$MHASH_DIR" = ""; then
AC_MSG_ERROR(Please reinstall libmhash - I cannot find mhash.h)
install directory.])
if test "$PHP_MHASH" != "no"; then
for i in /usr/local /usr /opt/mhash $PHP_MHASH; do
if test -f $i/include/mhash.h; then
MHASH_DIR=$i
fi
AC_ADD_INCLUDE($MHASH_DIR/include)
AC_ADD_LIBRARY_WITH_PATH(mhash, $MHASH_DIR/lib)
done
AC_DEFINE(HAVE_LIBMHASH,1,[ ])
AC_MSG_RESULT(yes)
PHP_EXTENSION(mhash)
else
AC_MSG_RESULT(no)
if test -z "$MHASH_DIR"; then
AC_MSG_ERROR(Please reinstall libmhash - I cannot find mhash.h)
fi
],[
AC_MSG_RESULT(no)
])
AC_ADD_INCLUDE($MHASH_DIR/include)
AC_ADD_LIBRARY_WITH_PATH(mhash, $MHASH_DIR/lib)
AC_DEFINE(HAVE_LIBMHASH,1,[ ])
PHP_EXTENSION(mhash)
fi