diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-31 16:03:53 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-31 16:04:21 -0400 |
commit | b027961b96be1382cbefbcedcb79c0cf349863a6 (patch) | |
tree | 1aafc7225d6d099acef0289992a9d6d8543aaea3 /Makefile.am | |
parent | d2df584373c6a083908964369497f77ada10e16d (diff) | |
download | fork-ledger-b027961b96be1382cbefbcedcb79c0cf349863a6.tar.gz fork-ledger-b027961b96be1382cbefbcedcb79c0cf349863a6.tar.bz2 fork-ledger-b027961b96be1382cbefbcedcb79c0cf349863a6.zip |
Removed unnecessary #ifdef block. pyinterp.h now guards itself.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index db0c7b55..55d2df7c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -13,12 +13,6 @@ lib_LTLIBRARIES = \ lib_cppflags = -I$(srcdir)/src -I$(srcdir)/lib \ -I$(srcdir)/lib/utfcpp/source \ -I$(srcdir)/lib/irrxml/src -if HAVE_LIBOFX -lib_cppflags += -DHAVE_LIBOFX=1 -endif -if DEBUG -lib_cppflags += -DDEBUG_MODE -endif libledger_util_la_SOURCES = \ src/utils.cc \ @@ -198,7 +192,7 @@ bin_PROGRAMS = ledger ledger_CPPFLAGS = $(lib_cppflags) if HAVE_BOOST_PYTHON -ledger_CPPFLAGS += -DHAVE_BOOST_PYTHON=1 -I$(srcdir)/python +ledger_CPPFLAGS += -I$(srcdir)/python endif ledger_SOURCES = src/main.cc ledger_LDADD = $(LIBOBJS) $(lib_LTLIBRARIES) |