let configure complain if moc or uic is not found and the qt frontend is used

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8966 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2004-09-03 15:08:19 +00:00
parent c2df578151
commit 183d7b115a
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-09-03 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* configure.ac: print error message if uic or moc is not found
and the qt frontend is used
2004-08-18 Lars Gullik Bjonnes <larsbj@gullik.net>
* More pch work.

View File

@ -214,6 +214,13 @@ for frontend in $FRONTENDS ; do
FRONTEND_INFO="${FRONTEND_INFO}\
Qt Frontend:\n\
Qt version:\t\t${QT_VERSION}\n"
dnl qt build will fail without moc or uic
if test -z "$MOC"; then
LYX_ERROR([moc binary not found !])
fi
if test -z "$UIC"; then
LYX_ERROR([uic binary not found !])
fi
;;
*)
LYX_ERROR(Unknown frontend '$frontend');;