diff options
author | Marc Mutz <marc@kdab.net> | 2009-04-17 20:02:36 +0200 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2009-12-01 08:36:28 +0100 |
commit | 5a0a3b4451bacbf305d72ccd0b1296fdf9609447 (patch) | |
tree | 3bee97186f49674b85430604eceb63b3e0ca3539 /configure.in | |
parent | 558d3e10a176f082e6bcc3f9afe6b688c0b67d71 (diff) |
configure.in: don't look for X11 on W32 (cherry picked from commit 73730866ec198ac4c24dc69c9f62b4a3a2f05bf1)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index a8177db6..f71c4747 100644 --- a/configure.in +++ b/configure.in @@ -944,6 +944,9 @@ AC_SUBST(DBUS_TEST_CFLAGS) AC_SUBST(DBUS_TEST_LIBS) ### X11 detection +if test x$dbus_win = xyes ; then + enable_x11=no +else AC_PATH_XTRA ## for now enable_x11 just tracks have_x11, @@ -967,6 +970,7 @@ fi AC_SUBST(DBUS_X_CFLAGS) AC_SUBST(DBUS_X_LIBS) +fi #### gcc warning flags |