mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Fix build on platforms where crypt isn't always available
This commit is contained in:
parent
fbcfcfd8e6
commit
ce24f04694
1 changed files with 2 additions and 0 deletions
|
@ -3678,7 +3678,9 @@ PHP_MSHUTDOWN_FUNCTION(basic) /* {{{ */
|
||||||
#if defined(HAVE_LOCALECONV) && defined(ZTS)
|
#if defined(HAVE_LOCALECONV) && defined(ZTS)
|
||||||
PHP_MSHUTDOWN(localeconv)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
|
PHP_MSHUTDOWN(localeconv)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
|
||||||
#endif
|
#endif
|
||||||
|
#if HAVE_CRYPT
|
||||||
PHP_MSHUTDOWN(crypt)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
|
PHP_MSHUTDOWN(crypt)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
|
||||||
|
#endif
|
||||||
|
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue