From 86501552df914cbe95b7e2a0a69c1cb5078d938c Mon Sep 17 00:00:00 2001 From: "N.N." Date: Wed, 10 Jun 2009 20:50:05 +0000 Subject: rename env var OS to USE_OS because OS is already preset on Windows NT (name conflict) svn path=/trunk/; revision=11741 --- desiredata/src/configure | 12 ++++++------ desiredata/src/configure.in | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'desiredata') 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 diff --git a/desiredata/src/configure.in b/desiredata/src/configure.in index 256b280f..d4ba4012 100644 --- a/desiredata/src/configure.in +++ b/desiredata/src/configure.in @@ -73,11 +73,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 @@ -91,7 +91,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 @@ -119,7 +119,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 @@ -131,7 +131,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 -- cgit v1.2.1