diff options
author | Jonathan Gray | 2003-08-10 00:44:03 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-08-10 00:44:03 +0000 |
commit | 4f228c71904185ed4180b4224a2c6e8e705cf489 (patch) | |
tree | c1914d3139ed0d3ec9c62c1cc46978bfe3ee06df /configure | |
parent | b0ad2e9da34a8cd2eb27165525289ced3c61d058 (diff) | |
download | scummvm-rg350-4f228c71904185ed4180b4224a2c6e8e705cf489.tar.gz scummvm-rg350-4f228c71904185ed4180b4224a2c6e8e705cf489.tar.bz2 scummvm-rg350-4f228c71904185ed4180b4224a2c6e8e705cf489.zip |
stop if we find a configure option we don't know about, add --enable-debug option which currently only adds -g
svn-id: r9612
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -212,6 +212,14 @@ for ac_option in $@; do --backend=*) _backend=`echo $ac_option | cut -d '=' -f 2` ;; + --enable-debug) + CXXFLAGS="$CXXFLAGS -g" + ;; + *) + echo "error: unrecognised option: $ac_option +Try \`$0 --help' for more information." >&2 + exit 1 + ;; esac; done; |