summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2004-12-08 21:33:44 +0000
committerbjarni <bjarni@openttd.org>2004-12-08 21:33:44 +0000
commit4a818ecbb6288870fda43144fe33717dc29ca089 (patch)
tree13567b747203657bf1ea0a6d41478f598d451a79 /configure
parent416953f6dceb946d7378b73e9c93ea6f6e45942b (diff)
downloadopenttd-4a818ecbb6288870fda43144fe33717dc29ca089.tar.xz
(svn r988) Removed the JAM file stuff since it turned out that nobody uses it anymore and it is not maintained anymore
Diffstat (limited to 'configure')
-rw-r--r--configure24
1 files changed, 0 insertions, 24 deletions
diff --git a/configure b/configure
deleted file mode 100644
index a6a0ba3ff..000000000
--- a/configure
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh -
-
-SDLCONFIG=`which sdl-config || which sdl11-config || which sdl12-config || echo `
-if [ -n "$SDLCONFIG" ] ; then
- echo "SDL config is located at: $SDLCONFIG"
- sed -e"s@XX_SDL_CONFIG_PLACEHOLDER_XX@$SDLCONFIG@g" < Jamfile.next > tmp && mv tmp Jamfile
-else
- echo "********************************"
- echo "ERROR! SDL CONFIG WAS NOT FOUND!"
- echo "********************************"
- exit 1
-fi
-
-echo "Configure complete. Now use 'jam' to build"
-echo "Add -sWITH_PNG=<dir to png.h> to build with PNG support"
-echo "Add -sWITH_ZLIB=1 to enable zlib savegame support"
-echo "Add -sRELEASE=1 to build an optimized executable"
-echo "Add -sWITH_BONE_NETWORKING=1 to build with BeOS BONE networking support"
-echo "Add -sBEOS_MIDI=1 to enable BeOS native MIDI (libmidi.so) music output"
-echo ""
-echo "For people using make:"
-echo "write make (or gmake)"
-echo "configure have nothing to do with the makefile"
-