summaryrefslogtreecommitdiffstats
path: root/src/lib/Makefile.am
diff options
context:
space:
mode:
authorJINMEI Tatuya <jinmei@isc.org>2010-03-24 02:54:04 +0100
committerJINMEI Tatuya <jinmei@isc.org>2010-03-24 02:54:04 +0100
commitd71c306ac370d0add30845e3283fe8663c687912 (patch)
treee70c1295452337564c19e38d5c838d5dc69f28b0 /src/lib/Makefile.am
parentRemoved the environment tests so the tests would run. (diff)
downloadkea-d71c306ac370d0add30845e3283fe8663c687912.tar.xz
kea-d71c306ac370d0add30845e3283fe8663c687912.zip
fixed build problem without boost::sys and boost::python.
(first aid workaround with ugly ifdef's, but worked) also fixed the problem that "from source" didn't work. git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1636 e5f2f494-b856-4b98-b285-d166d9295462
Diffstat (limited to 'src/lib/Makefile.am')
-rw-r--r--src/lib/Makefile.am7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
index cd262a1d74..1b52d8b909 100644
--- a/src/lib/Makefile.am
+++ b/src/lib/Makefile.am
@@ -1 +1,6 @@
-SUBDIRS = exceptions dns cc config auth xfr python
+SUBDIRS = exceptions dns cc config auth python
+if HAVE_BOOST_PYTHON
+if HAVE_BOOST_SYSTEM
+SUBDIRS += xfr
+endif
+endif