diff options
author | Pierre Joye <pajoye@php.net> | 2011-01-19 21:19:45 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2011-01-19 21:19:45 +0000 |
commit | 0e61859b1f8a1f671b9c1969b2667c20578b27a3 (patch) | |
tree | 6e33e8b83252d7dcf76c88386398be127fe98971 /ext/mcrypt | |
parent | f1cb5e6253fd3953048ae98341a62b75fc525735 (diff) | |
download | php-git-0e61859b1f8a1f671b9c1969b2667c20578b27a3.tar.gz |
- force static, can't be built yet shared anyway
Diffstat (limited to 'ext/mcrypt')
-rw-r--r-- | ext/mcrypt/config.w32 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/mcrypt/config.w32 b/ext/mcrypt/config.w32 index f196572540..8d30db7ce2 100644 --- a/ext/mcrypt/config.w32 +++ b/ext/mcrypt/config.w32 @@ -9,7 +9,8 @@ if (PHP_MCRYPT != "no") { CHECK_LIB('libmcrypt_a.lib;libmcrypt.lib', 'mcrypt') && CHECK_LIB('Advapi32.lib', 'mcrypt') ) { - EXTENSION('mcrypt', 'mcrypt.c mcrypt_filter.c', PHP_MCRYPT_SHARED); + + EXTENSION('mcrypt', 'mcrypt.c mcrypt_filter.c', false); AC_DEFINE('HAVE_LIBMCRYPT', 1); AC_DEFINE('HAVE_LIBMCRYPT24', 1); } else { |