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 | |
parent | edbf2bfc109ce94b2604ea20328fda25542e4383 (diff) |
* configure.in: Make --disable-qt actually do
something. Patch inspired by Zack Rusin.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 30 |
2 files changed, 24 insertions, 11 deletions
@@ -1,5 +1,10 @@ 2006-06-04 Thiago Macieira <thiago.macieira@trolltech.com> + * configure.in: Make --disable-qt actually do + something. Patch inspired by Zack Rusin. + +2006-06-04 Thiago Macieira <thiago.macieira@trolltech.com> + * qt/: Update to Subversion r548032. This includes a big reorganisation of the files inside the subdir. 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 |