From 543a0e2d50d036849bb1524e9c392a299d17b020 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 2 Apr 2015 19:37:17 +0200 Subject: [PATCH] Assume Linux always has libintl It should really detect GNU (glibc) and not base the test on the Linux kernel alone though. --- src/makefile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/makefile.c b/src/makefile.c index 8f38b6d..b1665ac 100644 --- a/src/makefile.c +++ b/src/makefile.c @@ -666,8 +666,8 @@ static void _binary_ldflags(Configure * configure, FILE * fp, "ws2_32", NULL }; char const * libs_deforaos[] = { "ossaudio", "resolv", "ssl", "ws2_32", NULL }; - char const * libs_gnu[] = { "ossaudio", "resolv", "socket", "ws2_32", - NULL }; + char const * libs_gnu[] = { "intl", "ossaudio", "resolv", "socket", + "ws2_32", NULL }; char const * libs_macosx[] = { "crypt", "ossaudio", "socket", "ws2_32", NULL }; char const * libs_netbsd[] = { "dl", "resolv", "socket", "ws2_32",