From: Georg Baum Date: Fri, 3 Sep 2004 15:08:19 +0000 (+0000) Subject: let configure complain if moc or uic is not found and the qt frontend is used X-Git-Tag: 1.6.10~15031 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=183d7b115a675089a6eca12910e9452ff019c898;p=features.git 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 --- diff --git a/ChangeLog b/ChangeLog index 4ef00d28c0..a26b7b0faf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-09-03 Georg Baum + + * configure.ac: print error message if uic or moc is not found + and the qt frontend is used + 2004-08-18 Lars Gullik Bjonnes * More pch work. diff --git a/configure.ac b/configure.ac index 65dd7c57a6..d37ee87019 100644 --- a/configure.ac +++ b/configure.ac @@ -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');;