From e9eb00c8548c41a7e188fac76e191b581258af84 Mon Sep 17 00:00:00 2001 From: rivers Date: Fri, 25 Jul 2008 14:44:30 +0000 Subject: [PATCH] Don't do static builds on Darwin, not supported git-svn-id: https://subversion.xor.aps.anl.gov/synApps/areaDetector/trunk@7484 dc6c5ff5-0b8b-c028-a01f-ffb33f00fc8b --- configure/CONFIG | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure/CONFIG b/configure/CONFIG index 3dca1bc..4685c57 100755 --- a/configure/CONFIG +++ b/configure/CONFIG @@ -12,4 +12,8 @@ include $(TOP)/configure/CONFIG_APP # before this takes effect. #IOCS_APPL_TOP = -STATIC_BUILD=YES +ifeq (Darwin, $(OS_CLASS)) + STATIC_BUILD=NO +else + STATIC_BUILD=YES +endif