From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9659 invoked by alias); 13 Jul 2007 17:08:05 -0000 Received: (qmail 9639 invoked by uid 9447); 13 Jul 2007 17:08:04 -0000 Date: Fri, 13 Jul 2007 17:08:00 -0000 Message-ID: <20070713170804.9637.qmail@sourceware.org> From: agk@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 WHATS_NEW configure 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: 2007-07/txt/msg00015.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: agk@sourceware.org 2007-07-13 17:08:00 Modified files: . : WHATS_NEW configure configure.in Log message: Fix configure libdevmapper.h check when --with-dmdir is used. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.655&r2=1.656 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/configure.diff?cvsroot=lvm2&r1=1.57&r2=1.58 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/configure.in.diff?cvsroot=lvm2&r1=1.56&r2=1.57 --- LVM2/WHATS_NEW 2007/07/12 15:38:52 1.655 +++ LVM2/WHATS_NEW 2007/07/13 17:08:00 1.656 @@ -1,5 +1,6 @@ Version 2.02.27 - ================================ + Fix configure libdevmapper.h check when --with-dmdir is used. Turn _add_pv_to_vg() into external library function add_pv_to_vg(). Add pv_by_path() external library function. Tidy clvmd-openais of redundant bits, and improve an error report. --- LVM2/configure 2007/01/09 22:07:20 1.57 +++ LVM2/configure 2007/07/13 17:08:00 1.58 @@ -8957,7 +8957,7 @@ # Check whether --with-dmdir or --without-dmdir was given. if test "${with_dmdir+set}" = set; then withval="$with_dmdir" - DMDIR="$withval" + DMDIR="$withval" CPPFLAGS="$CPPFLAGS -I$DMDIR/include" else DMDIR= fi; --- LVM2/configure.in 2007/01/09 22:07:20 1.56 +++ LVM2/configure.in 2007/07/13 17:08:00 1.57 @@ -522,7 +522,7 @@ AC_ARG_WITH(dmdir, [ --with-dmdir=DIR Build against device-mapper source tree in DIR], - [ DMDIR="$withval" ], + [ DMDIR="$withval" CPPFLAGS="$CPPFLAGS -I$DMDIR/include"], [ DMDIR= ]) ################################################################################