Include drivers for FTDI-based cables even if only FTD2XX was detected

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@862 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Kolja Waschk 17 years ago
parent 12092532be
commit 74e58a5646

@ -1,10 +1,12 @@
2007-12-18 Kolja Waschk <kawk
* doc/UrJTAG.txt, src/jtag.txt: Cosmetics, Copyright
* src/tap/Makefile.am: include cable driver for USB Blaster and
FT2232-based cables if any of libftdi or ftd2xx is present
2007-12-16 Kolja Waschk <kawk>
* jtag.c: Don't abort on invalid command line options
* jtag.c: Don't abort on invalid command line options
* configure.ac: Reorganized the libusb/libftdi detection.
* data/MANUFACTURERS: Change 11110000111 code to point to
"ARM" instead of Sharp to stop misdetection of other

@ -58,12 +58,23 @@ endif
if HAVE_LIBFTDI
libtap_a_SOURCES += \
parport/ftdi.c \
cable/usbblaster.c \
cable/ft2232.c
parport/ftdi.c
endif
if HAVE_LIBFTD2XX
libtap_a_SOURCES += \
parport/ftd2xx.c
endif
FTDIDEPENDENT= \
cable/usbblaster.c \
cable/ft2232.c
if HAVE_LIBFTDI
libtap_a_SOURCES += $(FTDIDEPENDENT)
else
if HAVE_LIBFTD2XX
libtap_a_SOURCES += $(FTDIDEPENDENT)
endif
endif

Loading…
Cancel
Save