From b7197817cd45f1c257df5588822ccd106017ba81 Mon Sep 17 00:00:00 2001 From: kazer_ Date: Wed, 24 Oct 2007 21:05:31 +0000 Subject: [PATCH] Added a summary of installation + warning if no guis can be built git-svn-id: https://navit.svn.sourceforge.net/svnroot/navit/trunk@467 ffa7fe5e-494d-0410-b361-a75ebd5db220 --- navit/configure.in | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/navit/configure.in b/navit/configure.in index dd948a4..18be706 100644 --- a/navit/configure.in +++ b/navit/configure.in @@ -230,6 +230,7 @@ if test x$enable_nls = xyes; then done fi + AC_SUBST(INTLIBS) AC_SUBST(MOFILES) AC_SUBST(POFILES) @@ -278,3 +279,39 @@ src/xpm/Makefile intl/Makefile po/Makefile ]) +echo "" +echo "" +echo "Summary of your installation :" +if test x"$gtk2_pkgconfig" = xyes + then + echo "GTK gui : ENABLED" + else + echo "GTK gui : DISABLED : you are missing a dependency" +fi +if test x"$sdl" = xyes + then + echo "SDL gui : ENABLED" + else + echo "SDL gui : DISABLED : you are missing a dependency" +fi +if test x"$gpsd" = xyes + then + echo "GPS support : ENABLED" + else + echo "GPS support : DISABLED" +fi +if test x"$speechd" = xyes + then + echo "SPEECHD : ENABLED" + else + echo "SPEECHD : DISABLED" +fi +if [ test x"$gtk2_pkgconfig" != xyes ] && [ test x"$sdl" != xyes ] + then + echo "" + echo "" + echo "*** WARNING! you have no gui that can be built! ***" + echo "Please install the dependency for at least gtk or sdl gui" + echo "For more details, see the wiki at http://navit.sf.net/wiki/" + echo "" +fi -- 2.7.4