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