From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5780 invoked by alias); 11 Dec 2011 15:15:59 -0000 Received: (qmail 5760 invoked by uid 9699); 11 Dec 2011 15:15:58 -0000 Date: Sun, 11 Dec 2011 15:15:00 -0000 Message-ID: <20111211151558.5758.qmail@sourceware.org> From: mornfall@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 test/unit/Makefile.in ./configure.in Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2011-12/txt/msg00019.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: mornfall@sourceware.org 2011-12-11 15:15:58 Modified files: test/unit : Makefile.in . : configure.in Log message: Use pkg-config to look for CUnit (needed for systems where it's not on the standard include path). Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/unit/Makefile.in.diff?cvsroot=lvm2&r1=1.3&r2=1.4 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/configure.in.diff?cvsroot=lvm2&r1=1.176&r2=1.177 --- LVM2/test/unit/Makefile.in 2011/11/23 12:21:42 1.3 +++ LVM2/test/unit/Makefile.in 2011/12/11 15:15:57 1.4 @@ -19,12 +19,13 @@ TARGETS = run include $(top_builddir)/make.tmpl -LDFLAGS += -ldevmapper -lcunit - ifeq ("$(TESTING)", "yes") +LDFLAGS += -ldevmapper @CUNIT_LIBS@ +CFLAGS += @CUNIT_CFLAGS@ + all: unit -endif unit: $(TARGETS) @echo Running unit tests LD_LIBRARY_PATH=$(top_builddir)/libdm ./$(TARGETS) +endif --- LVM2/configure.in 2011/11/21 10:40:21 1.176 +++ LVM2/configure.in 2011/12/11 15:15:57 1.177 @@ -759,10 +759,7 @@ AC_MSG_RESULT($TESTING) if test "$TESTING" = yes; then - AC_CHECK_HEADER([CUnit/Basic.h], have_cunit=yes, have_cunit=no) - if test "$have_cunit" = "no"; then - AC_MSG_ERROR([CUnit is required for unit testing]) - fi + PKG_CHECK_MODULES(CUNIT, cunit >= 2.0) fi ################################################################################ @@ -1391,6 +1388,8 @@ AC_SUBST(UDEV_PC) AC_SUBST(UDEV_RULES) AC_SUBST(UDEV_SYNC) +AC_SUBST(CUNIT_LIBS) +AC_SUBST(CUNIT_CFLAGS) AC_SUBST(WRITE_INSTALL) AC_SUBST(DMEVENTD_PIDFILE) AC_SUBST(interface)