summaryrefslogtreecommitdiff
path: root/dev-lang/gdl/files/0.9.2-proj4.patch
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2015-10-14 16:14:30 +0100
committerJames Le Cuirot <chewi@gentoo.org>2015-10-14 16:22:25 +0100
commit7d94d8eb5d7af9cfed628bf2305380ac7611a20c (patch)
tree154b92b6054bdea0c29da49ddb416b7850271a06 /dev-lang/gdl/files/0.9.2-proj4.patch
parentd50549b87f3b9369d4012148d510214abea0f8c7 (diff)
downloadgentoo-7d94d8eb5d7af9cfed628bf2305380ac7611a20c.tar.gz
gentoo-7d94d8eb5d7af9cfed628bf2305380ac7611a20c.tar.bz2
gentoo-7d94d8eb5d7af9cfed628bf2305380ac7611a20c.zip
dev-lang/gdl: Remove old
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-lang/gdl/files/0.9.2-proj4.patch')
-rw-r--r--dev-lang/gdl/files/0.9.2-proj4.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-lang/gdl/files/0.9.2-proj4.patch b/dev-lang/gdl/files/0.9.2-proj4.patch
deleted file mode 100644
index 594b6d5cbae8..000000000000
--- a/dev-lang/gdl/files/0.9.2-proj4.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- gdl-0.9.2.orig/CMakeLists.txt 2011-12-22 20:18:17.000000000 +0000
-+++ gdl-0.9.2/CMakeLists.txt 2011-12-24 06:12:08.000000000 +0000
-@@ -412,17 +420,17 @@
- find_package(Libproj4 QUIET)
- if(LIBPROJ4_FOUND)
- set(CMAKE_REQUIRED_LIBRARIES ${LIBPROJ4_LIBRARIES} ${GSL_LIBRARIES} m)
-- check_library_exists("${LIBPROJ4_LIBRARIES}" proj_init "" USE_LIBPROJ4_NEW)
-- if(USE_LIBPROJ4_NEW)
-+ check_library_exists("${LIBPROJ4_LIBRARIES}" proj_init "" USE_LIBPROJ4)
-+ if(USE_LIBPROJ4)
- set(USE_LIBPROJ4 1)
-- else(USE_LIBPROJ4_NEW)
-- check_library_exists("${LIBPROJ4_LIBRARIES}" pj_init "" USE_LIBPROJ4)
-- if(NOT USE_LIBPROJ4)
-+ else(USE_LIBPROJ4)
-+ check_library_exists("${LIBPROJ4_LIBRARIES}" pj_init "" USE_LIBPROJ4_NEW)
-+ if(NOT USE_LIBPROJ4_NEW)
- message(FATAL_ERROR "Libproj4 is required but was not found.\n"
- "Use -DLIBPROJ4DIR=DIR to specify the Libproj4 directory tree.\n"
- "Use -DLIBPRJ4=OFF to not use it.")
-- endif(NOT USE_LIBPROJ4)
-- endif(USE_LIBPROJ4_NEW)
-+ endif(NOT USE_LIBPROJ4_NEW)
-+ endif(USE_LIBPROJ4)
- include_directories(${LIBPROJ4_INCLUDE_DIR})
- set(LIBRARIES ${LIBRARIES} ${LIBPROJ4_LIBRARIES})
- set(CMAKE_REQUIRED_LIBRARIES)