diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-21 22:00:45 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-21 22:00:45 +0100 |
commit | 337eec371c8c86f35813d804f61176a7606bae20 (patch) | |
tree | 14371c320f81e6bf0220e9f7767719c2e90e00ce | |
parent | 90a9f7099f26827644b9fa6d4f386b9cb6e88e92 (diff) | |
download | dabmux-337eec371c8c86f35813d804f61176a7606bae20.tar.gz dabmux-337eec371c8c86f35813d804f61176a7606bae20.tar.bz2 dabmux-337eec371c8c86f35813d804f61176a7606bae20.zip |
disable output RAW by default
It includes linux/ stuff which conficts with other parts
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c552337..3ae8505 100644 --- a/configure.ac +++ b/configure.ac @@ -171,8 +171,7 @@ AS_IF([test "x$enable_output_tcp" = "xyes"], [AC_DEFINE(HAVE_OUTPUT_TCP, [1], [Define if TCP output is enabled])]) # RAW AC_ARG_ENABLE([output_raw], - [AS_HELP_STRING([--disable-output-raw], [Disable RAW output])], - [], [enable_output_raw=yes]) + AS_HELP_STRING([--enable-output-raw], [Enable RAW output])) AS_IF([test "x$enable_output_raw" = "xyes"], [AC_DEFINE(HAVE_OUTPUT_RAW, [1], [Define if RAW output is enabled])]) # SIMUL |