From: Joel Holdsworth Date: Wed, 18 Apr 2012 18:10:15 +0000 (+0100) Subject: sr: Disable saleae-logic driver by default and enable fx2lafw X-Git-Tag: libsigrok-0.1.1~42 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=d56ee26599fa6dd560613adc14a4a28575063d5e sr: Disable saleae-logic driver by default and enable fx2lafw --- diff --git a/configure.ac b/configure.ac index 51486960..a65a5d25 100644 --- a/configure.ac +++ b/configure.ac @@ -107,7 +107,7 @@ fi AC_ARG_ENABLE(fx2lafw, AC_HELP_STRING([--enable-fx2lafw], [enable fx2lafw support (for FX2 LAs). [default=no]]), [LA_FX2LAFW="$enableval"], - [LA_FX2LAFW=no]) + [LA_FX2LAFW=yes]) AM_CONDITIONAL(LA_FX2LAFW, test x$LA_FX2LAFW = xyes) if test "x$LA_FX2LAFW" = "xyes"; then AC_DEFINE(HAVE_LA_FX2LAFW, 1, [fx2lafw support]) @@ -144,7 +144,7 @@ fi AC_ARG_ENABLE(saleae-logic, AC_HELP_STRING([--enable-saleae-logic], [enable Saleae Logic support [default=yes]]), [LA_SALEAE_LOGIC="$enableval"], - [LA_SALEAE_LOGIC=yes]) + [LA_SALEAE_LOGIC=no]) AM_CONDITIONAL(LA_SALEAE_LOGIC, test x$LA_SALEAE_LOGIC = xyes) if test "x$LA_SALEAE_LOGIC" = "xyes"; then AC_DEFINE(HAVE_LA_SALEAE_LOGIC, 1, [Saleae Logic support])