From e649eb5f355eb2e43f426ea20d3cffa08ff0bd5d Mon Sep 17 00:00:00 2001 From: cdfrey Date: Fri, 7 Mar 2008 23:13:58 +0000 Subject: [PATCH] - fixed problem in tools/Makefile.am where bs11nread was included in build, even if --with-boost was not specified on ./configure command line --- ChangeLog | 3 +++ tools/Makefile.am | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 02a9427f..a201b8d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,9 @@ Release: version 0.12 - 2008/03/?? 2008/03/07 - updated the install.php web page with Paul Dugas's notes on building RPM's from CVS + - fixed problem in tools/Makefile.am where bs11nread was included + in build, even if --with-boost was not specified + on ./configure command line 2008/03/06 - changed format of Boost serialization file output from btool, so that the database name is stored as the first line diff --git a/tools/Makefile.am b/tools/Makefile.am index 74d73223..6c8bd44a 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -5,7 +5,10 @@ INCLUDES = $(LIBUSB_CFLAGS) #AM_CXXFLAGS = -ansi -Wall -fno-strict-aliasing -g AM_CXXFLAGS = -ansi -Wall -g -bin_PROGRAMS = btool bs11nread bidentify upldif btranslate bktrans +bin_PROGRAMS = btool bidentify upldif btranslate bktrans +if WITH_BOOST +bin_PROGRAMS += bs11nread +endif sbin_PROGRAMS = bcharge breset pppob btool_SOURCES = btool.cc -- 2.11.4.GIT