X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=config.m4;h=7b048bc63458320efb8ab21940b56b19b3917b86;hp=90e3a3d34f8ac3a89431f260627aaffbcd24e00b;hb=a673ef718611fe1a7c8a4c61b2f4c97fc06efc2d;hpb=efad267ce4b49489b03022d7decd94dcf244e71e diff --git a/config.m4 b/config.m4 index 90e3a3d..7b048bc 100644 --- a/config.m4 +++ b/config.m4 @@ -9,6 +9,9 @@ PHP_ARG_WITH([http-curl-requests], [wheter to enable cURL HTTP requests], PHP_ARG_WITH([http-mhash-etags], [whether to enable mhash ETag generator], [ --with-http-mhash-etags[=MHASHDIR] With mhash ETag generator support]) +PHP_ARG_WITH([http-magic-mime], [whether to enable response content type guessing], +[ --with-http-magic-mime[=MAGICDIR] + With magic mime response content type guessing]) if test "$PHP_HTTP" != "no"; then @@ -100,6 +103,31 @@ dnl ---- AC_DEFINE([HTTP_HAVE_MHASH], [1], [Have mhash support]) fi +dnl ---- +dnl MAGIC +dnl ---- + if test "$PHP_HTTP_MAGIC_MIME" != "no"; then + + AC_MSG_CHECKING([for magic.h]) + MAGIC_DIR= + for i in "$PHP_HTTP_MAGIC_MIME" /usr/local /usr /opt; do + if test -f "$i/include/magic.h"; then + MAGIC_DIR=$i + break + fi + done + if test -z "$MAGIC_DIR"; then + AC_MSG_RESULT([not found]) + AC_MSG_ERROR([could not find magic.h]) + else + AC_MSG_RESULT([found in $MAGIC_DIR]) + fi + + PHP_ADD_INCLUDE($MAGIC_DIR/include) + PHP_ADD_LIBRARY_WITH_PATH(magic, $MAGIC_DIR/$PHP_LIBDIR, HTTP_SHARED_LIBADD) + AC_DEFINE([HTTP_HAVE_MAGIC], [1], [Have magic mime support]) + fi + dnl ---- dnl DONE dnl ----