[Pcre-svn] [423] code/trunk: Add libpcreposix.pc for pkg-con…

Página Inicial
Delete this message
Autor: Subversion repository
Data:  
Para: pcre-svn
Assunto: [Pcre-svn] [423] code/trunk: Add libpcreposix.pc for pkg-config, which was missing.
Revision: 423
          http://vcs.pcre.org/viewvc?view=rev&revision=423
Author:   ph10
Date:     2009-08-15 19:17:31 +0100 (Sat, 15 Aug 2009)


Log Message:
-----------
Add libpcreposix.pc for pkg-config, which was missing.

Modified Paths:
--------------
    code/trunk/ChangeLog
    code/trunk/Makefile.am
    code/trunk/PrepareRelease
    code/trunk/README
    code/trunk/configure.ac


Added Paths:
-----------
    code/trunk/libpcreposix.pc.in


Property Changed:
----------------
    code/trunk/



Property changes on: code/trunk
___________________________________________________________________
Name: svn:ignore
- .deps
.libs
CMakeCache.txt
CMakeFiles
DartTestfile.txt
INSTALL
Makefile
Makefile.in
Testing
aclocal.m4
autom4te.cache
cmake_install.cmake
config.guess
config.h
config.h.generic
config.h.in
config.log
config.status
config.sub
configure
depcomp
dftables
install-sh
libpcre.pc
libpcre.so
libpcrecpp.pc
libpcrecpp.so
libpcreposix.so
libtool
ltmain.sh
missing
pcre.h
pcre.h.generic
pcre_chartables.c
pcre-config
pcre_scanner_unittest
pcre_stringpiece.h
pcre_stringpiece_unittest
pcrecpparg.h
pcrecpp_unittest
pcredemo
pcregrep
pcretest
progress.make
stamp-h1
test3input
test3output
testNinput
testsavedregex
teststderr
teststdout
testtry

+ .deps
.libs
CMakeCache.txt
CMakeFiles
DartTestfile.txt
INSTALL
Makefile
Makefile.in
Testing
aclocal.m4
autom4te.cache
cmake_install.cmake
config.guess
config.h
config.h.generic
config.h.in
config.log
config.status
config.sub
configure
depcomp
dftables
install-sh
libpcre.pc
libpcre.so
libpcrecpp.pc
libpcrecpp.so
libpcreposix.pc
libpcreposix.so
libtool
ltmain.sh
missing
pcre.h
pcre.h.generic
pcre_chartables.c
pcre-config
pcre_scanner_unittest
pcre_stringpiece.h
pcre_stringpiece_unittest
pcrecpparg.h
pcrecpp_unittest
pcredemo
pcregrep
pcretest
progress.make
stamp-h1
test3input
test3output
testNinput
testsavedregex
teststderr
teststdout
testtry


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2009-08-14 16:42:55 UTC (rev 422)
+++ code/trunk/ChangeLog    2009-08-15 18:17:31 UTC (rev 423)
@@ -31,6 +31,9 @@
     (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
---------------------

Modified: code/trunk/Makefile.am
===================================================================
--- code/trunk/Makefile.am    2009-08-14 16:42:55 UTC (rev 422)
+++ code/trunk/Makefile.am    2009-08-15 18:17:31 UTC (rev 423)
@@ -327,7 +327,7 @@


# 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

Modified: code/trunk/PrepareRelease
===================================================================
--- code/trunk/PrepareRelease    2009-08-14 16:42:55 UTC (rev 422)
+++ code/trunk/PrepareRelease    2009-08-15 18:17:31 UTC (rev 423)
@@ -128,6 +128,7 @@
   RunTest.bat \
   pcre-config.in \
   libpcre.pc.in \
+  libpcreposix.pc.in \
   libpcrecpp.pc.in \
   config.h.in \
   pcre_printint.src \


Modified: code/trunk/README
===================================================================
--- code/trunk/README    2009-08-14 16:42:55 UTC (rev 422)
+++ code/trunk/README    2009-08-15 18:17:31 UTC (rev 423)
@@ -721,6 +721,7 @@
   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 @@
 Philip Hazel
 Email local part: ph10
 Email domain: cam.ac.uk
-Last updated: 21 March 2009
+Last updated: 15 August 2009


Modified: code/trunk/configure.ac
===================================================================
--- code/trunk/configure.ac    2009-08-14 16:42:55 UTC (rev 422)
+++ code/trunk/configure.ac    2009-08-15 18:17:31 UTC (rev 423)
@@ -600,6 +600,7 @@
 AC_CONFIG_FILES(
     Makefile
     libpcre.pc
+        libpcreposix.pc
     libpcrecpp.pc
     pcre-config
     pcre.h


Added: code/trunk/libpcreposix.pc.in
===================================================================
--- code/trunk/libpcreposix.pc.in                            (rev 0)
+++ code/trunk/libpcreposix.pc.in    2009-08-15 18:17:31 UTC (rev 423)
@@ -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