Added version check on FIND_PACKAGE(PkgConfig) to attempt to fix build with older versions of CMake

This commit is contained in:
Robert Osfield 2008-05-30 21:08:28 +00:00
parent 65772e451c
commit 03d12b4b94

View File

@ -247,9 +247,12 @@ ELSE(DESIRED_QT_VERSION)
ENDIF(DESIRED_QT_VERSION) ENDIF(DESIRED_QT_VERSION)
#use pkg-config to find various modues #use pkg-config to find various modues
FIND_PACKAGE(PkgConfig) IF (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION} STRGREATER 2.4.5)
FIND_PACKAGE(PkgConfig)
ENDIF(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION} STRGREATER 2.4.5)
IF(PKG_CONFIG_FOUND) IF(PKG_CONFIG_FOUND)
@ -268,7 +271,6 @@ IF(PKG_CONFIG_FOUND)
ENDIF(PKG_CONFIG_FOUND) ENDIF(PKG_CONFIG_FOUND)
# #
# Test to determine if we want the "tripledot" form of the GLU tesselator callback. # Test to determine if we want the "tripledot" form of the GLU tesselator callback.
# #