diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-06-16 13:25:23 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-06-16 13:25:23 +0000 |
commit | 0e8c7bc6fba3f6a6977daa554c5064028e528bd7 (patch) | |
tree | 298e04fd1979c077c5f357eaf2a26db4ad9720b8 /src | |
parent | d184648d9c52567190255b059fec90bf070e7518 (diff) |
removed "strip" from darwin-builds
svn path=/trunk/externals/zexy/; revision=3197
Diffstat (limited to 'src')
-rw-r--r-- | src/configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/configure.ac b/src/configure.ac index 49c4aa2..175858a 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -269,6 +269,8 @@ if test `uname -s` = Darwin; then LD=cc EXT=pd_darwin + STRIP="echo faking strip" + STRIPFLAGS= if test "$enable_bundleloader" = ""; then if test "$PD_MAJORVERSION" -gt 0 || test "$PD_MINORVERSION" -ge 39; then @@ -281,14 +283,11 @@ then dnl i hope "prefix" points to where we want it... dnl should it rather be @exec_prefix@ ??? LFLAGS="-bundle -bundle_loader @prefix@/bin/pd" - STRIPFLAGS= else LFLAGS="-bundle -undefined suppress -flat_namespace" - STRIPFLAGS= fi - if test "$enable_lpt" = "yes"; then AC_MSG_ERROR("lpt not supported on this platform"); fi |