config.w32 362 B

12345678910
  1. // $Id$
  2. // vim:ft=javascript
  3. ARG_ENABLE("session", "session support", "yes");
  4. if (PHP_SESSION == "yes") {
  5. EXTENSION("session", "mod_user_class.c session.c mod_files.c mod_mm.c mod_user.c", false /* never shared */);
  6. AC_DEFINE("HAVE_PHP_SESSION", 1, "Session support");
  7. PHP_INSTALL_HEADERS("ext/session/", "mod_mm.h php_session.h mod_files.h mod_user.h");
  8. }