mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
c2df578151
commit
183d7b115a
@ -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.
|
||||
|
@ -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');;
|
||||
|
Loading…
Reference in New Issue
Block a user