summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2009-08-15 18:17:31 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2009-08-15 18:17:31 +0000
commit70701f1069a83f05f93edf88a04d9a1791fc1ccb (patch)
tree1e3f531df75b387e87bb30e7d8e511696c1b7967
parent4fe9c120b4bfdecbaf701a09cb942e0b050eb710 (diff)
downloadpcre-70701f1069a83f05f93edf88a04d9a1791fc1ccb.tar.gz
Add libpcreposix.pc for pkg-config, which was missing.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@423 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.am2
-rwxr-xr-xPrepareRelease1
-rw-r--r--README3
-rw-r--r--configure.ac1
-rw-r--r--libpcreposix.pc.in13
6 files changed, 21 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5c479fc..e2150cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,6 +31,9 @@ Version 8.00 ??-???-??
(with a space rather than an '='). The man page documented the '=' forms,
which are compatible with GNU grep; these now work.
+6. No libpcreposix.pc file was created for pkg-config; there was just
+ libpcre.pc and libpcrecpp.pc. The omission has been rectified.
+
Version 7.9 11-Apr-09
---------------------
diff --git a/Makefile.am b/Makefile.am
index 1dcec00..9783aa4 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -327,7 +327,7 @@ pcre.dll: $(DLL_OBJS)
# We have .pc files for pkg-config users.
pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = libpcre.pc
+pkgconfig_DATA = libpcre.pc libpcreposix.pc
if WITH_PCRE_CPP
pkgconfig_DATA += libpcrecpp.pc
endif
diff --git a/PrepareRelease b/PrepareRelease
index 79b139f..a4f3485 100755
--- a/PrepareRelease
+++ b/PrepareRelease
@@ -128,6 +128,7 @@ files="\
RunTest.bat \
pcre-config.in \
libpcre.pc.in \
+ libpcreposix.pc.in \
libpcrecpp.pc.in \
config.h.in \
pcre_printint.src \
diff --git a/README b/README
index 6b7c83f..2a7411d 100644
--- a/README
+++ b/README
@@ -721,6 +721,7 @@ The distribution should contain the following files:
doc/perltest.txt plain text documentation of Perl test program
install-sh a shell script for installing files
libpcre.pc.in template for libpcre.pc for pkg-config
+ libpcreposix.pc.in template for libpcreposix.pc for pkg-config
libpcrecpp.pc.in template for libpcrecpp.pc for pkg-config
ltmain.sh file used to build a libtool script
missing ) common stub for a few missing GNU programs while
@@ -764,4 +765,4 @@ The distribution should contain the following files:
Philip Hazel
Email local part: ph10
Email domain: cam.ac.uk
-Last updated: 21 March 2009
+Last updated: 15 August 2009
diff --git a/configure.ac b/configure.ac
index d1ff56d..b835571 100644
--- a/configure.ac
+++ b/configure.ac
@@ -600,6 +600,7 @@ AC_SUBST(LIBREADLINE)
AC_CONFIG_FILES(
Makefile
libpcre.pc
+ libpcreposix.pc
libpcrecpp.pc
pcre-config
pcre.h
diff --git a/libpcreposix.pc.in b/libpcreposix.pc.in
new file mode 100644
index 0000000..73bae52
--- /dev/null
+++ b/libpcreposix.pc.in
@@ -0,0 +1,13 @@
+# Package Information for pkg-config
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: libpcreposix
+Description: PCREPosix - Posix compatible interface to libpcre
+Version: @PACKAGE_VERSION@
+Libs: -L${libdir} -lpcreposix
+Cflags: -I${includedir}
+Requires.private: libpcre