summaryrefslogtreecommitdiffstats
path: root/acinclude.m4.in
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-26 02:04:25 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-26 02:04:25 +0000
commit4f9a36e2fcee4ecd7adbc3e53c8e6837712c2a35 (patch)
tree3b42e04cd8767191ca6e5580ef1e5d3099fb03bc /acinclude.m4.in
parentfd14d72f621b6c8febfa129d59ad3ab1fe115e62 (diff)
downloadadmin-4f9a36e2fcee4ecd7adbc3e53c8e6837712c2a35.tar.gz
admin-4f9a36e2fcee4ecd7adbc3e53c8e6837712c2a35.zip
First attempt at getting TQT integrated...
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kde-common/admin@1154613 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'acinclude.m4.in')
-rw-r--r--acinclude.m4.in34
1 files changed, 33 insertions, 1 deletions
diff --git a/acinclude.m4.in b/acinclude.m4.in
index 2c44123..f1c8062 100644
--- a/acinclude.m4.in
+++ b/acinclude.m4.in
@@ -251,6 +251,18 @@ configure.
])
])
+AC_DEFUN([KDE_TQTMOC_ERROR_MESSAGE],
+[
+ AC_MSG_ERROR([No Trinity Qt meta object compiler (moc-tqt) found!
+Please check whether you installed the Trinity Qt Interface correctly.
+You need to have a running moc-tqt binary.
+configure tried to run $ac_cv_path_moc and the test didn't
+succeed. If configure shouldn't have tried this one, set
+the environment variable TQTMOC to the right one before running
+configure.
+])
+])
+
AC_DEFUN([KDE_UIC_ERROR_MESSAGE],
[
AC_MSG_WARN([No Qt ui compiler (uic) found!
@@ -2773,12 +2785,32 @@ AC_LANG_RESTORE
if eval "test ! \"`echo $kde_cv_tqt`\" = no"; then
AC_MSG_RESULT(no)
-dnl AC_MSG_ERROR([You are attempting to compile Trinity without the Trinity Qt Interface installed. Please install libtqtinterface-dev and try again!])
+ AC_MSG_ERROR([You are attempting to compile Trinity without the Trinity Qt Interface installed. Please install libtqtinterface-dev and try again!])
else
AC_MSG_RESULT(yes)
LIBTQT_LDFLAGS="-ltqt"
all_libraries="$all_libraries $LIBTQT_LDFLAGS"
QT_LDFLAGS="$QT_LDFLAGS $LIBTQT_LDFLAGS"
+ LIBTQT_CXXFLAGS="-include tqt.h"
+ all_includes="$all_includes $LIBTQT_CXXFLAGS"
+ QT_INCLUDES="$QT_INCLUDES $LIBTQT_CXXFLAGS"
+
+ KDE_FIND_PATH(moc-tqt, TQTMOC, [$qt_bindirs], [KDE_TQTMOC_ERROR_MESSAGE])
+ AC_SUBST(TQTMOC)
+
+ KDE_FIND_PATH(dcopidl-tqt, TQTDCOPIDL, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(dcopidl-tqt)])
+ KDE_FIND_PATH(dcopidl2cpp-tqt, TQTDCOPIDL2CPP, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(dcopidl2cpp-tqt)])
+ if test "$build_arts" '!=' "no"; then
+ KDE_FIND_PATH(mcopidl-tqt, TQTMCOPIDL, [$kde_default_bindirs], [KDE_MISSING_ARTS_ERROR(mcopidl-tqt)])
+ fi
+ if test -n "$kde32ornewer"; then
+ KDE_FIND_PATH(dcopidlng-tqt, TQTDCOPIDLNG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(dcopidlng-tqt)])
+ fi
+
+ AC_SUBST(TQTDCOPIDL)
+ AC_SUBST(TQTMCOPIDL)
+ AC_SUBST(TQTDCOPIDLNG)
+ AC_SUBST(TQTDCOPIDL2CPP)
fi
])