]> git.lyx.org Git - features.git/commitdiff
let configure complain if moc or uic is not found and the qt frontend is used
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Fri, 3 Sep 2004 15:08:19 +0000 (15:08 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Fri, 3 Sep 2004 15:08:19 +0000 (15:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8966 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
configure.ac

index 4ef00d28c00a42cbd0cc8504ea41d67ac437d0c5..a26b7b0fafeb34be482e1acdd30afc1c4efce7db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 65dd7c57a6a80cc84deb01af53999948035da369..d37ee87019687cc64f86a70a0358e266794aa662 100644 (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');;