summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index f25c2b1342..c5655adaa1 100755
--- a/configure
+++ b/configure
@@ -5756,16 +5756,16 @@ fi
echocheck "VCD support"
if test "$_vcd" = auto; then
-_vcd=no
-if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
- _vcd=yes
-elif mingw32; then
- cat > $TMPC << EOF
+ _vcd=no
+ if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
+ _vcd=yes
+ elif mingw32; then
+ cat > $TMPC << EOF
#include <ddk/ntddcdrm.h>
int main(void) { return 0; }
EOF
cc_check && _vcd=yes
-fi
+ fi
fi
if test "$_vcd" = yes; then
_inputmodules="vcd $_inputmodules"