summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2005-07-25 18:35:53 +0000
committerEric S. Raymond <esr@thyrsus.com>2005-07-25 18:35:53 +0000
commit47690cb6367a55832e6d7afc357ceae217be8a88 (patch)
tree21871eb50d128ad3e6af4aedfd88a1fadbfbff3a
parent69c156b4fa0e1b77908992d2ee607de7f9aae983 (diff)
downloadgpsd-47690cb6367a55832e6d7afc357ceae217be8a88.tar.gz
Try to avoid the nasty config problem.
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index ae368791..4c78e8da 100644
--- a/configure.ac
+++ b/configure.ac
@@ -305,7 +305,7 @@ else
AC_MSG_RESULT([no])
fi
-dnl Manually configure DBUD until we figure out a
+dnl Manually configure DBUS until we figure out a
dnl distro-independent was to check for both libraries and headers
AC_ARG_ENABLE(dbus,
AC_HELP_STRING([--enable-dbus],
@@ -315,7 +315,8 @@ AC_MSG_CHECKING([for DBUS support])
if test x"$ac_dbus" == "xyes"; then
AC_MSG_RESULT([yes])
AC_DEFINE([DBUS_ENABLE], 1, [DBUS support])
- PKG_CHECK_MODULES(DBUS, dbus-1 >= 0.23.4 )
+ # Older versions of atotools barf and die on this.
+ #PKG_CHECK_MODULES(DBUS, dbus-1 >= 0.23.4 )
AC_SUBST(DBUS_CFLAGS)
AC_SUBST(DBUS_LIBS)
else