]> git.sesse.net Git - vlc/blobdiff - configure.in
* vlc is now compiled without the STATS mode by default.
[vlc] / configure.in
index 5e53242e15c13cbe293953a38b7f3e629b0ed51e..b0ca5b0a9eea9f6d4e3c950a974c71107bacda07 100644 (file)
@@ -64,6 +64,7 @@ AC_HEADER_TIME
 
 dnl default plugins 
 PLUGINS=${PLUGINS}"yuv ";
+OPTIMS=1;
 
 ARCH=${host_cpu}
 AC_ARG_ENABLE(ppro,
@@ -76,11 +77,11 @@ AC_ARG_ENABLE(debug,
 [  --enable-debug          Enable debug mode (default is no)],
 [ if test x$enableval = xyes; then DEBUG=1; fi ])
 AC_ARG_ENABLE(stats,
-[  --enable-stats          Enable printing of statistics (default is yes)],
-[ if test x$enableval != xno; then STATS=1; fi ])
+[  --enable-stats          Enable printing of statistics (default is no)],
+[ if test x$enableval = xyes; then STATS=1; fi ])
 AC_ARG_ENABLE(optimizations,
 [  --enable-optimizations  Enable compiler optimizations (default enabled)],
-[ if test x$enableval != xno; then OPTIMS=1; fi ])
+[ if test x$enableval = xno; then OPTIMS=0; fi ])
 
 SYS=${host_os}