From 83640c470bd076bf3085987b498276d687abe032 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Tue, 9 Dec 2003 04:14:35 +0000 Subject: [PATCH] * configure.in: catch the SUSE usage of "gnome.gconf" instead of the standard "gconf" svn: r2474 --- gramps2/configure.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gramps2/configure.in b/gramps2/configure.in index 1ab9d6d2b..21e4e474d 100644 --- a/gramps2/configure.in +++ b/gramps2/configure.in @@ -5,8 +5,8 @@ AC_PREREQ(2.57) AC_INIT(gramps, 1.0.0, gramps-bugs@lists.sourceforge.net) AC_CONFIG_SRCDIR(src/gramps.py) AM_INIT_AUTOMAKE(1.6.3) -RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-') -dnl RELEASE=1 +dnl RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-') +RELEASE=1 VERSIONSTRING=$VERSION if test x"$RELEASE" != "x" @@ -121,6 +121,9 @@ $pygtk_require try: import gconf out("YES") +except ImportError: + import gnome.gconf + out("YES") except ImportError: out("NO") EOF