From: Alex Leigh Date: Mon, 8 Dec 2003 18:18:03 +0000 (+0000) Subject: Removed extraneous php4_close() function and Windows compile checks. X-Git-Tag: php-5.0.0b3RC1~182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3db0ed516be5f841e2aaefda1c9a6dddc56908f;p=php Removed extraneous php4_close() function and Windows compile checks. --- diff --git a/sapi/continuity/capi.c b/sapi/continuity/capi.c index 078ffc5d7b..49e88e91a9 100644 --- a/sapi/continuity/capi.c +++ b/sapi/continuity/capi.c @@ -41,18 +41,6 @@ #include "TSRM.h" #include "ext/standard/php_standard.h" -/* - * If neither XP_UNIX not XP_WIN32 is defined, try to guess which one. - * Ideally, this should be done by the configure script. - */ -#if !defined(XP_UNIX) && !defined(XP_WIN32) -#if defined(WIN32) -#define XP_WIN32 -#else -#define XP_UNIX -#endif -#endif - /* * CAPI includes */ @@ -465,14 +453,6 @@ int capi_module_main(NSLS_D TSRMLS_DC) return SUCCESS; } -void php4_close(void *vparam) -{ - if (capi_sapi_module.shutdown) { - capi_sapi_module.shutdown(&capi_sapi_module); - } - tsrm_shutdown(); -} - int phpFinit(lstTset * opt) { php_core_globals *core_globals;