diff options
author | foobar <sniper@php.net> | 2002-10-12 00:54:53 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-10-12 00:54:53 +0000 |
commit | 7a3f2eb63b22cc105c1087b8dc10b83d25078291 (patch) | |
tree | eaf5d255bb78a6da2c82adbffbab3564febb8853 /sapi | |
parent | 3aba20dd9ef48c4e33eee677f083a99c0df4594d (diff) | |
download | php-git-7a3f2eb63b22cc105c1087b8dc10b83d25078291.tar.gz |
Default to shared.
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/embed/config.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sapi/embed/config.m4 b/sapi/embed/config.m4 index e7a214798c..69f41009f3 100644 --- a/sapi/embed/config.m4 +++ b/sapi/embed/config.m4 @@ -9,12 +9,12 @@ AC_ARG_ENABLE(embed, TYPE is either 'shared' or 'static'. Defaults to 'static' library.], [ case $enableval in - yes|static) - PHP_EMBED_TYPE=static - ;; - shared) + yes|shared) PHP_EMBED_TYPE=shared ;; + static) + PHP_EMBED_TYPE=static + ;; *) PHP_EMBED_TYPE=no ;; |