diff options
author | Scott MacVicar <scottmac@php.net> | 2010-02-16 09:35:31 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2010-02-16 09:35:31 +0000 |
commit | da727ba343b45c05b17cdbedaba4b4099fb1d312 (patch) | |
tree | 4111eca8911ee276e817d9a8ed51e02d638952da | |
parent | 9077a39555ba990b27c635f099c2b952fd92b7ea (diff) | |
download | php-git-da727ba343b45c05b17cdbedaba4b4099fb1d312.tar.gz |
Building libmbfl seperately fails since the shared library version is an API reference rather than a version number
-rw-r--r-- | ext/mbstring/libmbfl/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/mbstring/libmbfl/configure.in b/ext/mbstring/libmbfl/configure.in index 47e1026c7d..9e0a1f7895 100644 --- a/ext/mbstring/libmbfl/configure.in +++ b/ext/mbstring/libmbfl/configure.in @@ -4,7 +4,9 @@ AM_INIT_AUTOMAKE(libmbfl, 1.0.2) AC_CONFIG_SRCDIR(mbfl/mbfilter.c) AM_CONFIG_HEADER(config.h) -SHLIB_VERSION="1:0:2" +# SHLIB isn't a version number but the API reference +# Read http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info +SHLIB_VERSION="1:1:0" AC_SUBST(SHLIB_VERSION) # Checks for programs. |