summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.in4
-rw-r--r--src/jtag/Makefile.am12
2 files changed, 4 insertions, 12 deletions
diff --git a/configure.in b/configure.in
index 5d41d02e..ef552f5c 100644
--- a/configure.in
+++ b/configure.in
@@ -903,11 +903,11 @@ AM_CONDITIONAL(HTTPD, test $build_httpd = yes)
AM_CONDITIONAL(AT91RM9200, test $build_at91rm9200 = yes)
AM_CONDITIONAL(BITBANG, test $build_bitbang = yes)
AM_CONDITIONAL(FT2232_LIBFTDI, test $build_ft2232_libftdi = yes)
-AM_CONDITIONAL(FT2232_FTD2XX, test $build_ft2232_ftd2xx = yes)
+AM_CONDITIONAL(FT2232_DRIVER, test $build_ft2232_ftd2xx = yes -o $build_ft2232_libftdi = yes)
AM_CONDITIONAL(AMTJTAGACCEL, test $build_amtjtagaccel = yes)
AM_CONDITIONAL(GW16012, test $build_gw16012 = yes)
AM_CONDITIONAL(PRESTO_LIBFTDI, test $build_presto_libftdi = yes)
-AM_CONDITIONAL(PRESTO_FTD2XX, test $build_presto_ftd2xx = yes)
+AM_CONDITIONAL(PRESTO_DRIVER, test $build_presto_ftd2xx = yes -o $build_presto_libftdi = yes)
AM_CONDITIONAL(USBPROG, test $build_usbprog = yes)
AM_CONDITIONAL(OOCD_TRACE, test $build_oocd_trace = yes)
AM_CONDITIONAL(JLINK, test $build_jlink = yes)
diff --git a/src/jtag/Makefile.am b/src/jtag/Makefile.am
index 74ae863f..58bbff36 100644
--- a/src/jtag/Makefile.am
+++ b/src/jtag/Makefile.am
@@ -32,12 +32,8 @@ endif
if DUMMY
DRIVERFILES += dummy.c
endif
-if FT2232_LIBFTDI
+if FT2232_DRIVER
DRIVERFILES += ft2232.c
-else
-if FT2232_FTD2XX
-DRIVERFILES += ft2232.c
-endif
endif
if AMTJTAGACCEL
DRIVERFILES += amt_jtagaccel.c
@@ -54,12 +50,8 @@ endif
if BITQ
DRIVERFILES += bitq.c
endif
-if PRESTO_LIBFTDI
+if PRESTO_DRIVER
DRIVERFILES += presto.c
-else
-if PRESTO_FTD2XX
-DRIVERFILES += presto.c
-endif
endif
if USBPROG
DRIVERFILES += usbprog.c