diff options
| -rw-r--r-- | configure.ac | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/configure.ac b/configure.ac index e1b7e05..47fedd6 100644 --- a/configure.ac +++ b/configure.ac @@ -148,8 +148,14 @@ AC_ARG_WITH([nls],              AS_IF([test "x$with_nls" == "xyes"],                    [AC_MSG_RESULT([*** Building with nls support!])                     AC_CHECK_PROGS([XGETTEXT], [xgettext]) +                   AS_IF([test "x$XGETTEXT" = "x"], +                         AC_MSG_ERROR([Missing xgettext tool.]))                     AC_CHECK_PROGS([MSGMERGE], [msgmerge]) +                   AS_IF([test "x$MSGMERGE" = "x"], +                         AC_MSG_ERROR([Missing msgmerge tool.]))                     AC_CHECK_PROGS([MSGFMT], [msgfmt]) +                   AS_IF([test "x$MSGFMT" = "x"], +                         AC_MSG_ERROR([Missing msgfmt tool.]))                     AC_DEFINE_UNQUOTED([WITH_NLS], , [Build with nls support])],                    [AC_MSG_WARN([*** Building without nls support!])]  ) | 
