Hi,

I was a problem running configure on Solaris using the system supplied ld. The configure.in check isn't quite right, version 113 of configure.in introduced a code section to build some linker specific flags, ie

    case `$LD -V` in
      *Solaris*)
              if test "$WHOLEARCHIVE" = ""
              then
                      WHOLEARCHIVE='-Wl,-z -Wl,allextract'
              fi
              if test "$NOWHOLEARCHIVE" = ""
              then
                      NOWHOLEARCHIVE='-Wl,-z -Wl,defaultextract'
              fi
              ;;
      *linker\ command*ld\ PA64*

etc etc

This won't work on Solaris, it needs to be :

case `$LD -V 2>&1`

etc etc

Ian




------------------------------------------------------- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt _______________________________________________ courier-users mailing list courier-users@lists.sourceforge.net Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

Reply via email to