diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-11-27 16:38:04 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-11-27 16:38:34 +0100 |
commit | 653f63a0a834ee3dc52bb0e32b4e2387f13edeb2 (patch) | |
tree | 845ca36b071931ca166f0ef09aa9ea1bbd443f99 /configure.ac | |
parent | 04898ca3f29ade0a0687a8f71adebd882616593a (diff) | |
download | dabmux-653f63a0a834ee3dc52bb0e32b4e2387f13edeb2.tar.gz dabmux-653f63a0a834ee3dc52bb0e32b4e2387f13edeb2.tar.bz2 dabmux-653f63a0a834ee3dc52bb0e32b4e2387f13edeb2.zip |
Enable EDI by default
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 265b853..5491f51 100644 --- a/configure.ac +++ b/configure.ac @@ -198,7 +198,8 @@ AS_IF([test "x$enable_output_zeromq" = "xyes"], AC_DEFINE(HAVE_OUTPUT_ZEROMQ, [1], [Define if ZeroMQ output is enabled])) # EDI AC_ARG_ENABLE([output_edi], - AS_HELP_STRING([--enable-output-edi], [Enable EDI output])) + [AS_HELP_STRING([--disable-output-edi], [Disable EDI output])], + [], [enable_output_edi=yes]) AS_IF([test "x$enable_output_edi" = "xyes"], [AC_DEFINE(HAVE_OUTPUT_EDI, [1], [Define if EDI output is enabled])]) |