php-src/ext/spl/config.w32

13 lines
384 B
Plaintext
Raw Normal View History

2003-12-06 00:09:55 +00:00
// $Id$
// vim:ft=javascript
2004-01-20 17:18:41 +00:00
ARG_ENABLE("spl", "SPL (Standard PHP Library) support", "yes");
2003-12-06 00:09:55 +00:00
if (PHP_SPL != "no") {
if (PHP_SPL_SHARED) {
ERROR("SPL cannot be compiled as a shared ext");
}
EXTENSION("spl", "php_spl.c spl_functions.c spl_engine.c spl_iterators.c spl_array.c spl_directory.c spl_sxe.c spl_exceptions.c spl_observer.c spl_dllist.c");
2003-12-06 00:09:55 +00:00
AC_DEFINE('HAVE_SPL', 1);
}