From 4e7e211ed0cc2a3e4085da4ca5b517d26b8025d2 Mon Sep 17 00:00:00 2001 From: Matthias Vallentin Date: Mon, 21 Mar 2016 16:54:12 -0700 Subject: [PATCH] Adapt to recent change in CAF CMake script Also deprecate --with-libcaf in favor of --with-caf, as already done in Broker. --- configure | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure b/configure index a7a6f3b059..8859a6fa9b 100755 --- a/configure +++ b/configure @@ -276,8 +276,12 @@ while [ $# -ne 0 ]; do --with-swig=*) append_cache_entry SWIG_EXECUTABLE PATH $optarg ;; + --with-caf=*) + append_cache_entry CAF_ROOT_DIR PATH $optarg + ;; --with-libcaf=*) - append_cache_entry LIBCAF_ROOT_DIR PATH $optarg + echo "warning: --with-libcaf deprecated, use --with-caf instead" + append_cache_entry CAF_ROOT_DIR PATH $optarg ;; --with-rocksdb=*) append_cache_entry ROCKSDB_ROOT_DIR PATH $optarg