summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-22 12:12:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-22 12:12:00 +0000
commita0ff8ffe49eacefabd094de5db212e550dbdd3c8 (patch)
tree44f2e6431872fce6be5a355b74fc55fe338d81d8 /configure
parent0ae835d34bb87be1e2504cec65a273a955732e2a (diff)
downloadmpv-a0ff8ffe49eacefabd094de5db212e550dbdd3c8.tar.bz2
mpv-a0ff8ffe49eacefabd094de5db212e550dbdd3c8.tar.xz
Missing options added, one put into default order.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12250 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 9 insertions, 3 deletions
diff --git a/configure b/configure
index 5522e3e234..0002c99c14 100755
--- a/configure
+++ b/configure
@@ -1540,18 +1540,24 @@ for ac_option do
_xmmsplugindir=`echo $ac_option | cut -d '=' -f 2`
;;
- --disable-profile)
- _profile=
- ;;
--enable-profile)
_profile='-p'
;;
+ --disable-profile)
+ _profile=
+ ;;
--enable-debug)
_debug='-g'
;;
--enable-debug=*)
_debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2`
;;
+ --disable-debug)
+ _debug=
+ ;;
+ --enable-sighandler)
+ _sighandler=yes
+ ;;
--disable-sighandler)
_sighandler=no
;;