diff options
author | Glenn Morris <rgm@gnu.org> | 2011-07-01 13:53:59 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-07-01 13:53:59 -0400 |
commit | 3279eb878e4b1699f5da8b8817cf03806b3fa35b (patch) | |
tree | dfc3ed74db5d7b92b22b963584aef2099d96780e /configure.in | |
parent | eb604e34e566f3f8b03d2f77f178d75e5e4743c1 (diff) | |
download | emacs-3279eb878e4b1699f5da8b8817cf03806b3fa35b.tar.gz |
Fix typos that break xsettings.c compilation.
* configure.in (SETTINGS_CFLAGS, SETTINGS_LIBS) [HAVE_GCONF]: Fix typo.
* src/Makefile.in (SETTINGS_LIBS): Fix typo.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 92fd6847d53..e5452f5122b 100644 --- a/configure.in +++ b/configure.in @@ -2001,8 +2001,8 @@ if test "${HAVE_GSETTINGS}" = "no" && test "${HAVE_X11}" = "yes" && test "${with if test "$HAVE_GCONF" = yes; then AC_DEFINE(HAVE_GCONF, 1, [Define to 1 if using GConf.]) dnl Newer GConf doesn't link with g_objects, so this is not defined. - SETTINGS_CFLAGS="$GSETTINGS_CFLAGS" - SETTINGS_LIBS="$GSETTINGS_LIBS" + SETTINGS_CFLAGS="$GCONF_CFLAGS" + SETTINGS_LIBS="$GCONF_LIBS" fi fi |