From 5662b2b329246f45673664c03ac1bfe7d3fef593 Mon Sep 17 00:00:00 2001 From: Reinhard Prix Date: Mon, 30 Jan 2006 14:30:21 +0000 Subject: [PATCH] - applied Derek Wright's patch to get --enable-release-client working on MacOS10.4 (this simply adds a check for '-lSystemStubs') [can't test this myself on 10.4 right now] svn path=/trunk/boinc/; revision=9346 --- checkin_notes | 9 +++++++++ configure.ac | 8 ++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index d4f46d37b4..04d5e0cad9 100755 --- a/checkin_notes +++ b/checkin_notes @@ -1140,3 +1140,12 @@ Reinhard 30 Jan 2006 clientgui/ Makefile.am MainFrame.cpp + +Reinhard 30 Jan 2006 + - applied Derek Wright's patch to get --enable-release-client working on MacOS10.4 + (this simply adds a check for '-lSystemStubs') [can't test this myself on 10.4 right now] + ./configure.ac + + + + diff --git a/configure.ac b/configure.ac index 93eab8dd63..02c849f58b 100644 --- a/configure.ac +++ b/configure.ac @@ -563,9 +563,13 @@ if ( test "${disable_static_linkage}" != yes ) && ( test "${enable_client_releas echo "----------" echo "NOTE: Building portable client binaries" echo "----------" - -SAH_CHECK_LDFLAG([-nodefaultlibs],[CLIENTLIBS="-nodefaultlibs ${CLIENTLIBS}"]) + + SAH_CHECK_LDFLAG([-nodefaultlibs],[CLIENTLIBS="-nodefaultlibs ${CLIENTLIBS}"]) echo DEBUG: CLIENTLIBS=${CLIENTLIBS} >&5 + + SAH_CHECK_LDFLAG([-lSystemStubs],[LIBS="${LIBS} -lSystemStubs"]) + echo DEBUG: LIBS=${LIBS} >&5 + fi