aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2011-08-23 09:25:06 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2011-08-23 09:25:06 +0000
commit5603cef9f2755f0826933e78f4e511bdc47d16b2 (patch)
tree49ff20550b874530e3e9ae8ca76219618cda97be /cmake
parentb213104006167e21211f7aed20754cd573c7bff0 (diff)
Remove support for libpcre, we use GRegex in GLib.
svn path=/trunk/; revision=38683
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindPCRE.cmake35
1 files changed, 0 insertions, 35 deletions
diff --git a/cmake/modules/FindPCRE.cmake b/cmake/modules/FindPCRE.cmake
deleted file mode 100644
index 125235609e..0000000000
--- a/cmake/modules/FindPCRE.cmake
+++ /dev/null
@@ -1,35 +0,0 @@
-#
-# $Id$
-#
-# - Find pcre
-# Find the native PCRE includes and library
-#
-# PCRE_INCLUDE_DIRS - where to find pcre.h, etc.
-# PCRE_LIBRARIES - List of libraries when using pcre.
-# PCRE_FOUND - True if pcre found.
-
-
-IF (PCRE_INCLUDE_DIRS)
- # Already in cache, be silent
- SET(PCRE_FIND_QUIETLY TRUE)
-ENDIF (PCRE_INCLUDE_DIRS)
-
-FIND_PATH(PCRE_INCLUDE_DIR pcre.h)
-
-SET(PCRE_NAMES pcre)
-FIND_LIBRARY(PCRE_LIBRARY NAMES ${PCRE_NAMES} )
-
-# handle the QUIETLY and REQUIRED arguments and set PCRE_FOUND to TRUE if
-# all listed variables are TRUE
-INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(PCRE DEFAULT_MSG PCRE_LIBRARY PCRE_INCLUDE_DIR)
-
-IF(PCRE_FOUND)
- SET( PCRE_LIBRARIES ${PCRE_LIBRARY} )
- SET( PCRE_INCLUDE_DIRS ${PCRE_INCLUDE_DIR} )
-ELSE(PCRE_FOUND)
- SET( PCRE_LIBRARIES )
- SET( PCRE_INCLUDE_DIRS )
-ENDIF(PCRE_FOUND)
-
-MARK_AS_ADVANCED( PCRE_LIBRARIES PCRE_INCLUDE_DIRS )