diff options
author | rbuj <[email protected]> | 2021-02-09 14:46:52 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-09 22:42:54 +0100 |
commit | 62c46148a8553214d2ecd4d096412b9e068ceec3 (patch) | |
tree | e505627d4cac5639b6555a678e215c2f5a16aa9f /configure.ac | |
parent | 58653911017b1eabb49715752d6936f04ea8b4ff (diff) | |
download | mate-themes-62c46148a8553214d2ecd4d096412b9e068ceec3.tar.bz2 mate-themes-62c46148a8553214d2ecd4d096412b9e068ceec3.tar.xz |
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 1eea39d0..38ce192f 100644 --- a/configure.ac +++ b/configure.ac @@ -10,9 +10,10 @@ AM_INIT_AUTOMAKE([1.9 tar-ustar dist-xz no-dist-gzip check-news]) # configure or passing V=1 to make m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +AM_GNU_GETTEXT([external]) PKG_PROG_PKG_CONFIG([0.19]) AM_GNU_GETTEXT_VERSION([0.19.8]) -AM_GNU_GETTEXT([external]) +AM_CONDITIONAL([USE_NLS], [test "x${USE_NLS}" = "xyes"]) # Workaround to make aclocal get the right flags AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}") @@ -234,8 +235,11 @@ AC_OUTPUT dnl ========================================================================== echo " -mate-themes-$VERSION: +Configure summary: - Installation prefix: ${prefix} + ${PACKAGE_STRING} + `echo $PACKAGE_STRING | sed "s/./=/g"` + Installation prefix ........: ${prefix} + Native Language support ....: ${USE_NLS} " |