diff file.c @ 4206:c3102b189cb6 libavformat

Change semantic of CONFIG_*, HAVE_* and ARCH_*. They are now always defined to either 0 or 1.
author aurel
date Tue, 13 Jan 2009 23:44:16 +0000
parents 898c3d1d9e4e
children 77a5de3c9116
line wrap: on
line diff
--- a/file.c	Tue Jan 13 17:10:10 2009 +0000
+++ b/file.c	Tue Jan 13 23:44:16 2009 +0000
@@ -22,7 +22,7 @@
 #include "libavutil/avstring.h"
 #include "avformat.h"
 #include <fcntl.h>
-#ifdef HAVE_SETMODE
+#if HAVE_SETMODE
 #include <io.h>
 #endif
 #include <unistd.h>
@@ -107,7 +107,7 @@
             fd = 0;
         }
     }
-#ifdef HAVE_SETMODE
+#if HAVE_SETMODE
     setmode(fd, O_BINARY);
 #endif
     h->priv_data = (void *)(size_t)fd;