[SSSD] CONFIGURE: Bump AM_GNU_GETTEXT_VERSION

Lukas Slebodnik lslebodn at redhat.com
Tue Nov 10 09:44:01 UTC 2015


ehlo,

The function gettext was not detected properly with strict
cflags even thought it was part of glibc.

sh$ CFLAGS="-Werror" ./configure

sh$ grep gt_cv_func_gnugettext config.log
gt_cv_func_gnugettext1_libc=no
gt_cv_func_gnugettext1_libintl=no

sh$ objdump -T /lib64/libc.so.6 | grep gettext
000000000002fc60  w   DF .text  0000000000000010  GLIBC_2.2.5 dcngettext
000000000002dc70  w   DF .text  000000000000000f  GLIBC_2.2.5 dcgettext
000000000002fc80  w   DF .text  0000000000000016  GLIBC_2.2.5 ngettext
000000000002dc90  w   DF .text  000000000000000f  GLIBC_2.2.5 gettext
000000000002dc70 g    DF .text  000000000000000f  GLIBC_2.2.5 __dcgettext
000000000002dc80  w   DF .text  000000000000000a  GLIBC_2.2.5 dgettext
000000000002dc80 g    DF .text  000000000000000a  GLIBC_2.2.5 __dgettext

With attached patch situation is better.
q
sh$ autoreconf
sh$ CFLAGS="-Werror" ./configure

sh$ grep gt_cv_func_gnugettext config.log
gt_cv_func_gnugettext1_libc=yes

LS
-------------- next part --------------
>From c60c2e870d140e127bca69eb03bba30988c1dec4 Mon Sep 17 00:00:00 2001
From: Lukas Slebodnik <lslebodn at redhat.com>
Date: Tue, 10 Nov 2015 10:39:07 +0100
Subject: [PATCH] CONFIGURE: Bump AM_GNU_GETTEXT_VERSION

The function gettext was not detected properly with strict
cflags even thought it was part of glibc.

sh$ CFLAGS="-Werror" ./configure

sh$ grep gt_cv_func_gnugettext config.log
gt_cv_func_gnugettext1_libc=no
gt_cv_func_gnugettext1_libintl=no

sh$ objdump -T /lib64/libc.so.6 | grep gettext
000000000002fc60  w   DF .text  0000000000000010  GLIBC_2.2.5 dcngettext
000000000002dc70  w   DF .text  000000000000000f  GLIBC_2.2.5 dcgettext
000000000002fc80  w   DF .text  0000000000000016  GLIBC_2.2.5 ngettext
000000000002dc90  w   DF .text  000000000000000f  GLIBC_2.2.5 gettext
000000000002dc70 g    DF .text  000000000000000f  GLIBC_2.2.5 __dcgettext
000000000002dc80  w   DF .text  000000000000000a  GLIBC_2.2.5 dgettext
000000000002dc80 g    DF .text  000000000000000a  GLIBC_2.2.5 __dgettext
000000000002fc70  w   DF .text  000000000000000b  GLIBC_2.2.5 dngettext
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 51c0b0da8a7cfb692eabf38a71e42fbb0e40b4b0..16f14ae041e47fa9ac18c57d6a16cee115d35840 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,7 +26,7 @@ m4_ifdef([AC_PROG_MKDIR_P],
 LT_LIB_DLLOAD
 AC_CONFIG_MACRO_DIR([m4])
 AM_GNU_GETTEXT([external])
-AM_GNU_GETTEXT_VERSION([0.14])
+AM_GNU_GETTEXT_VERSION([0.14.4])
 
 AC_SUBST([PRERELEASE_VERSION],
          PRERELEASE_VERSION_NUMBER)
-- 
2.5.0



More information about the sssd-devel mailing list