* configure.in: catch the SUSE usage of "gnome.gconf" instead of
the standard "gconf" svn: r2474
This commit is contained in:
parent
06a18b82bb
commit
83640c470b
@ -5,8 +5,8 @@ AC_PREREQ(2.57)
|
|||||||
AC_INIT(gramps, 1.0.0, gramps-bugs@lists.sourceforge.net)
|
AC_INIT(gramps, 1.0.0, gramps-bugs@lists.sourceforge.net)
|
||||||
AC_CONFIG_SRCDIR(src/gramps.py)
|
AC_CONFIG_SRCDIR(src/gramps.py)
|
||||||
AM_INIT_AUTOMAKE(1.6.3)
|
AM_INIT_AUTOMAKE(1.6.3)
|
||||||
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
dnl RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
||||||
dnl RELEASE=1
|
RELEASE=1
|
||||||
|
|
||||||
VERSIONSTRING=$VERSION
|
VERSIONSTRING=$VERSION
|
||||||
if test x"$RELEASE" != "x"
|
if test x"$RELEASE" != "x"
|
||||||
@ -121,6 +121,9 @@ $pygtk_require
|
|||||||
try:
|
try:
|
||||||
import gconf
|
import gconf
|
||||||
out("YES")
|
out("YES")
|
||||||
|
except ImportError:
|
||||||
|
import gnome.gconf
|
||||||
|
out("YES")
|
||||||
except ImportError:
|
except ImportError:
|
||||||
out("NO")
|
out("NO")
|
||||||
EOF
|
EOF
|
||||||
|
Loading…
Reference in New Issue
Block a user