revision 744:5ab610718918
summary |
tree |
shortlog |
changelog |
graph |
changeset |
raw | bz2 | zip | gz changeset | 744:5ab610718918 |
parent | 743:6f0f79fae449 |
child | 745:fd9785b15068 |
author | nkeynes |
date | Fri Jul 18 11:20:54 2008 +0000 (13 years ago) |
Abort configuration if gettext isn't found (since the build breaks without it)
1.1 --- a/configure Fri Jul 18 11:08:30 2008 +00001.2 +++ b/configure Fri Jul 18 11:20:54 2008 +00001.3 @@ -11443,6 +11443,14 @@1.4 < $srcdir/po/POTFILES.in > po/POTFILES1.7 +if test "x$MSGFMT" = "x"; then1.8 + { { $as_echo "$as_me:$LINENO: error: gettext and/or libintl.h not found, but is required1.9 +See \`config.log' for more details." >&51.10 +$as_echo "$as_me: error: gettext and/or libintl.h not found, but is required1.11 +See \`config.log' for more details." >&2;}1.12 + { (exit 1); exit 1; }; }1.13 +fi1.14 +1.15 ac_config_files="$ac_config_files Makefile src/Makefile po/Makefile.in test/Makefile"1.17 cat >confcache <<\_ACEOF
2.1 --- a/configure.in Fri Jul 18 11:08:30 2008 +00002.2 +++ b/configure.in Fri Jul 18 11:20:54 2008 +00002.3 @@ -256,6 +256,10 @@2.4 ALL_LINGUAS="de es it pt_BR"2.5 AM_GLIB_GNU_GETTEXT2.7 +if test "x$MSGFMT" = "x"; then2.8 + AC_MSG_FAILURE( [gettext and/or libintl.h not found, but is required] )2.9 +fi2.10 +2.11 AC_OUTPUT([2.12 Makefile2.13 src/Makefile
.