From 1c48b5a62f73234ed26bb20f0ab345ab61cda0ab Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 18 Feb 2010 07:49:04 -0500 Subject: Rename server/ directory to src/ Also update BUILD.txt --- src/external/libcollection.m4 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/external/libcollection.m4 (limited to 'src/external/libcollection.m4') diff --git a/src/external/libcollection.m4 b/src/external/libcollection.m4 new file mode 100644 index 00000000..8fc37e8c --- /dev/null +++ b/src/external/libcollection.m4 @@ -0,0 +1,12 @@ +AC_SUBST(SYSTEM_COLLECTION_OBJ) +AC_SUBST(SYSTEM_COLLECTION_CFLAGS) +AC_SUBST(SYSTEM_COLLECTION_LIBS) + +PKG_CHECK_MODULES(SYSTEM_COLLECTION, collection >= 0.4.0, + have_system_collection=true, + have_system_collection=false + ) +# This is future-compatible. Right now, we'll force the use of our +# in-tree copy. When collection is split off as its own source package, we'll +# fix this test +AM_CONDITIONAL(HAVE_SYSTEM_COLLECTION, test x$have_system_collection = xtrue_FORCE_IN_TREE) -- cgit