You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1234 lines
38 KiB

  1. AC_PREREQ(2.60)
  2. AC_INIT([openocd], [0.6.0-dev],
  3. [OpenOCD Mailing List <openocd-devel@lists.sourceforge.net>])
  4. AC_CONFIG_SRCDIR([src/openocd.c])
  5. m4_include([config_subdir.m4])dnl
  6. AM_INIT_AUTOMAKE([-Wall -Wno-portability dist-bzip2 dist-zip])
  7. AM_MAINTAINER_MODE
  8. AM_CONFIG_HEADER([config.h])
  9. AH_BOTTOM([
  10. #include <helper/system.h>
  11. #include <helper/replacements.h>
  12. ])
  13. AC_LANG_C
  14. AC_PROG_CC
  15. AC_PROG_CC_C99
  16. AM_PROG_CC_C_O
  17. AC_PROG_RANLIB
  18. dnl disable checks for C++, Fortran and GNU Java Compiler
  19. m4_defun([_LT_AC_LANG_CXX_CONFIG], [:])
  20. m4_defun([_LT_AC_LANG_F77_CONFIG], [:])
  21. m4_defun([_LT_AC_LANG_GCJ_CONFIG], [:])
  22. AC_DISABLE_SHARED
  23. AC_PROG_LIBTOOL
  24. AC_SUBST([LIBTOOL_DEPS])
  25. dnl configure checks required for Jim files (these are obsolete w/ C99)
  26. AC_C_CONST
  27. AC_TYPE_LONG_LONG_INT
  28. AC_SEARCH_LIBS([ioperm], [ioperm])
  29. AC_SEARCH_LIBS([dlopen], [dl])
  30. AC_CHECK_HEADERS([sys/socket.h])
  31. AC_CHECK_HEADERS([arpa/inet.h], [], [], [dnl
  32. #include <stdio.h>
  33. #ifdef STDC_HEADERS
  34. # include <stdlib.h>
  35. # include <stddef.h>
  36. #else
  37. # ifdef HAVE_STDLIB_H
  38. # include <stdlib.h>
  39. # endif
  40. #endif
  41. #ifdef HAVE_SYS_SOCKET_H
  42. # include <sys/socket.h>
  43. #endif
  44. ])
  45. AC_CHECK_HEADERS([elf.h])
  46. AC_CHECK_HEADERS([dirent.h])
  47. AC_CHECK_HEADERS([fcntl.h])
  48. AC_CHECK_HEADERS([ifaddrs.h], [], [], [dnl
  49. #include <stdio.h>
  50. #ifdef STDC_HEADERS
  51. # include <stdlib.h>
  52. # include <stddef.h>
  53. #else
  54. # ifdef HAVE_STDLIB_H
  55. # include <stdlib.h>
  56. # endif
  57. #endif
  58. #ifdef HAVE_SYS_SOCKET_H
  59. # include <sys/socket.h>
  60. #endif
  61. ])
  62. AC_CHECK_HEADERS([malloc.h])
  63. AC_CHECK_HEADERS([netdb.h])
  64. AC_CHECK_HEADERS([netinet/in.h], [], [], [dnl
  65. #include <stdio.h>
  66. #ifdef STDC_HEADERS
  67. # include <stdlib.h>
  68. # include <stddef.h>
  69. #else
  70. # ifdef HAVE_STDLIB_H
  71. # include <stdlib.h>
  72. # endif
  73. #endif
  74. #ifdef HAVE_SYS_SOCKET_H
  75. # include <sys/socket.h>
  76. #endif
  77. ])
  78. AC_CHECK_HEADERS([netinet/tcp.h], [], [], [dnl
  79. #include <stdio.h>
  80. #ifdef STDC_HEADERS
  81. # include <stdlib.h>
  82. # include <stddef.h>
  83. #else
  84. # ifdef HAVE_STDLIB_H
  85. # include <stdlib.h>
  86. # endif
  87. #endif
  88. #ifdef HAVE_SYS_SOCKET_H
  89. # include <sys/socket.h>
  90. #endif
  91. ])
  92. AC_CHECK_HEADERS([pthread.h])
  93. AC_CHECK_HEADERS([strings.h])
  94. AC_CHECK_HEADERS([sys/ioctl.h])
  95. AC_CHECK_HEADERS([sys/param.h])
  96. AC_CHECK_HEADERS([sys/poll.h])
  97. AC_CHECK_HEADERS([sys/select.h])
  98. AC_CHECK_HEADERS([sys/stat.h])
  99. AC_CHECK_HEADERS([sys/time.h])
  100. AC_CHECK_HEADERS([sys/types.h])
  101. AC_CHECK_HEADERS([unistd.h])
  102. AC_CHECK_HEADERS([net/if.h], [], [], [dnl
  103. #include <stdio.h>
  104. #ifdef STDC_HEADERS
  105. # include <stdlib.h>
  106. # include <stddef.h>
  107. #else
  108. # ifdef HAVE_STDLIB_H
  109. # include <stdlib.h>
  110. # endif
  111. #endif
  112. #ifdef HAVE_SYS_SOCKET_H
  113. # include <sys/socket.h>
  114. #endif
  115. ])
  116. AC_HEADER_ASSERT
  117. AC_HEADER_STDBOOL
  118. AC_HEADER_TIME
  119. AC_C_BIGENDIAN
  120. AC_CHECK_FUNCS([strndup])
  121. AC_CHECK_FUNCS([strnlen])
  122. AC_CHECK_FUNCS([gettimeofday])
  123. AC_CHECK_FUNCS([usleep])
  124. AC_CHECK_FUNCS([vasprintf])
  125. build_bitbang=no
  126. build_bitq=no
  127. is_cygwin=no
  128. is_mingw=no
  129. is_win32=no
  130. is_darwin=no
  131. # guess-rev.sh only exists in the repository, not in the released archives
  132. AC_MSG_CHECKING([whether to build a release])
  133. if test -x $srcdir/guess-rev.sh ; then
  134. build_release=no
  135. else
  136. build_release=yes
  137. fi
  138. AC_MSG_RESULT([$build_release])
  139. # We are not *ALWAYS* being installed in the standard place.
  140. # We may be installed in a "tool-build" specific location.
  141. # Normally with other packages - as part of a tool distro.
  142. # Thus - we should search that 'libdir' also.
  143. #
  144. # And - if we are being installed there - the odds are
  145. # The libraries unique to what we are are there too.
  146. #
  147. # Expand nd deal with NONE - just like configure will do later
  148. OCDprefix=$prefix
  149. OCDxprefix=$exec_prefix
  150. test x"$OCDprefix" = xNONE && OCDprefix=$ac_default_prefix
  151. # Let make expand exec_prefix.
  152. test x"$OCDxprefix" = xNONE && OCDxprefix="$OCDprefix"
  153. # what matters is the "exec-prefix"
  154. if test "$OCDxprefix" != "$ac_default_prefix"
  155. then
  156. # We are installing in a non-standard place
  157. # Nonstandard --prefix and/or --exec-prefix
  158. # We have an override of some sort.
  159. # use build specific install library dir
  160. LDFLAGS="$LDFLAGS -L$OCDxprefix/lib"
  161. # RPATH becomes an issue on Linux only
  162. if test $host_os = linux-gnu || test $host_os = linux ; then
  163. LDFLAGS="$LDFLAGS -Wl,-rpath,$OCDxprefix/lib"
  164. fi
  165. # The "INCDIR" is also usable
  166. CFLAGS="$CFLAGS -I$includedir"
  167. fi
  168. AC_ARG_WITH(ftd2xx,
  169. AS_HELP_STRING([--with-ftd2xx=<PATH>],[This option has been removed.]),
  170. [
  171. # Option Given.
  172. cat << __EOF__
  173. The option: --with-ftd2xx=<PATH> has been removed.
  174. On Linux, the new option is:
  175. --with-ftd2xx-linux-tardir=/path/to/files
  176. Where <path> is the path the the directory where the "tar.gz" file
  177. from FTDICHIP.COM was unpacked, for example:
  178. --with-ftd2xx-linux-tardir=${HOME}/libftd2xx0.4.16
  179. On Cygwin/MingW32, the new option is:
  180. --with-ftd2xx-win32-zipdir=/path/to/files
  181. Where <path> is the path to the directory where the "zip" file from
  182. FTDICHIP.COM was unpacked, for example:
  183. --with-ftd2xx-win32-zipdir=${HOME}/ftd2xx.cdm.files
  184. __EOF__
  185. AC_MSG_ERROR([Sorry Cannot continue])
  186. ], [true])
  187. #========================================
  188. # FTD2XXX support comes in 4 forms.
  189. # (1) win32 - via a zip file
  190. # (2) linux - via a tar file
  191. # (3) linux/cygwin/mingw - via libftdi
  192. # (4) darwin - installed under /usr/local
  193. #
  194. # In case (1) and (2) we need to know where the package was unpacked.
  195. AC_ARG_WITH(ftd2xx-win32-zipdir,
  196. AS_HELP_STRING([--with-ftd2xx-win32-zipdir],[Where (CYGWIN/MINGW) the zip file from ftdichip.com was unpacked <default=search>]),
  197. [
  198. # option present
  199. if test -d $with_ftd2xx_win32_zipdir
  200. then
  201. with_ftd2xx_win32_zipdir=`cd $with_ftd2xx_win32_zipdir && pwd`
  202. AC_MSG_NOTICE([Using: ftdichip.com library: $with_ftd2xx_win32_zipdir])
  203. else
  204. AC_MSG_ERROR([Parameter to --with-ftd2xx-win32-zipdir is not a dir: $with_ftd2xx_win32_zipdir])
  205. fi
  206. ], [true])
  207. AC_ARG_WITH(ftd2xx-linux-tardir,
  208. AS_HELP_STRING([--with-ftd2xx-linux-tardir], [Where (Linux/Unix) the tar file from ftdichip.com was unpacked <default=search>]),
  209. [
  210. # Option present
  211. if test $is_win32 = yes ; then
  212. AC_MSG_ERROR([The option: --with-ftd2xx-linux-tardir is only usable on linux])
  213. fi
  214. if test -d $with_ftd2xx_linux_tardir
  215. then
  216. with_ftd2xx_linux_tardir=`cd $with_ftd2xx_linux_tardir && pwd`
  217. AC_MSG_NOTICE([Using: ftdichip.com library: $with_ftd2xx_linux_tardir])
  218. else
  219. AC_MSG_ERROR([Parameter to --with-ftd2xx-linux-tardir is not a dir: $with_ftd2xx_linux_tardir])
  220. fi
  221. ], [true])
  222. AC_ARG_WITH(ftd2xx-lib,
  223. AS_HELP_STRING([--with-ftd2xx-lib],
  224. [Use static or shared ftd2xx libs on default static]),
  225. [
  226. case "$withval" in
  227. static)
  228. with_ftd2xx_lib=$withval
  229. ;;
  230. shared)
  231. with_ftd2xx_lib=$withval
  232. ;;
  233. *)
  234. AC_MSG_ERROR([Option: --with-ftd2xx-lib=static or --with-ftd2xx-lib=shared not, $withval])
  235. ;;
  236. esac
  237. ], [
  238. # Default is static - it is simpler :-(
  239. with_ftd2xx_lib=static
  240. ])
  241. AC_ARG_ENABLE([doxygen-html],
  242. AS_HELP_STRING([--disable-doxygen-html],
  243. [Disable building Doxygen manual as HTML.]),
  244. [doxygen_as_html=$enableval], [doxygen_as_html=yes])
  245. AC_SUBST([doxygen_as_html])
  246. AC_MSG_CHECKING([whether to build Doxygen as HTML])
  247. AC_MSG_RESULT([$doxygen_as_html])
  248. AC_ARG_ENABLE([doxygen-pdf],
  249. AS_HELP_STRING([--enable-doxygen-pdf],
  250. [Enable building Doxygen manual as PDF.]),
  251. [doxygen_as_pdf=$enableval], [doxygen_as_pdf=no])
  252. AC_SUBST([doxygen_as_pdf])
  253. AC_MSG_CHECKING([whether to build Doxygen as PDF])
  254. AC_MSG_RESULT([$doxygen_as_pdf])
  255. AC_ARG_ENABLE([gccwarnings],
  256. AS_HELP_STRING([--disable-gccwarnings], [Disable compiler warnings]),
  257. [gcc_warnings=$enableval], [gcc_warnings=yes])
  258. AC_ARG_ENABLE([wextra],
  259. AS_HELP_STRING([--disable-wextra], [Disable extra compiler warnings]),
  260. [gcc_wextra=$enableval], [gcc_wextra=$gcc_warnings])
  261. AC_ARG_ENABLE([werror],
  262. AS_HELP_STRING([--disable-werror], [Do not treat warnings as errors]),
  263. [gcc_werror=$enableval], [gcc_werror=$gcc_warnings])
  264. # set default verbose options, overridden by following options
  265. debug_jtag_io=no
  266. debug_usb_io=no
  267. debug_usb_comms=no
  268. AC_ARG_ENABLE([verbose],
  269. AS_HELP_STRING([--enable-verbose],
  270. [Enable verbose JTAG I/O messages (for debugging).]),
  271. [
  272. debug_jtag_io=$enableval
  273. debug_usb_io=$enableval
  274. debug_usb_comms=$enableval
  275. ], [])
  276. AC_ARG_ENABLE([verbose_jtag_io],
  277. AS_HELP_STRING([--enable-verbose-jtag-io],
  278. [Enable verbose JTAG I/O messages (for debugging).]),
  279. [debug_jtag_io=$enableval], [])
  280. AC_ARG_ENABLE([verbose_usb_io],
  281. AS_HELP_STRING([--enable-verbose-usb-io],
  282. [Enable verbose USB I/O messages (for debugging)]),
  283. [debug_usb_io=$enableval], [])
  284. AC_ARG_ENABLE([verbose_usb_comms],
  285. AS_HELP_STRING([--enable-verbose-usb-comms],
  286. [Enable verbose USB communication messages (for debugging)]),
  287. [debug_usb_comms=$enableval], [])
  288. AC_MSG_CHECKING([whether to enable verbose JTAG I/O messages]);
  289. AC_MSG_RESULT([$debug_jtag_io])
  290. if test $debug_jtag_io = yes; then
  291. AC_DEFINE([_DEBUG_JTAG_IO_],[1], [Print verbose JTAG I/O messages])
  292. fi
  293. AC_MSG_CHECKING([whether to enable verbose USB I/O messages]);
  294. AC_MSG_RESULT([$debug_usb_io])
  295. if test $debug_usb_io = yes; then
  296. AC_DEFINE([_DEBUG_USB_IO_],[1], [Print verbose USB I/O messages])
  297. fi
  298. AC_MSG_CHECKING([whether to enable verbose USB communication messages]);
  299. AC_MSG_RESULT([$debug_usb_comms])
  300. if test $debug_usb_comms = yes; then
  301. AC_DEFINE([_DEBUG_USB_COMMS_],[1], [Print verbose USB communication messages])
  302. fi
  303. debug_malloc=no
  304. AC_ARG_ENABLE([malloc_logging],
  305. AS_HELP_STRING([--enable-malloc-logging],
  306. [Include free space in logging messages (requires malloc.h).]),
  307. [debug_malloc=$enableval], [])
  308. AC_MSG_CHECKING([whether to enable malloc free space logging]);
  309. AC_MSG_RESULT([$debug_malloc])
  310. if test $debug_malloc = yes; then
  311. AC_DEFINE([_DEBUG_FREE_SPACE_],[1], [Include malloc free space in logging])
  312. fi
  313. AC_ARG_ENABLE([dummy],
  314. AS_HELP_STRING([--enable-dummy], [Enable building the dummy port driver]),
  315. [build_dummy=$enableval], [build_dummy=no])
  316. AC_ARG_ENABLE([parport],
  317. AS_HELP_STRING([--enable-parport], [Enable building the pc parallel port driver]),
  318. [build_parport=$enableval], [build_parport=no])
  319. AC_ARG_ENABLE([parport_ppdev],
  320. AS_HELP_STRING([--disable-parport-ppdev],
  321. [Disable use of ppdev (/dev/parportN) for parport (for x86 only)]),
  322. [parport_use_ppdev=$enableval], [parport_use_ppdev=yes])
  323. AC_ARG_ENABLE([parport_giveio],
  324. AS_HELP_STRING([--enable-parport-giveio],
  325. [Enable use of giveio for parport (for CygWin only)]),
  326. [parport_use_giveio=$enableval], [parport_use_giveio=])
  327. AC_ARG_ENABLE([ft2232_libftdi],
  328. AS_HELP_STRING([--enable-ft2232_libftdi], [Enable building support for FT2232 based devices using the libftdi driver, opensource alternate of FTD2XX]),
  329. [build_ft2232_libftdi=$enableval], [build_ft2232_libftdi=no])
  330. AC_ARG_ENABLE([ft2232_ftd2xx],
  331. AS_HELP_STRING([--enable-ft2232_ftd2xx], [Enable building support for FT2232 based devices using the FTD2XX driver from ftdichip.com]),
  332. [build_ft2232_ftd2xx=$enableval], [build_ft2232_ftd2xx=no])
  333. AC_ARG_ENABLE([usb_blaster_libftdi],
  334. AS_HELP_STRING([--enable-usb_blaster_libftdi], [Enable building support for the Altera USB-Blaster using the libftdi driver, opensource alternate of FTD2XX]),
  335. [build_usb_blaster_libftdi=$enableval], [build_usb_blaster_libftdi=no])
  336. AC_ARG_ENABLE([usb_blaster_ftd2xx],
  337. AS_HELP_STRING([--enable-usb_blaster_ftd2xx], [Enable building support for the Altera USB-Blaster using the FTD2XX driver from ftdichip.com]),
  338. [build_usb_blaster_ftd2xx=$enableval], [build_usb_blaster_ftd2xx=no])
  339. AC_ARG_ENABLE([amtjtagaccel],
  340. AS_HELP_STRING([--enable-amtjtagaccel], [Enable building the Amontec JTAG-Accelerator driver]),
  341. [build_amtjtagaccel=$enableval], [build_amtjtagaccel=no])
  342. AC_ARG_ENABLE([ecosboard],
  343. AS_HELP_STRING([--enable-ecosboard], [Enable building support for eCos based JTAG debugger]),
  344. [build_ecosboard=$enableval], [build_ecosboard=no])
  345. AC_ARG_ENABLE([zy1000_master],
  346. AS_HELP_STRING([--enable-zy1000-master], [Use ZY1000 JTAG master registers]),
  347. [build_zy1000_master=$enableval], [build_zy1000_master=no])
  348. AC_ARG_ENABLE([zy1000],
  349. AS_HELP_STRING([--enable-zy1000], [Enable ZY1000 interface]),
  350. [build_zy1000=$enableval], [build_zy1000=no])
  351. AC_ARG_ENABLE([ioutil],
  352. AS_HELP_STRING([--enable-ioutil], [Enable ioutil functions - useful for standalone OpenOCD implementations]),
  353. [build_ioutil=$enableval], [build_ioutil=no])
  354. case "${host_cpu}" in
  355. arm*)
  356. AC_ARG_ENABLE([ep93xx],
  357. AS_HELP_STRING([--enable-ep93xx], [Enable building support for EP93xx based SBCs]),
  358. [build_ep93xx=$enableval], [build_ep93xx=no])
  359. AC_ARG_ENABLE([at91rm9200],
  360. AS_HELP_STRING([--enable-at91rm9200], [Enable building support for AT91RM9200 based SBCs]),
  361. [build_at91rm9200=$enableval], [build_at91rm9200=no])
  362. ;;
  363. *)
  364. build_ep93xx=no
  365. build_at91rm9200=no
  366. ;;
  367. esac
  368. AC_ARG_ENABLE([gw16012],
  369. AS_HELP_STRING([--enable-gw16012], [Enable building support for the Gateworks GW16012 JTAG Programmer]),
  370. [build_gw16012=$enableval], [build_gw16012=no])
  371. AC_ARG_ENABLE([presto_libftdi],
  372. AS_HELP_STRING([--enable-presto_libftdi], [Enable building support for ASIX Presto Programmer using the libftdi driver]),
  373. [build_presto_libftdi=$enableval], [build_presto_libftdi=no])
  374. AC_ARG_ENABLE([presto_ftd2xx],
  375. AS_HELP_STRING([--enable-presto_ftd2xx], [Enable building support for ASIX Presto Programmer using the FTD2XX driver]),
  376. [build_presto_ftd2xx=$enableval], [build_presto_ftd2xx=no])
  377. AC_ARG_ENABLE([usbprog],
  378. AS_HELP_STRING([--enable-usbprog], [Enable building support for the usbprog JTAG Programmer]),
  379. [build_usbprog=$enableval], [build_usbprog=no])
  380. AC_ARG_ENABLE([oocd_trace],
  381. AS_HELP_STRING([--enable-oocd_trace],
  382. [Enable building support for some prototype OpenOCD+trace ETM capture hardware]),
  383. [build_oocd_trace=$enableval], [build_oocd_trace=no])
  384. AC_ARG_ENABLE([jlink],
  385. AS_HELP_STRING([--enable-jlink], [Enable building support for the Segger J-Link JTAG Programmer]),
  386. [build_jlink=$enableval], [build_jlink=no])
  387. AC_ARG_ENABLE([vsllink],
  388. AS_HELP_STRING([--enable-vsllink], [Enable building support for the Versaloon-Link JTAG Programmer]),
  389. [build_vsllink=$enableval], [build_vsllink=no])
  390. AC_ARG_ENABLE([rlink],
  391. AS_HELP_STRING([--enable-rlink], [Enable building support for the Raisonance RLink JTAG Programmer]),
  392. [build_rlink=$enableval], [build_rlink=no])
  393. AC_ARG_ENABLE([ulink],
  394. AS_HELP_STRING([--enable-ulink], [Enable building support for the Keil ULINK JTAG Programmer]),
  395. [build_ulink=$enableval], [build_ulink=no])
  396. AC_ARG_ENABLE([arm-jtag-ew],
  397. AS_HELP_STRING([--enable-arm-jtag-ew], [Enable building support for the Olimex ARM-JTAG-EW Programmer]),
  398. [build_armjtagew=$enableval], [build_armjtagew=no])
  399. AC_ARG_ENABLE([buspirate],
  400. AS_HELP_STRING([--enable-buspirate], [Enable building support for the Buspirate]),
  401. [build_buspirate=$enableval], [build_buspirate=no])
  402. AC_ARG_ENABLE([minidriver_dummy],
  403. AS_HELP_STRING([--enable-minidriver-dummy], [Enable the dummy minidriver.]),
  404. [build_minidriver_dummy=$enableval], [build_minidriver_dummy=no])
  405. AC_ARG_ENABLE([internal-jimtcl],
  406. AS_HELP_STRING([--disable-internal-jimtcl], [Disable building internal jimtcl]),
  407. [use_internal_jimtcl=$enableval], [use_internal_jimtcl=yes])
  408. AC_ARG_ENABLE([libusb0],
  409. AS_HELP_STRING([--enable-libusb0], [Use libusb-0.1 library for USB JTAG devices]),
  410. [check_libusb0=$enableval], [check_libusb0=no])
  411. build_minidriver=no
  412. AC_MSG_CHECKING([whether to enable ZY1000 minidriver])
  413. if test $build_zy1000 = yes; then
  414. if test $build_minidriver = yes; then
  415. AC_MSG_ERROR([Multiple minidriver options have been enabled.])
  416. fi
  417. AC_DEFINE([HAVE_JTAG_MINIDRIVER_H], [1],
  418. [Define to 1 if you have the <jtag_minidriver.h> header file.])
  419. build_minidriver=yes
  420. fi
  421. AC_MSG_RESULT([$build_zy1000])
  422. AC_ARG_ENABLE([remote-bitbang],
  423. AS_HELP_STRING([--enable-remote-bitbang], [Enable building support for the Remote Bitbang jtag driver]),
  424. [build_remote_bitbang=$enableval], [build_remote_bitbang=no])
  425. AC_MSG_CHECKING([whether to enable dummy minidriver])
  426. if test $build_minidriver_dummy = yes; then
  427. if test $build_minidriver = yes; then
  428. AC_MSG_ERROR([Multiple minidriver options have been enabled.])
  429. fi
  430. build_minidriver=yes
  431. AC_DEFINE([BUILD_MINIDRIVER_DUMMY], [1], [Use the dummy minidriver.])
  432. AC_DEFINE([HAVE_JTAG_MINIDRIVER_H], [1],
  433. [Define to 1 if you have the <jtag_minidriver.h> header file.])
  434. fi
  435. AC_MSG_RESULT([$build_minidriver_dummy])
  436. AC_MSG_CHECKING([whether standard drivers can be built])
  437. if test "$build_minidriver" = yes; then
  438. AC_MSG_RESULT([no])
  439. AC_MSG_WARN([Using the minidriver disables all other drivers.])
  440. sleep 2
  441. else
  442. AC_MSG_RESULT([yes])
  443. fi
  444. case "${host_cpu}" in
  445. i?86|x86*)
  446. ;;
  447. *)
  448. if test x$parport_use_ppdev = xno; then
  449. AC_MSG_WARN([--disable-parport-ppdev is not supported by the host CPU])
  450. fi
  451. parport_use_ppdev=yes
  452. ;;
  453. esac
  454. case $host in
  455. *-cygwin*)
  456. is_win32=yes
  457. parport_use_ppdev=no
  458. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [[return __MINGW32__;]])],
  459. [is_mingw=yes],[is_mingw=no])
  460. if test $is_mingw = yes; then
  461. AC_DEFINE([IS_MINGW], [1], [1 if building for MinGW.])
  462. if test x$parport_use_giveio = xno; then
  463. AC_MSG_WARN([--disable-parport-giveio is not supported by MinGW32 hosts])
  464. fi
  465. parport_use_giveio=yes
  466. is_cygwin=no
  467. else
  468. is_cygwin=yes
  469. AC_DEFINE([IS_CYGWIN], [1], [1 if building for Cygwin.])
  470. # sys/io.h needed under cygwin for parport access
  471. if test $build_parport = yes; then
  472. AC_CHECK_HEADERS([sys/io.h],[],AC_MSG_ERROR([Please install the cygwin ioperm package]))
  473. fi
  474. fi
  475. AC_DEFINE([IS_WIN32], [1], [1 if building for Win32.])
  476. AC_DEFINE([IS_DARWIN], [0], [0 if not building for Darwin.])
  477. ;;
  478. *-mingw*)
  479. is_mingw=yes
  480. is_win32=yes
  481. parport_use_ppdev=no
  482. if test x$parport_use_giveio = xno; then
  483. AC_MSG_WARN([--disable-parport-giveio is not supported by MinGW32 hosts])
  484. fi
  485. parport_use_giveio=yes
  486. if test x$build_buspirate = xyes; then
  487. AC_MSG_ERROR([buspirate currently not supported by MinGW32 hosts])
  488. fi
  489. CFLAGS="$CFLAGS -D__USE_MINGW_ANSI_STDIO"
  490. AC_DEFINE([IS_MINGW], [1], [1 if building for MinGW.])
  491. AC_DEFINE([IS_WIN32], [1], [1 if building for Win32.])
  492. AC_DEFINE([IS_DARWIN], [0], [0 if not building for Darwin.])
  493. ;;
  494. *darwin*)
  495. is_darwin=yes
  496. if test x$parport_use_giveio = xyes; then
  497. AC_MSG_WARN([--enable-parport-giveio cannot be used by Darwin hosts])
  498. fi
  499. parport_use_giveio=no
  500. AC_DEFINE([IS_CYGWIN], [0], [0 if not building for Cygwin.])
  501. AC_DEFINE([IS_WIN32], [0], [0 if not building for Win32.])
  502. AC_DEFINE([IS_DARWIN], [1], [1 if building for Darwin.])
  503. ;;
  504. *)
  505. if test x$parport_use_giveio = xyes; then
  506. AC_MSG_WARN([--enable-parport-giveio cannot be used by ]$host[ hosts])
  507. fi
  508. parport_use_giveio=no
  509. AC_DEFINE([IS_CYGWIN], [0], [0 if not building for Cygwin.])
  510. AC_DEFINE([IS_WIN32], [0], [0 if not building for Win32.])
  511. AC_DEFINE([IS_DARWIN], [0], [0 if not building for Darwin.])
  512. ;;
  513. esac
  514. if test $build_parport = yes; then
  515. build_bitbang=yes
  516. AC_DEFINE([BUILD_PARPORT], [1], [1 if you want parport.])
  517. else
  518. AC_DEFINE([BUILD_PARPORT], [0], [0 if you don't want parport.])
  519. fi
  520. if test $build_dummy = yes; then
  521. build_bitbang=yes
  522. AC_DEFINE([BUILD_DUMMY], [1], [1 if you want dummy driver.])
  523. else
  524. AC_DEFINE([BUILD_DUMMY], [0], [0 if you don't want dummy driver.])
  525. fi
  526. if test $build_ep93xx = yes; then
  527. build_bitbang=yes
  528. AC_DEFINE([BUILD_EP93XX], [1], [1 if you want ep93xx.])
  529. else
  530. AC_DEFINE([BUILD_EP93XX], [0], [0 if you don't want ep93xx.])
  531. fi
  532. if test $build_ecosboard = yes; then
  533. AC_DEFINE([BUILD_ECOSBOARD], [1], [1 if you want eCosBoard.])
  534. else
  535. AC_DEFINE([BUILD_ECOSBOARD], [0], [0 if you don't want eCosBoard.])
  536. fi
  537. if test $build_zy1000 = yes; then
  538. AC_DEFINE([BUILD_ZY1000], [1], [1 if you want ZY1000.])
  539. else
  540. AC_DEFINE([BUILD_ZY1000], [0], [0 if you don't want ZY1000.])
  541. fi
  542. if test $build_zy1000_master = yes; then
  543. AC_DEFINE([BUILD_ZY1000_MASTER], [1], [1 if you want ZY1000 JTAG master registers.])
  544. else
  545. AC_DEFINE([BUILD_ZY1000_MASTER], [0], [0 if you don't want ZY1000 JTAG master registers.])
  546. fi
  547. if test $build_at91rm9200 = yes; then
  548. build_bitbang=yes
  549. AC_DEFINE([BUILD_AT91RM9200], [1], [1 if you want at91rm9200.])
  550. else
  551. AC_DEFINE([BUILD_AT91RM9200], [0], [0 if you don't want at91rm9200.])
  552. fi
  553. if test x$parport_use_ppdev = xyes; then
  554. AC_DEFINE([PARPORT_USE_PPDEV], [1], [1 if you want parport to use ppdev.])
  555. else
  556. AC_DEFINE([PARPORT_USE_PPDEV], [0], [0 if you don't want parport to use ppdev.])
  557. fi
  558. if test x$parport_use_giveio = xyes; then
  559. AC_DEFINE([PARPORT_USE_GIVEIO], [1], [1 if you want parport to use giveio.])
  560. else
  561. AC_DEFINE([PARPORT_USE_GIVEIO], [0], [0 if you don't want parport to use giveio.])
  562. fi
  563. if test $build_bitbang = yes; then
  564. AC_DEFINE([BUILD_BITBANG], [1], [1 if you want a bitbang interface.])
  565. else
  566. AC_DEFINE([BUILD_BITBANG], [0], [0 if you don't want a bitbang interface.])
  567. fi
  568. if test $build_ft2232_libftdi = yes; then
  569. AC_DEFINE([BUILD_FT2232_LIBFTDI], [1], [1 if you want libftdi ft2232.])
  570. else
  571. AC_DEFINE([BUILD_FT2232_LIBFTDI], [0], [0 if you don't want libftdi ft2232.])
  572. fi
  573. if test $build_ft2232_ftd2xx = yes; then
  574. AC_DEFINE([BUILD_FT2232_FTD2XX], [1], [1 if you want ftd2xx ft2232.])
  575. else
  576. AC_DEFINE([BUILD_FT2232_FTD2XX], [0], [0 if you don't want ftd2xx ft2232.])
  577. fi
  578. if test $build_usb_blaster_libftdi = yes; then
  579. build_bitbang=yes
  580. AC_DEFINE([BUILD_USB_BLASTER_LIBFTDI], [1], [1 if you want libftdi usb_blaster.])
  581. else
  582. AC_DEFINE([BUILD_USB_BLASTER_LIBFTDI], [0], [0 if you don't want libftdi usb_blaster.])
  583. fi
  584. if test $build_usb_blaster_ftd2xx = yes; then
  585. build_bitbang=yes
  586. AC_DEFINE([BUILD_USB_BLASTER_FTD2XX], [1], [1 if you want ftd2xx usb_blaster.])
  587. else
  588. AC_DEFINE([BUILD_USB_BLASTER_FTD2XX], [0], [0 if you don't want ftd2xx usb_blaster.])
  589. fi
  590. if test $build_amtjtagaccel = yes; then
  591. AC_DEFINE([BUILD_AMTJTAGACCEL], [1], [1 if you want the Amontec JTAG-Accelerator driver.])
  592. else
  593. AC_DEFINE([BUILD_AMTJTAGACCEL], [0], [0 if you don't want the Amontec JTAG-Accelerator driver.])
  594. fi
  595. if test $build_gw16012 = yes; then
  596. AC_DEFINE([BUILD_GW16012], [1], [1 if you want the Gateworks GW16012 driver.])
  597. else
  598. AC_DEFINE([BUILD_GW16012], [0], [0 if you don't want the Gateworks GW16012 driver.])
  599. fi
  600. if test $build_presto_libftdi = yes; then
  601. build_bitq=yes
  602. AC_DEFINE([BUILD_PRESTO_LIBFTDI], [1], [1 if you want the ASIX PRESTO driver using libftdi.])
  603. else
  604. AC_DEFINE([BUILD_PRESTO_LIBFTDI], [0], [0 if you don't want the ASIX PRESTO driver using libftdi.])
  605. fi
  606. if test $build_presto_ftd2xx = yes; then
  607. build_bitq=yes
  608. AC_DEFINE([BUILD_PRESTO_FTD2XX], [1], [1 if you want the ASIX PRESTO driver using FTD2XX.])
  609. else
  610. AC_DEFINE([BUILD_PRESTO_FTD2XX], [0], [0 if you don't want the ASIX PRESTO driver using FTD2XX.])
  611. fi
  612. if test $build_bitq = yes; then
  613. AC_DEFINE([BUILD_BITQ], [1], [1 if you want a bitq interface.])
  614. else
  615. AC_DEFINE([BUILD_BITQ], [0], [0 if you don't want a bitq interface.])
  616. fi
  617. if test $build_usbprog = yes; then
  618. AC_DEFINE([BUILD_USBPROG], [1], [1 if you want the usbprog JTAG driver.])
  619. else
  620. AC_DEFINE([BUILD_USBPROG], [0], [0 if you don't want the usbprog JTAG driver.])
  621. fi
  622. if test $build_oocd_trace = yes; then
  623. AC_DEFINE([BUILD_OOCD_TRACE], [1], [1 if you want the OpenOCD+trace ETM capture driver.])
  624. else
  625. AC_DEFINE([BUILD_OOCD_TRACE], [0], [0 if you don't want the OpenOCD+trace ETM capture driver.])
  626. fi
  627. if test $build_jlink = yes; then
  628. AC_DEFINE([BUILD_JLINK], [1], [1 if you want the J-Link JTAG driver.])
  629. else
  630. AC_DEFINE([BUILD_JLINK], [0], [0 if you don't want the J-Link JTAG driver.])
  631. fi
  632. if test $build_vsllink = yes; then
  633. AC_DEFINE([BUILD_VSLLINK], [1], [1 if you want the Versaloon-Link JTAG driver.])
  634. else
  635. AC_DEFINE([BUILD_VSLLINK], [0], [0 if you don't want the Versaloon-Link JTAG driver.])
  636. fi
  637. if test $build_rlink = yes; then
  638. AC_DEFINE([BUILD_RLINK], [1], [1 if you want the RLink JTAG driver.])
  639. else
  640. AC_DEFINE([BUILD_RLINK], [0], [0 if you don't want the RLink JTAG driver.])
  641. fi
  642. if test $build_ulink = yes; then
  643. AC_DEFINE([BUILD_ULINK], [1], [1 if you want the ULINK JTAG driver.])
  644. else
  645. AC_DEFINE([BUILD_ULINK], [0], [0 if you don't want the ULINK JTAG driver.])
  646. fi
  647. if test $build_armjtagew = yes; then
  648. AC_DEFINE([BUILD_ARMJTAGEW], [1], [1 if you want the ARM-JTAG-EW JTAG driver.])
  649. else
  650. AC_DEFINE([BUILD_ARMJTAGEW], [0], [0 if you don't want the ARM-JTAG-EW JTAG driver.])
  651. fi
  652. if test $build_buspirate = yes; then
  653. AC_DEFINE([BUILD_BUSPIRATE], [1], [1 if you want the Buspirate JTAG driver.])
  654. else
  655. AC_DEFINE([BUILD_BUSPIRATE], [0], [0 if you don't want the Buspirate JTAG driver.])
  656. fi
  657. if test "$use_internal_jimtcl" = yes; then
  658. if test -f "$srcdir/jimtcl/configure.ac"; then
  659. AX_CONFIG_SUBDIR_OPTION([jimtcl], [--disable-install-jim])
  660. else
  661. AC_MSG_ERROR([jimtcl not found, run git submodule init and git submodule update.])
  662. fi
  663. fi
  664. if test $build_remote_bitbang = yes; then
  665. build_bitbang=yes
  666. AC_DEFINE([BUILD_REMOTE_BITBANG], [1], [1 if you want the Remote Bitbang JTAG driver.])
  667. else
  668. AC_DEFINE([BUILD_REMOTE_BITBNAG], [0], [0 if you don't want the Remote Bitbang JTAG driver.])
  669. fi
  670. #-- Deal with MingW/Cygwin FTD2XX issues
  671. if test $is_win32 = yes; then
  672. if test "${with_ftd2xx_linux_tardir+set}" = set
  673. then
  674. AC_MSG_ERROR([The option: with_ftd2xx_linux_tardir is for LINUX only.])
  675. fi
  676. if test $build_ft2232_ftd2xx = yes -o $build_presto_ftd2xx = yes -o $build_usb_blaster_ftd2xx = yes ; then
  677. AC_MSG_CHECKING([for ftd2xx.lib exists (win32)])
  678. # if we are given a zipdir...
  679. if test "${with_ftd2xx_win32_zipdir+set}" = set
  680. then
  681. # Set the CFLAGS for "ftd2xx.h"
  682. f=$with_ftd2xx_win32_zipdir/ftd2xx.h
  683. if test ! -f $f ; then
  684. AC_MSG_ERROR([File: $f cannot be found])
  685. fi
  686. CFLAGS="$CFLAGS -I$with_ftd2xx_win32_zipdir"
  687. # And calculate the LDFLAGS for the machine
  688. case "$host_cpu" in
  689. i?86|x86_32)
  690. LDFLAGS="$LDFLAGS -L$with_ftd2xx_win32_zipdir/i386"
  691. LIBS="$LIBS -lftd2xx"
  692. f=$with_ftd2xx_win32_zipdir/i386/ftd2xx.lib
  693. ;;
  694. amd64|x86_64)
  695. LDFLAGS="$LDFLAGS -L$with_ftd2xx_win32_zipdir/amd64"
  696. LIBS="$LIBS -lftd2xx"
  697. f=$with_ftd2xx_win32_zipdir/amd64/ftd2xx.lib
  698. ;;
  699. *)
  700. AC_MSG_ERROR([Unknown Win32 host cpu: $host_cpu])
  701. ;;
  702. esac
  703. if test ! -f $f ; then
  704. AC_MSG_ERROR([Library: $f not found])
  705. fi
  706. else
  707. LIBS="$LIBS -lftd2xx"
  708. AC_MSG_WARN([ASSUMPTION: The (win32) FTDICHIP.COM files: ftd2xx.h and ftd2xx.lib are in a proper place])
  709. fi
  710. fi
  711. fi # win32
  712. if test $is_darwin = yes ; then
  713. if test "${with_ftd2xx_win32_zipdir+set}" = set
  714. then
  715. AC_MSG_ERROR([The option: --with-ftd2xx-win32-zipdir is for win32 only])
  716. fi
  717. if test "${with_ftd2xx_linux_tardir+set}" = set
  718. then
  719. AC_MSG_ERROR([The option: with_ftd2xx_linux_tardir is for LINUX only.])
  720. fi
  721. if test $build_ft2232_ftd2xx = yes -o $build_presto_ftd2xx = yes ; then
  722. AC_MSG_CHECKING([for libftd2xx.a (darwin)])
  723. if test ! -f /usr/local/include/ftd2xx.h ; then
  724. AC_MSG_ERROR([ftd2xx library from FTDICHIP.com seems to be missing, cannot find: /usr/local/include/ftd2xx.h])
  725. fi
  726. CFLAGS="$CFLAGS -I/usr/local/include"
  727. LDFLAGS="$LDFLAGS -L/usr/local/lib"
  728. LIBS="$LIBS -lftd2xx"
  729. AC_MSG_RESULT([-L/usr/local/lib -lftd2xx])
  730. fi
  731. fi # darwin
  732. if test $is_win32 = no && test $is_darwin = no ; then
  733. if test "${with_ftd2xx_win32_zipdir+set}" = set
  734. then
  735. AC_MSG_ERROR([The option: --with-ftd2xx-win32-zipdir is for win32 only])
  736. fi
  737. if test $build_ft2232_ftd2xx = yes -o $build_presto_ftd2xx = yes ; then
  738. # Must be linux
  739. if test $host_os != linux-gnu && test $host_os != linux ; then
  740. AC_MSG_ERROR([The (linux) ftd2xx library from FTDICHIP.com is linux only. Try --enable-ft2232-libftdi instead])
  741. fi
  742. # Are we given a TAR directory?
  743. if test "${with_ftd2xx_linux_tardir+set}" = set
  744. then
  745. AC_MSG_CHECKING([uninstalled ftd2xx distribution])
  746. # The .H file is simple..
  747. FTD2XX_H=$with_ftd2xx_linux_tardir/ftd2xx.h
  748. if test ! -f "${FTD2XX_H}"; then
  749. AC_MSG_ERROR([Option: --with-ftd2xx-linux-tardir appears wrong, cannot find: ${FTD2XX_H}])
  750. fi
  751. CFLAGS="$CFLAGS -I$with_ftd2xx_linux_tardir"
  752. if test $with_ftd2xx_lib = shared; then
  753. FTD2XX_LDFLAGS="-L$with_ftd2xx_linux_tardir"
  754. FTD2XX_LIB="-lftd2xx"
  755. else
  756. # Test #1 - v1.0.x
  757. case "$host_cpu" in
  758. i?86|x86_32)
  759. dir=build/i386;;
  760. amd64|x86_64)
  761. dir=build/x86_64;;
  762. *)
  763. dir=none;;
  764. esac
  765. if test -f "$with_ftd2xx_linux_tardir/$dir/libftd2xx.a"; then
  766. FTD2XX_LDFLAGS="-L$with_ftd2xx_linux_tardir/$dir"
  767. # Also needs -lrt
  768. FTD2XX_LIB="-lftd2xx -lrt"
  769. else
  770. # Test Number2.
  771. # Grr.. perhaps it exists as a version number?
  772. FTD2XX_LIB="$with_ftd2xx_linux_tardir/static_lib/libftd2xx.a.*.*.*"
  773. count=`ls ${FTD2XX_LIB} | wc -l`
  774. if test $count -gt 1 ; then
  775. AC_MSG_ERROR([Multiple libftd2xx.a files found in: $with_ftd2xx_linux_tardir/static_lib sorry cannot handle this yet])
  776. fi
  777. if test $count -ne 1 ; then
  778. AC_MSG_ERROR([Not found: $f, option: --with-ftd2xx-linux-tardir appears to be wrong])
  779. fi
  780. # Because the "-l" rules do not understand version numbers...
  781. # we will just stuff the absolute path onto the LIBS variable
  782. FTD2XX_LIB="`ls ${FTD2XX_LIB}` -lpthread"
  783. FTD2XX_LDFLAGS=""
  784. fi
  785. fi
  786. LDFLAGS="${LDFLAGS} ${FTD2XX_LDFLAGS}"
  787. LIBS="${LIBS} ${FTD2XX_LIB}"
  788. AC_MSG_RESULT([${FTD2XX_LDFLAGS} ${FTD2XX_LIB}])
  789. else
  790. AC_CHECK_HEADER([ftd2xx.h],[],[
  791. AC_MSG_ERROR([You seem to be missing the FTD2xx driver header file.])
  792. ])
  793. AC_SEARCH_LIBS([FT_GetLibraryVersion],[ftd2xx],,[
  794. AC_MSG_ERROR([You appear to be missing the FTD2xx driver library.])
  795. ],[])
  796. fi
  797. fi
  798. fi # linux
  799. if test $build_ft2232_ftd2xx = yes -o $build_presto_ftd2xx = yes; then
  800. # Before we go any further - make sure we can *BUILD* and *RUN*
  801. # a simple app with the "ftd2xx.lib" file - in what ever form we where given
  802. # We should be able to compile, link and run this test program now
  803. AC_MSG_CHECKING([whether ftd2xx library works])
  804. #
  805. # Save the LDFLAGS for later..
  806. LDFLAGS_SAVE=$LDFLAGS
  807. CFLAGS_SAVE=$CFLAGS
  808. _LDFLAGS=`eval echo $LDFLAGS`
  809. _CFLAGS=`eval echo $CFLAGS`
  810. LDFLAGS=$_LDFLAGS
  811. CFLAGS=$_CFLAGS
  812. AC_RUN_IFELSE([AC_LANG_PROGRAM([[
  813. #include "confdefs.h"
  814. #if IS_WIN32
  815. #include "windows.h"
  816. #endif
  817. #include <stdio.h>
  818. #include <ftd2xx.h>
  819. ]], [[
  820. DWORD x;
  821. FT_GetLibraryVersion( &x );
  822. ]])], [
  823. AC_MSG_RESULT([Success!])
  824. ], [
  825. AC_MSG_ERROR([Cannot build & run test program using ftd2xx.lib])
  826. ], [
  827. AC_MSG_RESULT([Skipping as we are cross-compiling])
  828. ])
  829. AC_MSG_CHECKING([for ftd2xx highspeed device support])
  830. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  831. #include "confdefs.h"
  832. #if IS_WIN32
  833. #include "windows.h"
  834. #endif
  835. #include <stdio.h>
  836. #include <ftd2xx.h>
  837. DWORD x = FT_DEVICE_4232H;
  838. ]], [])], [
  839. AC_DEFINE([BUILD_FT2232_HIGHSPEED], [1],
  840. [Support FT2232H/FT4232HS with FTD2XX or libftdi.])
  841. build_ft2232_highspeed=yes
  842. ], [
  843. build_ft2232_highspeed=no
  844. ])
  845. AC_MSG_RESULT([$build_ft2232_highspeed])
  846. if test $build_ft2232_highspeed = no; then
  847. AC_MSG_WARN([You need a newer FTD2XX driver (version 2.04.16 or later).])
  848. fi
  849. LDFLAGS=$LDFLAGS_SAVE
  850. CFLAGS=$CFLAGS_SAVE
  851. fi
  852. if test $build_ft2232_libftdi = yes ; then
  853. # We assume: the package is preinstalled in the proper place
  854. # these present as 2 libraries..
  855. LIBS="$LIBS -lftdi -lusb"
  856. #
  857. # Try to build a small program.
  858. AC_MSG_CHECKING([Build & Link with libftdi...])
  859. LDFLAGS_SAVE=$LDFLAGS
  860. CFLAGS_SAVE=$CFLAGS
  861. _LDFLAGS=`eval echo $LDFLAGS`
  862. _CFLAGS=`eval echo $CFLAGS`
  863. LDFLAGS=$_LDFLAGS
  864. CFLAGS=$_CFLAGS
  865. AC_RUN_IFELSE([AC_LANG_PROGRAM([[
  866. #include <stdio.h>
  867. #include <ftdi.h>
  868. ]], [[
  869. struct ftdi_context *p;
  870. p = ftdi_new();
  871. if( p != NULL ){
  872. return 0;
  873. } else {
  874. fprintf( stderr, "calling ftdi_new() failed\n");
  875. return 1;
  876. }
  877. ]])], [
  878. AC_MSG_RESULT([Success])
  879. ], [
  880. AC_MSG_ERROR([Cannot build & run test program using libftdi])
  881. ], [
  882. AC_MSG_RESULT([Skipping as we are cross-compiling])
  883. ])
  884. AC_MSG_CHECKING([for libftdi highspeed device support])
  885. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  886. #include <stdio.h>
  887. #include <ftdi.h>
  888. ]], [[
  889. enum ftdi_chip_type x = TYPE_2232H;
  890. ]])], [
  891. AC_DEFINE([BUILD_FT2232_HIGHSPEED], [1],
  892. [Support FT2232H/FT4232HS with FTD2XX or libftdi.])
  893. build_ft2232_highspeed=yes
  894. ], [
  895. build_ft2232_highspeed=no
  896. ])
  897. AC_MSG_RESULT([$build_ft2232_highspeed])
  898. if test $build_ft2232_highspeed = no; then
  899. AC_MSG_WARN([You need a newer libftdi version (0.16 or later).])
  900. fi
  901. # Restore the 'unexpanded ldflags'
  902. LDFLAGS=$LDFLAGS_SAVE
  903. CFLAGS=$CFLAGS_SAVE
  904. fi
  905. # check for usb.h when a driver will require it
  906. build_usb=no
  907. if test $build_vsllink = yes -o $build_usbprog = yes -o \
  908. $build_rlink = yes -o $build_ulink = yes -o $build_armjtagew = yes
  909. then
  910. build_usb=yes
  911. fi
  912. # Check for libusb1 ported drivers.
  913. build_usb_ng=no
  914. if test $build_jlink = yes; then
  915. build_usb_ng=yes
  916. fi
  917. # check for libusb library if necessary
  918. use_libusb0=no
  919. use_libusb1=no
  920. if test $build_usb = yes -o $build_usb_ng = yes; then
  921. if test $check_libusb0 = no -a $build_usb_ng = yes; then
  922. AC_CHECK_HEADERS([libusb-1.0/libusb.h],
  923. [AC_DEFINE(HAVE_LIBUSB1, 1, [Define if you have libusb-1.0]) check_libusb0=no use_libusb1=yes ],
  924. [ check_libusb0=yes use_libusb1=no ])
  925. fi
  926. if test $check_libusb0 = yes -o $build_usb = yes; then
  927. AC_CHECK_HEADERS([usb.h], [use_libusb0=yes],
  928. [AC_MSG_ERROR([libusb or libusb-1.0 are required to build some OpenOCD driver(s)])])
  929. fi
  930. fi
  931. AM_CONDITIONAL([RELEASE], [test $build_release = yes])
  932. AM_CONDITIONAL([PARPORT], [test $build_parport = yes])
  933. AM_CONDITIONAL([DUMMY], [test $build_dummy = yes])
  934. AM_CONDITIONAL([GIVEIO], [test x$parport_use_giveio = xyes])
  935. AM_CONDITIONAL([EP93XX], [test $build_ep93xx = yes])
  936. AM_CONDITIONAL([ECOSBOARD], [test $build_ecosboard = yes])
  937. AM_CONDITIONAL([ZY1000], [test $build_zy1000 = yes])
  938. AM_CONDITIONAL([ZY1000_MASTER], [test $build_zy1000_master = yes])
  939. AM_CONDITIONAL([IOUTIL], [test $build_ioutil = yes])
  940. AM_CONDITIONAL([AT91RM9200], [test $build_at91rm9200 = yes])
  941. AM_CONDITIONAL([BITBANG], [test $build_bitbang = yes])
  942. AM_CONDITIONAL([FT2232_LIBFTDI], [test $build_ft2232_libftdi = yes])
  943. AM_CONDITIONAL([FT2232_DRIVER], [test $build_ft2232_ftd2xx = yes -o $build_ft2232_libftdi = yes])
  944. AM_CONDITIONAL([USB_BLASTER_LIBFTDI], [test $build_usb_blaster_libftdi = yes])
  945. AM_CONDITIONAL([USB_BLASTER_DRIVER], [test $build_usb_blaster_ftd2xx = yes -o $build_usb_blaster_libftdi = yes])
  946. AM_CONDITIONAL([AMTJTAGACCEL], [test $build_amtjtagaccel = yes])
  947. AM_CONDITIONAL([GW16012], [test $build_gw16012 = yes])
  948. AM_CONDITIONAL([PRESTO_LIBFTDI], [test $build_presto_libftdi = yes])
  949. AM_CONDITIONAL([PRESTO_DRIVER], [test $build_presto_ftd2xx = yes -o $build_presto_libftdi = yes])
  950. AM_CONDITIONAL([USBPROG], [test $build_usbprog = yes])
  951. AM_CONDITIONAL([OOCD_TRACE], [test $build_oocd_trace = yes])
  952. AM_CONDITIONAL([JLINK], [test $build_jlink = yes])
  953. AM_CONDITIONAL([VSLLINK], [test $build_vsllink = yes])
  954. AM_CONDITIONAL([RLINK], [test $build_rlink = yes])
  955. AM_CONDITIONAL([ULINK], [test $build_ulink = yes])
  956. AM_CONDITIONAL([ARMJTAGEW], [test $build_armjtagew = yes])
  957. AM_CONDITIONAL([REMOTE_BITBANG], [test $build_remote_bitbang = yes])
  958. AM_CONDITIONAL([BUSPIRATE], [test $build_buspirate = yes])
  959. AM_CONDITIONAL([USB], [test $build_usb = yes])
  960. AM_CONDITIONAL([USB_NG], [test $build_usb_ng = yes])
  961. AM_CONDITIONAL([USE_LIBUSB0], [test $use_libusb0 = yes])
  962. AM_CONDITIONAL([USE_LIBUSB1], [test $use_libusb1 = yes])
  963. AM_CONDITIONAL([IS_CYGWIN], [test $is_cygwin = yes])
  964. AM_CONDITIONAL([IS_MINGW], [test $is_mingw = ye]s)
  965. AM_CONDITIONAL([IS_WIN32], [test $is_win32 = ye]s)
  966. AM_CONDITIONAL([IS_DARWIN], [test $is_darwin = ye]s)
  967. AM_CONDITIONAL([BITQ], [test $build_bitq = yes])
  968. AM_CONDITIONAL([MINIDRIVER], [test $build_minidriver = ye]s)
  969. AM_CONDITIONAL([MINIDRIVER_DUMMY], [test $build_minidriver_dummy = yes])
  970. AM_CONDITIONAL([INTERNAL_JIMTCL], [test $use_internal_jimtcl = yes])
  971. # Look for environ alternatives. Possibility #1: is environ in unistd.h or stdlib.h?
  972. AC_MSG_CHECKING([for environ in unistd.h and stdlib.h])
  973. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  974. #define _GNU_SOURCE
  975. #include <unistd.h>
  976. #include <stdlib.h>
  977. ]], [[char **ep = environ;]]
  978. )], [
  979. AC_MSG_RESULT([yes])
  980. has_environ=yes
  981. ], [
  982. AC_MSG_RESULT([no])
  983. # Possibility #2: can environ be found in an available library?
  984. AC_MSG_CHECKING([for extern environ])
  985. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  986. extern char **environ;
  987. ]], [[char **ep = environ;]]
  988. )], [
  989. AC_DEFINE(NEED_ENVIRON_EXTERN, [1], [Must declare 'environ' to use it.])
  990. has_environ=yes
  991. ], [
  992. has_environ=no
  993. ])
  994. AC_MSG_RESULT([${has_environ}])
  995. ])
  996. if test "${has_environ}" != "yes" ; then
  997. AC_MSG_FAILURE([Could not find 'environ' in unistd.h or available libraries.])
  998. fi
  999. AC_DEFINE([_GNU_SOURCE],[1],[Use GNU C library extensions (e.g. stdndup).])
  1000. # set default gcc warnings
  1001. GCC_WARNINGS="-Wall -Wstrict-prototypes -Wformat-security -Wshadow"
  1002. if test "${gcc_wextra}" = yes; then
  1003. GCC_WARNINGS="${GCC_WARNINGS} -Wextra -Wno-unused-parameter"
  1004. GCC_WARNINGS="${GCC_WARNINGS} -Wbad-function-cast"
  1005. GCC_WARNINGS="${GCC_WARNINGS} -Wcast-align"
  1006. GCC_WARNINGS="${GCC_WARNINGS} -Wredundant-decls"
  1007. fi
  1008. if test "${gcc_werror}" = yes; then
  1009. GCC_WARNINGS="${GCC_WARNINGS} -Werror"
  1010. fi
  1011. # overide default gcc cflags
  1012. if test $gcc_warnings = yes; then
  1013. CFLAGS="$CFLAGS $GCC_WARNINGS"
  1014. fi
  1015. # Setup for compiling build tools
  1016. AC_MSG_CHECKING([for a C compiler for build tools])
  1017. if test $cross_compiling = yes; then
  1018. AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
  1019. CFLAGS_FOR_BUILD="-g -O2 $GCC_WARNINGS"
  1020. else
  1021. CC_FOR_BUILD=$CC
  1022. CFLAGS_FOR_BUILD=$CFLAGS
  1023. fi
  1024. AC_MSG_RESULT([$CC_FOR_BUILD])
  1025. AC_SUBST([CC_FOR_BUILD])
  1026. AC_SUBST([CFLAGS_FOR_BUILD])
  1027. AC_MSG_CHECKING([for suffix of executable build tools])
  1028. if test $cross_compiling = yes; then
  1029. cat >conftest.c <<\_______EOF
  1030. int main ()
  1031. {
  1032. exit (0);
  1033. }
  1034. _______EOF
  1035. for i in .exe ""; do
  1036. compile="$CC_FOR_BUILD conftest.c -o conftest$i"
  1037. if AC_TRY_EVAL(compile); then
  1038. if (./conftest) 2>&AC_FD_CC; then
  1039. EXEEXT_FOR_BUILD=$i
  1040. break
  1041. fi
  1042. fi
  1043. done
  1044. rm -f conftest*
  1045. if test "${EXEEXT_FOR_BUILD+set}" != set; then
  1046. AC_MSG_ERROR([Cannot determine suffix of executable build tools])
  1047. fi
  1048. else
  1049. EXEEXT_FOR_BUILD=$EXEEXT
  1050. fi
  1051. AC_MSG_RESULT([$EXEEXT_FOR_BUILD])
  1052. AC_SUBST(EXEEXT_FOR_BUILD)
  1053. AC_OUTPUT(dnl
  1054. Makefile dnl
  1055. src/Makefile dnl
  1056. src/helper/Makefile dnl
  1057. src/jtag/Makefile dnl
  1058. src/jtag/drivers/Makefile dnl
  1059. src/transport/Makefile dnl
  1060. src/xsvf/Makefile dnl
  1061. src/svf/Makefile dnl
  1062. src/target/Makefile dnl
  1063. src/rtos/Makefile dnl
  1064. src/server/Makefile dnl
  1065. src/flash/Makefile dnl
  1066. src/flash/nor/Makefile dnl
  1067. src/flash/nand/Makefile dnl
  1068. src/pld/Makefile dnl
  1069. doc/Makefile dnl
  1070. )