summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-28 23:44:12 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-28 23:44:12 +0000
commit475a35a95279be388e3e5946c17ef39f76da8b01 (patch)
treebd184115313d92673d5ba66eebec1536aaba1412 /configure
parent14537ee1eb3c1de4373584af43b47f5df5eef520 (diff)
downloadmpv-475a35a95279be388e3e5946c17ef39f76da8b01.tar.bz2
mpv-475a35a95279be388e3e5946c17ef39f76da8b01.tar.xz
fixed syntax error bug reported by Steven M. Schultz. btw, pl, please fix this
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3866 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index ffd0bce3aa..37aaa7f177 100755
--- a/configure
+++ b/configure
@@ -2134,7 +2134,10 @@ echores "$_vorbis"
echocheck "Win32 DLL support"
-if test "$_win32" = auto && ! qnx ; then
+if test "$_win32" = auto && qnx ; then
+ _win32=no
+fi
+if test "$_win32" = auto ; then
_win32=no
if x86 ; then
if test -z "$_win32libdir" ; then