# HG changeset patch # User bjarni # Date 1198767946 0 # Node ID ddfb264d69ad61e4f3c8d49eb937568e34980b13 # Parent 9641c9bd77ba29bec02c0f1c6e7f19790b5aa128 (svn r11709) -Fix [FS#1385 FS#1386]: [OSX] Compiles on Leopard with the default settings -Change: [OSX] configure will no longer enable static by default Turns out that Leopard can't handle static builds without the user installing extra libs The tradeoff is that now people might have to enable static manually if moving the binary around diff -r 9641c9bd77ba -r ddfb264d69ad config.lib --- a/config.lib Thu Dec 27 14:45:10 2007 +0000 +++ b/config.lib Thu Dec 27 15:05:46 2007 +0000 @@ -395,7 +395,7 @@ detect_cputype if [ "$enable_static" = "1" ]; then - if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "MORPHOS" ] || [ "$os" = "OSX" ]; then + if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "MORPHOS" ]; then enable_static="2" else enable_static="0"