diff options
author | rbuj <[email protected]> | 2021-01-23 13:52:08 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-07-21 19:33:50 +0200 |
commit | 92f751b2ae5a3bf90e39434255fec503cf471be7 (patch) | |
tree | c4005557f4376a3de2cefdc5af65f80e512ac514 /configure.ac | |
parent | 77ae01b92666ab5554b168cf207ce37ded4deb2e (diff) | |
download | caja-92f751b2ae5a3bf90e39434255fec503cf471be7.tar.bz2 caja-92f751b2ae5a3bf90e39434255fec503cf471be7.tar.xz |
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 646d86f8..b3b5d2d4 100644 --- a/configure.ac +++ b/configure.ac @@ -115,8 +115,9 @@ AC_DEFINE([HAVE_GTK_MULTIHEAD], [], [needed for egg-screen-exec functions]) AH_TEMPLATE([HAVE_STARTUP_NOTIFICATION]) AH_TEMPLATE([HAVE_EXIF]) -AM_GNU_GETTEXT_VERSION([0.19.8]) AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.19.8]) +AM_CONDITIONAL([USE_NLS], [test "x${USE_NLS}" = "xyes"]) dnl ========================================================================== @@ -312,6 +313,7 @@ caja-$VERSION: warning flags: ${WARN_CFLAGS} xmp support: $msg_xmp PackageKit support: $msg_packagekit + Native Language support: $USE_NLS Self check: $msg_self_check caja-extension documentation: ${enable_gtk_doc} |