Revision: 851
http://vcs.pcre.org/viewvc?view=rev&revision=851
Author: ph10
Date: 2012-01-05 17:57:28 +0000 (Thu, 05 Jan 2012)
Log Message:
-----------
Update libpcre_version for change of API, and add libpcre16_version.
Modified Paths:
--------------
code/trunk/Makefile.am
code/trunk/configure.ac
Modified: code/trunk/Makefile.am
===================================================================
--- code/trunk/Makefile.am 2012-01-04 17:29:11 UTC (rev 850)
+++ code/trunk/Makefile.am 2012-01-05 17:57:28 UTC (rev 851)
@@ -17,6 +17,7 @@
dist_html_DATA = \
doc/html/index.html \
doc/html/pcre.html \
+ doc/html/pcre16.html \
doc/html/pcre-config.html \
doc/html/pcre_assign_jit_stack.html \
doc/html/pcre_compile.html \
@@ -266,7 +267,7 @@
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS)
endif # WITH_PCRE8
if WITH_PCRE16
-libpcre16_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS)
+libpcre16_la_LDFLAGS = $(EXTRA_LIBPCRE16_LDFLAGS)
endif # WITH_PCRE16
CLEANFILES += pcre_chartables.c
@@ -466,6 +467,7 @@
dist_man_MANS = \
doc/pcre.3 \
+ doc/pcre16.3 \
doc/pcre-config.1 \
doc/pcre_assign_jit_stack.3 \
doc/pcre_compile.3 \
Modified: code/trunk/configure.ac
===================================================================
--- code/trunk/configure.ac 2012-01-04 17:29:11 UTC (rev 850)
+++ code/trunk/configure.ac 2012-01-05 17:57:28 UTC (rev 851)
@@ -14,7 +14,8 @@
m4_define(pcre_date, [2012-01-01])
# Libtool shared library interface versions (current:revision:age)
-m4_define(libpcre_version, [0:1:0])
+m4_define(libpcre_version, [1:0:0])
+m4_define(libpcre16_version, [0:0:0])
m4_define(libpcreposix_version, [0:0:0])
m4_define(libpcrecpp_version, [0:0:0])
@@ -731,6 +732,9 @@
EXTRA_LIBPCRE_LDFLAGS="$EXTRA_LIBPCRE_LDFLAGS \
$NO_UNDEFINED -version-info libpcre_version"
+EXTRA_LIBPCRE16_LDFLAGS="$EXTRA_LIBPCRE16_LDFLAGS \
+ $NO_UNDEFINED -version-info libpcre16_version"
+
EXTRA_LIBPCREPOSIX_LDFLAGS="$EXTRA_LIBPCREPOSIX_LDFLAGS \
$NO_UNDEFINED -version-info libpcreposix_version"
@@ -739,6 +743,7 @@
$EXPORT_ALL_SYMBOLS"
AC_SUBST(EXTRA_LIBPCRE_LDFLAGS)
+AC_SUBST(EXTRA_LIBPCRE16_LDFLAGS)
AC_SUBST(EXTRA_LIBPCREPOSIX_LDFLAGS)
AC_SUBST(EXTRA_LIBPCRECPP_LDFLAGS)