summaryrefslogtreecommitdiff
path: root/ext/spl/config.m4
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2003-06-29 18:26:24 +0000
committerSVN Migration <svn@php.net>2003-06-29 18:26:24 +0000
commit54715b27657f09025ca2d59b6caae0901fcaed3c (patch)
treea30b6db1ed69a8f48fd70712cff673d2fca9b0a4 /ext/spl/config.m4
parent082a1489d20686763496ae09b128c2cdfa9e5637 (diff)
downloadphp-git-php-5.0.0b1.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_0_0b1'.php-5.0.0b1
Diffstat (limited to 'ext/spl/config.m4')
-rwxr-xr-xext/spl/config.m441
1 files changed, 0 insertions, 41 deletions
diff --git a/ext/spl/config.m4 b/ext/spl/config.m4
deleted file mode 100755
index bcae05f2fb..0000000000
--- a/ext/spl/config.m4
+++ /dev/null
@@ -1,41 +0,0 @@
-dnl $Id$
-dnl config.m4 for extension SPL
-
-PHP_ARG_ENABLE(spl, enable SPL suppport,
-[ --enable-spl Enable Standard PHP Library])
-
-dnl first enable/disable all hooks
-
-PHP_ARG_ENABLE(spl, enable all hooks,
-[ --enable-spl-hook-all SPL: Enable all hooks])
-
-dnl now all single enable/disable for hooks
-
-PHP_ARG_ENABLE(spl, enable hook on foreach,
-[ --disable-spl-foreach SPL: Disable hook on forach], yes)
-
-PHP_ARG_ENABLE(spl, enable hook on array read,
-[ --enable-spl-array-read SPL: Enable hook on array read])
-
-PHP_ARG_ENABLE(spl, enable hook on array write,
-[ --enable-spl-array-write SPL: Enable hook on array write (+read)])
-
-dnl last do checks on hooks
-
-if test "$PHP_SPL_HOOK_ALL" != "no" -o "$PHP_SPL_FOREACH" != "no"; then
- AC_DEFINE(SPL_FOREACH, 1, [Activate opcode hook on foreach])
- PHP_SPL="yes"
-fi
-if test "$PHP_SPL_HOOK_ALL" != "no" -o "$PHP_SPL_ARRAY_READ" != "no" -o "$PHP_SPL_ARRAY_WRITE" != "no"; then
- AC_DEFINE(SPL_ARRAY_READ, 1, [Activate opcode hook on array read])
- PHP_SPL="yes"
-fi
-if test "$PHP_SPL_HOOK_ALL" != "no" -o "$PHP_SPL_ARRAY_WRITE" != "no"; then
- AC_DEFINE(SPL_ARRAY_WRITE, 1, [Activate opcode hook on array write])
- PHP_SPL="yes"
-fi
-
-if test "$PHP_SPL" != "no"; then
- AC_DEFINE(HAVE_SPL, 1, [Whether you want SPL (Standard Php Library) support])
- PHP_NEW_EXTENSION(spl, php_spl.c spl_functions.c spl_engine.c spl_foreach.c spl_array.c, $ext_shared)
-fi