From 666db2b922a031302d0224750337a17364ec0191 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 1 Sep 2011 14:45:22 +0200 Subject: [PATCH] ICU: Proper check for -lCrun on Solaris Seems only necessary with Sun Studio (cc); not GCC. --- ac_check_icu.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ac_check_icu.m4 b/ac_check_icu.m4 index 6cc6097..933b513 100644 --- a/ac_check_icu.m4 +++ b/ac_check_icu.m4 @@ -66,7 +66,7 @@ AC_DEFUN([AC_CHECK_ICU],[ fi case $host_os in solaris*) - ICU_LIBS="$ICU_LIBS -lCrun" + AC_CHECK_LIB([Crun],[_fini],[ICU_LIBS="$ICU_LIBS -lCrun"]) ;; esac AC_MSG_RESULT($ICU_LIBS) -- 1.7.10.4