diff options
author | N.N. <matju@users.sourceforge.net> | 2009-06-10 20:50:05 +0000 |
---|---|---|
committer | N.N. <matju@users.sourceforge.net> | 2009-06-10 20:50:05 +0000 |
commit | 86501552df914cbe95b7e2a0a69c1cb5078d938c (patch) | |
tree | f3644c460b08cebc4527a7b906be65f06fc5ea4c /desiredata/src/configure | |
parent | a5a9290758d0b4d236202a36a49aff0ae899aee4 (diff) |
rename env var OS to USE_OS because OS is already preset on Windows NT (name conflict)
svn path=/trunk/; revision=11741
Diffstat (limited to 'desiredata/src/configure')
-rwxr-xr-x | desiredata/src/configure | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/desiredata/src/configure b/desiredata/src/configure index d49d368c..16cfc6ae 100755 --- a/desiredata/src/configure +++ b/desiredata/src/configure @@ -5296,11 +5296,11 @@ MIDISRC="s_midi_none.c" WLIB="" STRIP="meuhhhhh" -if test "$OS" = ""; then - OS=$(uname -s) +if test "$USE_OS" = ""; then + USE_OS=$(uname -s) fi -if test $OS = Linux; then +if test $USE_OS = Linux; then LDFLAGS="-Wl,--export-dynamic " EXT=pd_linux LIBSUFFIX=.so @@ -5314,7 +5314,7 @@ if test $OS = Linux; then WSTRIP="" fi -if test $OS = Darwin; then +if test $USE_OS = Darwin; then LDFLAGS="" EXT=pd_darwin LIBSUFFIX=.dylib @@ -5342,7 +5342,7 @@ if test $OS = Darwin; then WSTRIP="" fi -if test $(echo $OS | cut -f1 -d_) = CYGWIN; then +if test $(echo $USE_OS | cut -f1 -d_) = CYGWIN; then LDFLAGS="-Wl,--export-dynamic " EXT=dll LIBSUFFIX=.dll @@ -5354,7 +5354,7 @@ if test $(echo $OS | cut -f1 -d_) = CYGWIN; then WSTRIP="" fi -if test $(echo $OS | cut -f1 -d_) = MINGW32; then +if test $(echo $USE_OS | cut -f1 -d_) = MINGW32; then LDFLAGS="-lm -lpthreadGC2 -lwsock32 -lwinmm -lole32 -L../src -lpd" # LDFLAGS="-lm /home/matju/pthreads-mingw/lib/libpthreadGC2.a -lwsock32 -lwinmm -lole32 -L../src -lpd" EXT=dll |