Author: glen Date: Sun Aug 14 13:11:01 2011 New Revision: 12309 Modified: rc-scripts/trunk/configure.ac Log: fatal out when required tools missing, some ac fix
Modified: rc-scripts/trunk/configure.ac ============================================================================== --- rc-scripts/trunk/configure.ac (original) +++ rc-scripts/trunk/configure.ac Sun Aug 14 13:11:01 2011 @@ -1,6 +1,6 @@ dnl $Id$ -AC_INIT(["rc-scripts"], [0.4.4.3], [[email protected]], [rc-scripts]) +AC_INIT([rc-scripts], [0.4.4.3], [[email protected]], [rc-scripts]) AM_INIT_AUTOMAKE ALL_LINGUAS="pl de" @@ -36,6 +36,10 @@ AC_PATH_PROGS(MSGMERGE, msgmerge) AC_PATH_PROGS(GMSGFMT, gmsgfmt msgfmt) +if test -z "$MSGMERGE" || test -z "$GMSGFMT"; then + AC_MSG_ERROR(install gettext-devel to be able to regenerate translations) +fi + CATALOGS= POTFILES= for lang in $ALL_LINGUAS; do @@ -68,6 +72,10 @@ fi AC_PATH_PROG(PKG_CONFIG, pkg-config, no) +if test "$PKG_CONFIG" = no; then + AC_MSG_ERROR(You need to install pkgconfig package) +fi + GLIBDIR=none AC_MSG_CHECKING([glib2]) GLIB_LIBS="-Wl,-static `$PKG_CONFIG --libs --static glib-2.0` -Wl,-Bdynamic" @@ -93,7 +101,7 @@ AC_SUBST(POTSRC) AC_SUBST(localedir) AC_SUBST(gnulocaledir) - + AC_SUBST(pppdir) AC_SUBST(networkscriptsdir) AC_SUBST(sysconfigdir) _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
