public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
* LVM2 test/unit/Makefile.in ./configure.in
@ 2011-12-11 15:15 mornfall
0 siblings, 0 replies; only message in thread
From: mornfall @ 2011-12-11 15:15 UTC (permalink / raw)
To: lvm-devel, lvm2-cvs
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)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-12-11 15:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-11 15:15 LVM2 test/unit/Makefile.in ./configure.in mornfall
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).