From 0e61859b1f8a1f671b9c1969b2667c20578b27a3 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Wed, 19 Jan 2011 21:19:45 +0000 Subject: [PATCH] - force static, can't be built yet shared anyway --- ext/mcrypt/config.w32 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/mcrypt/config.w32 b/ext/mcrypt/config.w32 index f1965725407..8d30db7ce25 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 {