From 520aa79ae3b967cb4ef366f92266b53b78c2f1c9 Mon Sep 17 00:00:00 2001 From: Loïc Collignon Date: Thu, 8 Feb 2018 11:06:33 +0100 Subject: moved files to root folder. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I7103241843736e1a5747253781485afa457a64d0 Signed-off-by: Loïc Collignon --- ll-database-binding/conf.d/cmake/FindGDBM.cmake | 51 ------------------------- 1 file changed, 51 deletions(-) delete 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 deleted file mode 100644 index abc9987..0000000 --- a/ll-database-binding/conf.d/cmake/FindGDBM.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# -*- 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