From 77b7b4f0fe5ec113c6823bd8db0e83e355a4e350 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 30 Nov 1998 18:10:30 +0000 Subject: Find -lintl on systems that have it. svn path=/trunk/; revision=2242 --- configure.in | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index e29000e2..217f1ba2 100644 --- a/configure.in +++ b/configure.in @@ -76,6 +76,11 @@ AC_CHECK_FUNC(socket, AC_CHECK_LIB(socket,socket) AC_CHECK_LIB(inet,socket)) +# If gettext isn't in the C library, maybe there's a -lintl. +AC_CHECK_FUNC(gettext, + AC_MSG_RESULT(using libc's gettext), + AC_CHECK_LIB(intl,gettext)) + # The condition in this test copes with the presence of inet_addr in libc6. AC_CHECK_FUNC(inet_addr, AC_MSG_RESULT(using libc's inet_addr), -- cgit v1.2.3