diff options
author | Max Horn | 2008-01-13 13:24:47 +0000 |
---|---|---|
committer | Max Horn | 2008-01-13 13:24:47 +0000 |
commit | 9e5e73eb9a5deab58ff9f3128372bceaa6aacfbe (patch) | |
tree | b292f09cf6a41e0ee59976e04841bae5d89ae3ac | |
parent | 8ed59f8ba96553a3e9ab85db318fc08bc9238df6 (diff) | |
download | scummvm-rg350-9e5e73eb9a5deab58ff9f3128372bceaa6aacfbe.tar.gz scummvm-rg350-9e5e73eb9a5deab58ff9f3128372bceaa6aacfbe.tar.bz2 scummvm-rg350-9e5e73eb9a5deab58ff9f3128372bceaa6aacfbe.zip |
Added GPL header to configure (it really is complex enough to justify that), and removed some old TODOs
svn-id: r30471
-rwxr-xr-x | configure | 30 |
1 files changed, 22 insertions, 8 deletions
@@ -1,13 +1,27 @@ #!/bin/sh # -# Some things this script could/should do when finished -# -# * detect whether it's a GNU compiler or not (for compiler settings) -# * command line options to... -# - override the host settings (for cross compiles -# - whether to do a debug build (with -g) or an optimized build (-O3 etc.) -# * detect whether the chosen backend is available (e.g. call sdl-config) -# * .... +# configue -- custom configure script for ScummVM. +# +# ScummVM is the legal property of its developers, whose names +# are too numerous to list here. Please refer to the COPYRIGHT +# file distributed with this source distribution. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +# $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk/base/main.cpp $ +# $Id$ # Save the current environment variables for next runs SAVED_CONFIGFLAGS=$@ |