Merge branch 'vk/autoconf-gettext'
The autoconf generated configure script failed to use the right gettext() implementations from -libintl by ignoring useless stub implementations shipped in some C library, which has been corrected. * vk/autoconf-gettext: autoconf: #include <libintl.h> when checking for gettext()
This commit is contained in:
commit
f832bccd85
16
configure.ac
16
configure.ac
@ -763,9 +763,19 @@ AC_CHECK_LIB([c], [basename],
|
|||||||
GIT_CONF_SUBST([NEEDS_LIBGEN])
|
GIT_CONF_SUBST([NEEDS_LIBGEN])
|
||||||
test -n "$NEEDS_LIBGEN" && LIBS="$LIBS -lgen"
|
test -n "$NEEDS_LIBGEN" && LIBS="$LIBS -lgen"
|
||||||
|
|
||||||
AC_CHECK_LIB([c], [gettext],
|
AC_DEFUN([LIBINTL_SRC], [
|
||||||
[LIBC_CONTAINS_LIBINTL=YesPlease],
|
AC_LANG_PROGRAM([[
|
||||||
[LIBC_CONTAINS_LIBINTL=])
|
#include <libintl.h>
|
||||||
|
]],[[
|
||||||
|
char *msg = gettext("test");
|
||||||
|
]])])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([if libc contains libintl])
|
||||||
|
AC_LINK_IFELSE([LIBINTL_SRC],
|
||||||
|
[AC_MSG_RESULT([yes])
|
||||||
|
LIBC_CONTAINS_LIBINTL=YesPlease],
|
||||||
|
[AC_MSG_RESULT([no])
|
||||||
|
LIBC_CONTAINS_LIBINTL=])
|
||||||
GIT_CONF_SUBST([LIBC_CONTAINS_LIBINTL])
|
GIT_CONF_SUBST([LIBC_CONTAINS_LIBINTL])
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user