From fdd388d4b705cebc42b0ec7dcc186c531353d7ac Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Wed, 14 Sep 2005 07:53:05 +0000 Subject: [PATCH] error out in configure if the qt library was not found and the qt frontend was selected git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10441 a592a061-630c-0410-9148-cb99ea01b6c8 --- ChangeLog | 5 +++++ configure.ac | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index c3b82ddc9a..4b62cd107c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-13 Georg Baum + + * configure.ac: error out if qt frontend is choosen but no qt library + was found + 2005-09-12 Jean-Marc Lasgouttes * configure.ac: check for AWK and use --posix option if we found diff --git a/configure.ac b/configure.ac index d2395492c5..ac2ebfcb5f 100644 --- a/configure.ac +++ b/configure.ac @@ -218,6 +218,9 @@ dnl qt build will fail without moc or uic if test -z "$UIC"; then LYX_ERROR([uic binary not found !]) fi + if test -z "$QT_LIB"; then + LYX_ERROR([qt library not found !]) + fi ;; *) LYX_ERROR(Unknown frontend '$frontend');; -- 2.39.5