summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-11-06 15:04:04 -0800
committerPixel <pixel@nobis-crew.org>2009-11-06 15:04:04 -0800
commitc3b9c28dddfeb2cc90753056898543b6ed28c728 (patch)
tree720e663c0dd8d248e2a55a118ca343e9ecdeb31f
parentfc352ee4fc7b293000c7337aedc16eecf0e23f98 (diff)
Fixing dist command for darwin.
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5b4066f..38428d3 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,7 @@ SQL_LIBS=/sw/lib/mysql/libmysqlclient.a -lz
OSMESA_LIBS = -lMagick++ -lMagick -lWand -lMagick
CPPFLAGS = -dynamic
LD = g++ -arch i386
+STRIP = strip -x
else
ARCH_FLAGS=-march=i686 -m32
SHARED_FLAGS=-shared
@@ -14,10 +15,10 @@ SHARED_EXT=so
SQL_LIBS=/usr/lib/libmysqlclient.a -lssl
OSMESA_LIBS = `Magick++-config --libs`
LD = g++ -m32
+STRIP = strip --strip-unneeded
endif
CC = gcc
CXX = g++
-STRIP = strip --strip-unneeded
HAS_ORACLE=$(shell [ -d /usr/local/instantclient ] && echo true || echo false ])