From 562d2639c2b675859011202a46c2ed6f61c4457c Mon Sep 17 00:00:00 2001 From: José Bollo Date: Wed, 25 Oct 2017 14:47:16 +0200 Subject: database: switch to use gdbm by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I25b54a6b1f66f3acef3c1c7cb96e0daaa1019eae Signed-off-by: José Bollo --- ll-database-binding/conf.d/cmake/FindGDBM.cmake | 51 +++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 ll-database-binding/conf.d/cmake/FindGDBM.cmake (limited to 'll-database-binding/conf.d/cmake/FindGDBM.cmake') diff --git a/ll-database-binding/conf.d/cmake/FindGDBM.cmake b/ll-database-binding/conf.d/cmake/FindGDBM.cmake new file mode 100644 index 0000000..abc9987 --- /dev/null +++ b/ll-database-binding/conf.d/cmake/FindGDBM.cmake @@ -0,0 +1,51 @@ +# -*- cmake -*- + +# - Find gdbm +# Find the gdbm includes and library +# This module defines +# DB_INCLUDE_DIR, where to find db.h, etc. +# DB_LIBRARIES, the libraries needed to use BerkeleyDB. +# DB_FOUND, If false, do not try to use BerkeleyDB. +# also defined, but not for general use are +# DB_LIBRARY, where to find the BerkeleyDB library. + +FIND_PATH(DB_INCLUDE_DIR gdbm.h + /usr/local/include/gdbm + /usr/local/include + /usr/include/gdbm + /usr/include + ) + +SET(DB_NAMES ${DB_NAMES} gdbm) +FIND_LIBRARY(DB_LIBRARY + NAMES ${DB_NAMES} + PATHS /usr/lib /usr/local/lib + ) + +IF (DB_LIBRARY AND DB_INCLUDE_DIR) + SET(DB_LIBRARIES ${DB_LIBRARY}) + SET(DB_FOUND "YES") +ELSE (DB_LIBRARY AND DB_INCLUDE_DIR) + SET(DB_FOUND "NO") +ENDIF (DB_LIBRARY AND DB_INCLUDE_DIR) + + +IF (DB_FOUND) + IF (NOT DB_FIND_QUIETLY) + MESSAGE(STATUS "Found gdbm: ${DB_LIBRARIES}") + ENDIF (NOT DB_FIND_QUIETLY) +ELSE (DB_FOUND) + IF (DB_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Could not find gdbm library") + ENDIF (DB_FIND_REQUIRED) +ENDIF (DB_FOUND) + +# Deprecated declarations. +SET (NATIVE_DB_INCLUDE_PATH ${DB_INCLUDE_DIR} ) +GET_FILENAME_COMPONENT (NATIVE_DB_LIB_PATH ${DB_LIBRARY} PATH) + +MARK_AS_ADVANCED( + DB_LIBRARY + DB_INCLUDE_DIR + ) + -- cgit 1.2.3-korg