summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPino Toscano <pino@kde.org>2010-03-07 16:49:14 +0100
committerPino Toscano <pino@kde.org>2010-03-07 16:49:14 +0100
commitcfecc69b7f05920f543ee7e9aafeafaa4c3506fb (patch)
tree9f9eec266b1cdacecb9239c877e114bb4c9e879a
parent8ff1cf03d2607b0f13bbbbf272f2b03d8927bd24 (diff)
[CMake] apparently there's not a minimum version requirement for GDK, so drop the check
-rw-r--r--cmake/modules/FindGTK.cmake5
1 files changed, 1 insertions, 4 deletions
diff --git a/cmake/modules/FindGTK.cmake b/cmake/modules/FindGTK.cmake
index 0ec29f07..6d614ea2 100644
--- a/cmake/modules/FindGTK.cmake
+++ b/cmake/modules/FindGTK.cmake
@@ -27,10 +27,7 @@ if (NOT WIN32)
endif (_LibGLIB2IncDir)
if (_LibGDK2IncDir)
- exec_program(${PKGCONFIG_EXECUTABLE} ARGS --atleast-version=2.14 gdk-2.0 RETURN_VALUE _return_VALUE OUTPUT_VARIABLE _pkgconfigDevNull)
- if(_return_VALUE STREQUAL "0")
- set(_gdk_FOUND TRUE)
- endif(_return_VALUE STREQUAL "0")
+ set(_gdk_FOUND TRUE)
endif (_LibGDK2IncDir)
if (_glib_FOUND)