X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=configure.ac;h=7baa3ddb5cc6a0d02b79790fd7a36c9696f76cc3;hp=a8d535fc3b141154620b0e22c7edd8973a963e83;hb=b187c221cc97679e28118ae8ac2997d6a686ba14;hpb=fc94442b9506c94b410674bf6ea6a301f105be24 diff --git a/configure.ac b/configure.ac index a8d535f..7baa3dd 100644 --- a/configure.ac +++ b/configure.ac @@ -222,6 +222,21 @@ x86_64-apple-darwin) ;; esac +# Testing if we shall enable shared libs support on Solaris. +# Anything older than SunOS 5.11 aka Solaris 11 (Express) is broken. + +SOLARIS_BROKEN_SHLD=NO + +case $host in + i386-*-solaris2) + # here we go with the test + MINOR=`uname -r|cut -d '.' -f 2-` + if test "$MINOR" -lt "11"; then + SOLARIS_BROKEN_SHLD=YES + fi + ;; +esac + # Sync this with cTargetArch in compiler/ghc.mk checkArch() { case $1 in @@ -322,6 +337,8 @@ AC_SUBST(TargetVendor_CPP) AC_SUBST(exeext) AC_SUBST(soext) +AC_SUBST(SOLARIS_BROKEN_SHLD) + AC_ARG_WITH(hc, [AC_HELP_STRING([--with-hc=ARG], [Use ARG as the path to the compiler for compiling ordinary @@ -799,6 +816,7 @@ FP_LEADING_UNDERSCORE dnl ** check for ld, whether it has an -x option, and if it is GNU ld FP_PROG_LD_X FP_PROG_LD_IS_GNU +FP_PROG_LD_BUILD_ID dnl ** check for Apple-style dead-stripping support dnl (.subsections-via-symbols assembler directive)