Mercurial > sdl-ios-xcode
comparison configure.in @ 750:ce48d14ca5bf
Date: Mon, 24 Nov 2003 20:11:31 +0000
From: John Drinkwater <john@nextraweb.com>
Subject: SDL configure.in patch
On my cygwin compile environment, I get a script error with configure.
$ ./configure --enable-debug=no -q;
appending configuration tag "CXX" to libtool
appending configuration tag "F77" to libtool
./configure: line 28135: : command not found
*snip the rest*
The supplied patch fixes the problem, just a minor oversight of some [ ] & t\
est.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 24 Nov 2003 21:57:13 +0000 |
parents | 528a52626680 |
children | b14fdadd8311 |
comparison
equal
deleted
inserted
replaced
749:06cdd106d61c | 750:ce48d14ca5bf |
---|---|
2289 if test "$build" != "$target"; then # cross-compiling | 2289 if test "$build" != "$target"; then # cross-compiling |
2290 # Default cross-compile location | 2290 # Default cross-compile location |
2291 ac_default_prefix=/usr/local/cross-tools/i386-mingw32msvc | 2291 ac_default_prefix=/usr/local/cross-tools/i386-mingw32msvc |
2292 else | 2292 else |
2293 # Look for the location of the tools and install there | 2293 # Look for the location of the tools and install there |
2294 if [ "$BUILD_PREFIX" != "" ]; then | 2294 if test "$BUILD_PREFIX" != ""; then |
2295 ac_default_prefix=$BUILD_PREFIX | 2295 ac_default_prefix=$BUILD_PREFIX |
2296 fi | 2296 fi |
2297 fi | 2297 fi |
2298 CheckDummyVideo | 2298 CheckDummyVideo |
2299 CheckDiskAudio | 2299 CheckDiskAudio |