At 11:51 25.01.2003, Hartmut Holzgraefe wrote:
hholzgra Sat Jan 25 05:51:04 2003 EDT
Modified files:
/php4/ext/mime_magic config.m4
Log:
suggesting a plain magic file insteat of a mime one is a bad idea
Index: php4/ext/mime_magic/config.m4
diff -u php4/ext/mime_magic/config.m4:1.6 php4/ext/mime_magic/config.m4:1.7
--- php4/ext/mime_magic/config.m4:1.6 Tue Sep 24 02:37:17 2002
+++ php4/ext/mime_magic/config.m4 Sat Jan 25 05:51:04 2003
@@ -1,4 +1,4 @@
-dnl $Id: config.m4,v 1.6 2002/09/24 06:37:17 sas Exp $
+dnl $Id: config.m4,v 1.7 2003/01/25 10:51:04 hholzgra Exp $
dnl config.m4 for extension mime_magic
PHP_ARG_ENABLE(mime-magic, whether to enable mime_magic support,
@@ -18,7 +18,7 @@
elif test -f /usr/share/misc/magic.mime ; then
PHP_MIME_MAGIC_FILE_PATH=/usr/share/misc/magic.mime
elif test -f /etc/magic ; then
- PHP_MIME_MAGIC_FILE_PATH=/etc/magic
+ PHP_MIME_MAGIC_FILE_PATH=/etc/magic.mime
else
PHP_MIME_MAGIC_FILE_PATH=""
fi
Shouldn't you change the test above to
elif test -f /etc/magic.mime ; then
marcus
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php