From 9f0fb0261ecdecb093ced28024a36973bf1938b9 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Sun, 31 Oct 2010 16:24:46 +0300 Subject: build: check that if we provide -liconv we can build shared libs On Solaris with sun studio compiling an executable with -liconv even if there is no libiconv.so or libiconv.a will work but not for a shared lib. This problem leads to build problem as the linker won't be able to find libiconv when building shared lib as liconv is wrongly specified --- lib/util/charset/wscript_configure | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/util/charset/wscript_configure') diff --git a/lib/util/charset/wscript_configure b/lib/util/charset/wscript_configure index 274a2d7630..e54bfcc924 100644 --- a/lib/util/charset/wscript_configure +++ b/lib/util/charset/wscript_configure @@ -4,6 +4,12 @@ # as the external libiconv can use a macro to override iconv_open to libiconv_open # and then we may find the wrong iconv.h later due to other packages looking # in /usr/local +# We check for the lib iconv when building a shared lib has some compiler/linker +# managed to link when specifying -liconv a executable even if there is no +# libiconv.so or libiconv.a + +conf.CHECK_LIB(libs="iconv", shlib=True) + if (conf.CHECK_FUNCS_IN('iconv_open', 'iconv', checklibc=False, headers='iconv.h') or conf.CHECK_FUNCS('iconv_open', headers='iconv.h')): conf.DEFINE('HAVE_NATIVE_ICONV', 1) -- cgit