mirror of
https://github.com/php/php-src.git
synced 2025-01-27 06:03:45 +08:00
Fix build on platforms where crypt isn't always available
This commit is contained in:
parent
fbcfcfd8e6
commit
ce24f04694
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user