From 47e78b3dc1096e4d387804a8043ff5b939454f6b Mon Sep 17 00:00:00 2001 From: bjarni Date: Thu, 27 Dec 2007 15:05:46 +0000 Subject: (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 --- config.lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.lib b/config.lib index 5785c5308..46630338f 100644 --- a/config.lib +++ b/config.lib @@ -395,7 +395,7 @@ check_params() { 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" -- cgit v1.2.3-54-g00ecf