diff options
author | Thiago Macieira <thiago@kde.org> | 2006-06-04 15:53:44 +0000 |
---|---|---|
committer | Thiago Macieira <thiago@kde.org> | 2006-06-04 15:53:44 +0000 |
commit | da04480e7e4cdf2da8a36210e1286f22f595eac8 (patch) | |
tree | 4dca857e8f010412183d0ff7dfe9222b8a918391 /configure.in | |
parent | edbf2bfc109ce94b2604ea20328fda25542e4383 (diff) |
* configure.in: Make --disable-qt actually do
something. Patch inspired by Zack Rusin.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/configure.in b/configure.in index 7c945d97..33144b9a 100644 --- a/configure.in +++ b/configure.in @@ -997,19 +997,25 @@ else AC_MSG_RESULT([release]) fi -QT_CORE=QtCore$qt_suffix -QT_XML=QtXml$qt_suffix -QT_GUI=QtGui$qt_suffix -QT_TESTLIB=QtTest$qt_suffix -min_qt_version=4.1.3 +if test x$enable_qt = xno; then + have_qt=no + have_qt_gui=no + have_qtest=no +else + QT_CORE=QtCore$qt_suffix + QT_XML=QtXml$qt_suffix + QT_GUI=QtGui$qt_suffix + QT_TESTLIB=QtTest$qt_suffix + min_qt_version=4.1.3 -AC_SUBST(QT_CORE) -AC_SUBST(QT_XML) + AC_SUBST(QT_CORE) + AC_SUBST(QT_XML) -PKG_CHECK_MODULES([DBUS_QT], - [$QT_CORE >= $min_qt_version $QT_XML >= $min_qt_version], - have_qt=yes, - have_qt=no) + PKG_CHECK_MODULES([DBUS_QT], + [$QT_CORE >= $min_qt_version $QT_XML >= $min_qt_version], + have_qt=yes, + have_qt=no) +fi dnl Check for moc too if test x$have_qt = xyes ; then @@ -1400,6 +1406,8 @@ glib/examples/statemachine/Makefile python/Makefile python/examples/Makefile qt/Makefile +qt/src/Makefile +qt/tools/Makefile qt/examples/Makefile qt3/Makefile gcj/Makefile |