From c625318f544a196ece6a836e8dcadbdfa43719af Mon Sep 17 00:00:00 2001 From: verbguy Date: Tue, 3 Nov 2009 15:58:56 +0000 Subject: [PATCH] Solaris 9 fix - use absolute path to atomic in-line assembly routines, instead of relative path. Build of examples was broken when example code moved to new directory. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index c53047fef6..941afd9b38 100644 --- a/configure.in +++ b/configure.in @@ -342,7 +342,7 @@ dnl CPU_TYPE=ppc64 PTHREAD_CFLAGS=-mt PTHREAD_LIBS=-lpthread if test "${target#*solaris}" = "2.9"; then - ATOMIC_OPTIONS="../src/common/classes/fb_atomic.il"; + ATOMIC_OPTIONS=`pwd`"/src/common/classes/fb_atomic.il"; fi ;; *) MAKEFILE_PREFIX=solaris-64gcc ;