Fix build on platforms where crypt isn't always available

This commit is contained in:
Scott MacVicar 2009-08-12 09:18:41 +00:00
parent fbcfcfd8e6
commit ce24f04694

View File

@ -3678,7 +3678,9 @@ PHP_MSHUTDOWN_FUNCTION(basic) /* {{{ */
#if defined(HAVE_LOCALECONV) && defined(ZTS)
PHP_MSHUTDOWN(localeconv)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
#endif
#if HAVE_CRYPT
PHP_MSHUTDOWN(crypt)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
#endif
return SUCCESS;
}