From 183d7b115a675089a6eca12910e9452ff019c898 Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Fri, 3 Sep 2004 15:08:19 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ configure.ac | 7 +++++++ 2 files changed, 12 insertions(+) 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');; -- 2.39.2