diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-08 20:26:32 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-08 20:26:32 (GMT) |
commit | 5d2d0285a9819c3b1276e005299c86279419a0f0 (patch) | |
tree | 386c6cb1b58402d3acc0c7e29cf71272a543d03a /configure.in | |
parent | cf9b391b40a9c59a620c8093d438370381949c60 (diff) | |
download | swift-5d2d0285a9819c3b1276e005299c86279419a0f0.zip swift-5d2d0285a9819c3b1276e005299c86279419a0f0.tar.bz2 |
Detect qmake in configure.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index f1ee664..f703be9 100644 --- a/configure.in +++ b/configure.in @@ -126,6 +126,12 @@ if test -z "$MM"; then MM="$CC" fi +# Qt +AX_QT() +if test "$HAVE_QT" != yes; then + AC_MSG_ERROR([Could not find Qt]) +fi + # Expat AX_LIB_EXPAT() if test "$HAVE_EXPAT" = yes; then @@ -199,6 +205,7 @@ AC_SUBST(CONFIG_MACOSX) AC_SUBST(CONFIG_HAVE_OPENSSL) AC_SUBST(USE_BUNDLED_EXPAT) AC_SUBST(CONFIG_HAVE_LIBXML) +AC_SUBST(QMAKE) AC_CONFIG_FILES([Makefile.config]) AC_OUTPUT |