From 225fc07a73a50843723d718d4048ba9014340af8 Mon Sep 17 00:00:00 2001 From: rivers Date: Thu, 2 Feb 2012 00:47:55 +0000 Subject: [PATCH] Use STATIC_BUILD=NO on Linux, because Andor's only has a shareable version of their library git-svn-id: https://subversion.xor.aps.anl.gov/synApps/areaDetector/trunk@14412 dc6c5ff5-0b8b-c028-a01f-ffb33f00fc8b --- ADApp/andorSrc/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ADApp/andorSrc/Makefile b/ADApp/andorSrc/Makefile index 30e3a90..9d1e139 100755 --- a/ADApp/andorSrc/Makefile +++ b/ADApp/andorSrc/Makefile @@ -31,9 +31,12 @@ PROD_LIBS += atmcd64m else ifeq (linux-x86_64, $(findstring linux-x86_64, $(T_A))) PROD_LIBS += andor +# Cannot do STATIC_BUILD on Linux because Andor only provides .so file +STATIC_BUILD=NO else ifeq (linux-x86, $(findstring linux-x86, $(T_A))) PROD_LIBS += andor +STATIC_BUILD=NO endif