AC_ARG_ENABLE([use-static], AS_HELP_STRING(--enable-use-static,Try to use archives instead of shared libraries))
AC_ARG_ENABLE([full-static], AS_HELP_STRING(--enable-full-static,Try to compile a statical linked executable))
AC_ARG_ENABLE([ssl], AS_HELP_STRING(--disable-ssl,Disable ssl support (not supported yet)))
AC_ARG_WITH(apr,AS_HELP_STRING(--with-apr=PATH,path to apr-1-config script),
[if test ! -x $withval/apr-1-config; then AC_MSG_ERROR($withval/apr-1-config do not exist or is not executable); else APR_CONFIG="$withval/apr-1-config"; fi],
[APR_CONFIG="apr-1-config"])
AC_ARG_WITH(apr-util,AS_HELP_STRING(--with-apr-util=PATH,path to apu-1-config script),
[if test ! -x $withval/apu-1-config; then AC_MSG_ERROR($withval/apu-1-config do not exist or is not executable); else APU_CONFIG="$withval/apu-1-config"; fi],
[APU_CONFIG="apu-1-config"])
AC_ARG_WITH(pcre2,AS_HELP_STRING(--with-pcre2=PATH,path to pcre2-config script),
[if test ! -x $withval/pcre2-config; then AC_MSG_ERROR($withval/pcre2-config do not exist or is not executable); else PCRE2_CONFIG="$withval/pcre2-config"; fi],
[PCRE2_CONFIG="pcre2-config"])
AC_ARG_WITH(png,AS_HELP_STRING(--with-png=PATH,path to libpng-config script),
[if test ! -x $withval/libpng-config; then AC_MSG_ERROR($withval/libpng-config do not exist or is not executable); else PNG_CONFIG="$withval/libpng-config"; fi],
[PNG_CONFIG="libpng-config"])
AC_ARG_WITH(ssl,AS_HELP_STRING(--with-ssl=PATH,path to openssl source),
[if test ! -d $withval; then AC_MSG_ERROR($withval is not a directory); else OPENSSL_LIB_PATH="-L${withval}"; OPENSSL_INCLUDES="-I${withval}/include"; fi],
[OPENSSL_LIB_PATH=""; OPENSSL_INCLUDES=""])
APR_VERSION=`$APR_CONFIG --version`
if test ! "$?" = "0"; then
echo "libapr is missing, use --with-apr=PATH"
exit -1
fi
APU_VERSION=`$APU_CONFIG --version`
if test ! "$?" = "0"; then
echo "libaprutil is missing, use --with-apr-util=PATH"
exit -1
fi
PCRE2_VERSION=`$PCRE2_CONFIG --version`
if test ! "$?" = "0"; then
echo "libpcre2 is missing, use --with-pcre2=PATH to specify the location of your pcre2 library"
exit -1
fi
PNG_VERSION=`$PNG_CONFIG --version`
if test ! "$?" = "0"; then
echo "libpng is missing, use --with-png=PATH to specify the location of your png library"