[Cppunit-cvs] cppunit cppunit.pc.in,NONE,1.1 ChangeLog,1.245,1.246 Makefile.am,1.35,1.36 NEWS,1.94,1
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2006-03-04 21:47:13
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12448 Modified Files: ChangeLog Makefile.am NEWS configure.in Added Files: cppunit.pc.in Log Message: * cppunit.pc.in: * configure.in: * Makefile.am: integrated patch from Rober Leight to generate pkg-config. Index: NEWS =================================================================== RCS file: /cvsroot/cppunit/cppunit/NEWS,v retrieving revision 1.94 retrieving revision 1.95 diff -C2 -d -r1.94 -r1.95 *** NEWS 4 Mar 2006 20:58:04 -0000 1.94 --- NEWS 4 Mar 2006 21:47:05 -0000 1.95 *************** *** 59,62 **** --- 59,65 ---- * Compilation: + - The standard pkg-config file is now generated on unix (contributed by + Robert Leight). + - MinGW: patch #1024428 contributed by astar, fixed compilation issue in Win32DynamicLibraryManager.cpp. Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.245 retrieving revision 1.246 diff -C2 -d -r1.245 -r1.246 *** ChangeLog 4 Mar 2006 21:20:36 -0000 1.245 --- ChangeLog 4 Mar 2006 21:47:05 -0000 1.246 *************** *** 1,8 **** --- 1,14 ---- 2006-03-04 Baptiste Lepilleur <gai...@fr...> * contrib/xml-xsl/report.xsl: reported correction posted on the wiki. + * removed debian/ directory. An up to date patch can be found at: packages.debian.org. + * cppunit.spec.in: applied patch #1242905 partially (%post and %postun). + * cppunit.pc.in: + * configure.in: + * Makefile.am: integrated patch from Rober Leight to generate pkg-config. + 2006-02-04 Baptiste Lepilleur <gai...@fr...> * include/cppunit/TestListener.h: Index: Makefile.am =================================================================== RCS file: /cvsroot/cppunit/cppunit/Makefile.am,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** Makefile.am 18 Feb 2004 21:36:41 -0000 1.35 --- Makefile.am 4 Mar 2006 21:47:05 -0000 1.36 *************** *** 4,7 **** --- 4,11 ---- SUBDIRS = src include examples doc + pkgconfigdatadir = $(libdir)/pkgconfig + + pkgconfigdata_DATA = cppunit.pc + bin_SCRIPTS = cppunit-config man_MANS = cppunit-config.1 --- NEW FILE: cppunit.pc.in --- prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: CppUnit Description: The C++ Unit Test Library Version: @CPPUNIT_VERSION@ Libs: -L${libdir} -lcppunit Libs.private: @LIBADD_DL@ Cflags: -I${includedir} Index: configure.in =================================================================== RCS file: /cvsroot/cppunit/cppunit/configure.in,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** configure.in 7 Nov 2005 08:58:37 -0000 1.82 --- configure.in 4 Mar 2006 21:47:05 -0000 1.83 *************** *** 118,121 **** --- 118,122 ---- AC_OUTPUT([ Makefile + cppunit.pc cppunit.spec cppunit-config |