From 57f38d14eac2e7712d6dfeffcb90fbd871ddb93e Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Fri, 5 Mar 2010 20:31:31 +0000 Subject: [PATCH] Cutecash: Allow older glib versions as well. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18843 57a11ea4-9604-0410-9ed3-97b8803252fd --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ee903543ee..45888db82e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,11 +22,11 @@ IF (NOT PKG_CONFIG_FOUND) ENDIF (NOT PKG_CONFIG_FOUND) # glib et al. -PKG_CHECK_MODULES (GLIB2 glib-2.0>=2.20.0) +PKG_CHECK_MODULES (GLIB2 glib-2.0>=2.12.0) PKG_CHECK_MODULES (GCONF2 gconf-2.0>=2.0) -PKG_CHECK_MODULES (GOBJECT gobject-2.0>=2.20.0) -PKG_CHECK_MODULES (GMODULE gmodule-2.0>=2.20.0) -PKG_CHECK_MODULES (GTHREAD gthread-2.0>=2.20.0) +PKG_CHECK_MODULES (GOBJECT gobject-2.0>=2.12.0) +PKG_CHECK_MODULES (GMODULE gmodule-2.0>=2.12.0) +PKG_CHECK_MODULES (GTHREAD gthread-2.0>=2.12.0) IF (MSVC) MESSAGE (STATUS "Hint: To create the import libraries for the gnome DLLs (e.g. gconf-2.lib), use the dlltool as follows: pexports bin/libgconf-2-4.dll > lib/libgconf-2.def ; dlltool -d lib/libgconf-2.def -D bin/libgconf-2-4.dll -l lib/gconf-2.lib")