diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 3779924c6550..5f34231750af 100644 --- a/configure.ac +++ b/configure.ac @@ -2334,6 +2334,11 @@ AC_ARG_WITH(system-boost, [Use boost already on system.]),, [with_system_boost="$with_system_headers"]) +AC_ARG_WITH(system-cuckoo, + AS_HELP_STRING([--with-system-cuckoo], + [Use libcuckoo already on system.]),, + [with_system_cuckoo="$with_system_headers"]) + AC_ARG_WITH(system-glm, AS_HELP_STRING([--with-system-glm], [Use glm already on system.]),, @@ -10350,6 +10355,26 @@ dnl =================================================================== libo_CHECK_SYSTEM_MODULE([mdds], [MDDS], [mdds-1.5 >= 1.5.0], ["-I${WORKDIR}/UnpackedTarball/mdds/include"]) dnl =================================================================== +dnl Check for system cuckoo +dnl =================================================================== +AC_MSG_CHECKING([which cuckoo to use]) +if test "$with_system_cuckoo" = "yes" -o "$with_system_headers" = "yes"; then + AC_MSG_RESULT([external]) + SYSTEM_CUCKOO=TRUE + AC_LANG_PUSH([C++]) + AC_CHECK_HEADER([libcuckoo/cuckoohash_map.hh], [], + [AC_MSG_ERROR([libcuckoo/cuckoohash_map.hh not found. install cuckoo])], []) + AC_LANG_POP([C++]) +else + AC_MSG_RESULT([internal]) + BUILD_TYPE="$BUILD_TYPE CUCKOO" + SYSTEM_CUCKOO= + CUCKOO_CFLAGS="${ISYSTEM}${WORKDIR}/UnpackedTarball/cuckoo" +fi +AC_SUBST([CUCKOO_CFLAGS]) +AC_SUBST([SYSTEM_CUCKOO]) + +dnl =================================================================== dnl Check for system glm dnl =================================================================== AC_MSG_CHECKING([which glm to use]) |