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.
 
 
 
 
 
 

296 lines
9.5 KiB

  1. AC_PREREQ(2.59)
  2. AC_INIT(configure.in)
  3. AC_SEARCH_LIBS([ioperm], [ioperm])
  4. AC_CANONICAL_HOST
  5. AC_CHECK_HEADERS(jtag_minidriver.h)
  6. AC_CHECK_HEADERS(sys/param.h)
  7. AC_CHECK_HEADERS(sys/time.h)
  8. AC_CHECK_HEADERS(elf.h)
  9. AC_CHECK_HEADERS(strings.h)
  10. AC_HEADER_TIME
  11. AC_C_BIGENDIAN
  12. AC_CHECK_FUNCS(strndup)
  13. AC_CHECK_FUNCS(strnlen)
  14. AC_CHECK_FUNCS(gettimeofday)
  15. AC_CHECK_FUNCS(usleep)
  16. build_bitbang=no
  17. build_bitq=no
  18. is_cygwin=no
  19. is_mingw=no
  20. is_win32=no
  21. AC_ARG_ENABLE(parport,
  22. AS_HELP_STRING([--enable-parport], [Enable building the pc parallel port driver]),
  23. [build_parport=$enableval], [build_parport=no])
  24. AC_ARG_ENABLE(dummy,
  25. AS_HELP_STRING([--enable-dummy], [Enable building the dummy port driver]),
  26. [build_dummy=$enableval], [build_dummy=no])
  27. case "${host_cpu}" in
  28. i?86|x86*)
  29. AC_ARG_ENABLE(parport_ppdev,
  30. AS_HELP_STRING([--enable-parport_ppdev], [Enable use of ppdev (/dev/parportN) for parport]),
  31. [parport_use_ppdev=$enableval], [parport_use_ppdev=no])
  32. ;;
  33. *)
  34. parport_use_ppdev=yes
  35. ;;
  36. esac
  37. AC_ARG_ENABLE(ft2232_libftdi,
  38. AS_HELP_STRING([--enable-ft2232_libftdi], [Enable building support for FT2232 based devices using the libftdi driver]),
  39. [build_ft2232_libftdi=$enableval], [build_ft2232_libftdi=no])
  40. AC_ARG_ENABLE(ft2232_ftd2xx,
  41. AS_HELP_STRING([--enable-ft2232_ftd2xx], [Enable building support for FT2232 based devices using the FTD2XX driver]),
  42. [build_ft2232_ftd2xx=$enableval], [build_ft2232_ftd2xx=no])
  43. AC_ARG_ENABLE(amtjtagaccel,
  44. AS_HELP_STRING([--enable-amtjtagaccel], [Enable building the Amontec JTAG-Accelerator driver]),
  45. [build_amtjtagaccel=$enableval], [build_amtjtagaccel=no])
  46. case "${host_cpu}" in
  47. arm*)
  48. AC_ARG_ENABLE(ep93xx,
  49. AS_HELP_STRING([--enable-ep93xx], [Enable building support for EP93xx based SBCs]),
  50. [build_ep93xx=$enableval], [build_ep93xx=no])
  51. AC_ARG_ENABLE(ecosboard,
  52. AS_HELP_STRING([--enable-ecosboard], [Enable building support for eCosBoard based JTAG debugger]),
  53. [build_ecosboard=$enableval], [build_ecosboard=no])
  54. AC_ARG_ENABLE(at91rm9200,
  55. AS_HELP_STRING([--enable-at91rm9200], [Enable building support for AT91RM9200 based SBCs]),
  56. [build_at91rm9200=$enableval], [build_at91rm9200=no])
  57. ;;
  58. *)
  59. build_ep93xx=no
  60. build_at91rm9200=no
  61. build_ecosboard=no
  62. ;;
  63. esac
  64. AC_ARG_ENABLE(gw16012,
  65. AS_HELP_STRING([--enable-gw16012], [Enable building support for the Gateworks GW16012 JTAG Programmer]),
  66. [build_gw16012=$enableval], [build_gw16012=no])
  67. AC_ARG_ENABLE(presto_libftdi,
  68. AS_HELP_STRING([--enable-presto_libftdi], [Enable building support for ASIX Presto Programmer using the libftdi driver]),
  69. [build_presto_libftdi=$enableval], [build_presto_libftdi=no])
  70. AC_ARG_ENABLE(presto_ftd2xx,
  71. AS_HELP_STRING([--enable-presto_ftd2xx], [Enable building support for ASIX Presto Programmer using the FTD2XX driver]),
  72. [build_presto_ftd2xx=$enableval], [build_presto_ftd2xx=no])
  73. AC_ARG_ENABLE(usbprog,
  74. AS_HELP_STRING([--enable-usbprog], [Enable building support for the usbprog JTAG Programmer]),
  75. [build_usbprog=$enableval], [build_usbprog=no])
  76. AC_ARG_ENABLE(oocd_trace,
  77. AS_HELP_STRING([--enable-oocd_trace], [Enable building support for the OpenOCD+trace ETM capture device]),
  78. [build_oocd_trace=$enableval], [build_oocd_trace=no])
  79. AC_ARG_ENABLE(jlink,
  80. AS_HELP_STRING([--enable-jlink], [Enable building support for the Segger J-Link JTAG Programmer]),
  81. [build_jlink=$enableval], [build_jlink=no])
  82. AC_ARG_WITH(ftd2xx,
  83. [AS_HELP_STRING(--with-ftd2xx,
  84. [Where libftd2xx can be found <default=search>])],
  85. [],
  86. with_ftd2xx=search)
  87. case $host in
  88. *-cygwin*)
  89. is_win32=yes
  90. AC_ARG_ENABLE(parport_giveio,
  91. AS_HELP_STRING([--enable-parport_giveio], [Enable use of giveio for parport instead of ioperm]),
  92. [parport_use_giveio=$enableval], [parport_use_giveio=no])
  93. AC_COMPILE_IFELSE(AC_LANG_PROGRAM([],[return __MINGW32__;]),[is_mingw=yes],[is_mingw=no])
  94. if test $is_mingw = yes; then
  95. AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
  96. parport_use_giveio=yes
  97. is_cygwin=no
  98. else
  99. is_cygwin=yes
  100. AC_DEFINE(IS_CYGWIN, 1, [1 if building for Cygwin.])
  101. fi
  102. AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
  103. ;;
  104. *-mingw*)
  105. is_mingw=yes
  106. is_win32=yes
  107. parport_use_giveio=yes
  108. AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
  109. AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
  110. ;;
  111. *)
  112. parport_use_giveio=no
  113. AC_DEFINE(IS_CYGWIN, 0, [0 if not building for Cygwin.])
  114. AC_DEFINE(IS_WIN32, 0, [0 if not building for Win32.])
  115. ;;
  116. esac
  117. if test $build_parport = yes; then
  118. build_bitbang=yes
  119. AC_DEFINE(BUILD_PARPORT, 1, [1 if you want parport.])
  120. else
  121. AC_DEFINE(BUILD_PARPORT, 0, [0 if you don't want parport.])
  122. fi
  123. if test $build_dummy = yes; then
  124. build_bitbang=yes
  125. AC_DEFINE(BUILD_DUMMY, 1, [1 if you want dummy driver.])
  126. else
  127. AC_DEFINE(BUILD_DUMMY, 0, [0 if you don't want dummy driver.])
  128. fi
  129. if test $build_ep93xx = yes; then
  130. build_bitbang=yes
  131. AC_DEFINE(BUILD_EP93XX, 1, [1 if you want ep93xx.])
  132. else
  133. AC_DEFINE(BUILD_EP93XX, 0, [0 if you don't want ep93xx.])
  134. fi
  135. if test $build_ecosboard = yes; then
  136. build_bitbang=yes
  137. AC_DEFINE(BUILD_ECOSBOARD, 1, [1 if you want eCosBoard.])
  138. else
  139. AC_DEFINE(BUILD_ECOSBOARD, 0, [0 if you don't want eCosBoard.])
  140. fi
  141. if test $build_at91rm9200 = yes; then
  142. build_bitbang=yes
  143. AC_DEFINE(BUILD_AT91RM9200, 1, [1 if you want at91rm9200.])
  144. else
  145. AC_DEFINE(BUILD_AT91RM9200, 0, [0 if you don't want at91rm9200.])
  146. fi
  147. if test $parport_use_ppdev = yes; then
  148. AC_DEFINE(PARPORT_USE_PPDEV, 1, [1 if you want parport to use ppdev.])
  149. else
  150. AC_DEFINE(PARPORT_USE_PPDEV, 0, [0 if you don't want parport to use ppdev.])
  151. fi
  152. if test $parport_use_giveio = yes; then
  153. AC_DEFINE(PARPORT_USE_GIVEIO, 1, [1 if you want parport to use giveio.])
  154. else
  155. AC_DEFINE(PARPORT_USE_GIVEIO, 0, [0 if you don't want parport to use giveio.])
  156. fi
  157. if test $build_bitbang = yes; then
  158. AC_DEFINE(BUILD_BITBANG, 1, [1 if you want a bitbang interface.])
  159. else
  160. AC_DEFINE(BUILD_BITBANG, 0, [0 if you don't want a bitbang interface.])
  161. fi
  162. if test $build_ft2232_libftdi = yes; then
  163. AC_DEFINE(BUILD_FT2232_LIBFTDI, 1, [1 if you want libftdi ft2232.])
  164. else
  165. AC_DEFINE(BUILD_FT2232_LIBFTDI, 0, [0 if you don't want libftdi ft2232.])
  166. fi
  167. if test $build_ft2232_ftd2xx = yes; then
  168. AC_DEFINE(BUILD_FT2232_FTD2XX, 1, [1 if you want ftd2xx ft2232.])
  169. else
  170. AC_DEFINE(BUILD_FT2232_FTD2XX, 0, [0 if you don't want ftd2xx ft2232.])
  171. fi
  172. if test $build_amtjtagaccel = yes; then
  173. AC_DEFINE(BUILD_AMTJTAGACCEL, 1, [1 if you want the Amontec JTAG-Accelerator driver.])
  174. else
  175. AC_DEFINE(BUILD_AMTJTAGACCEL, 0, [0 if you don't want the Amontec JTAG-Accelerator driver.])
  176. fi
  177. if test $build_gw16012 = yes; then
  178. AC_DEFINE(BUILD_GW16012, 1, [1 if you want the Gateworks GW16012 driver.])
  179. else
  180. AC_DEFINE(BUILD_GW16012, 0, [0 if you don't want the Gateworks GW16012 driver.])
  181. fi
  182. if test $build_presto_libftdi = yes; then
  183. build_bitq=yes
  184. AC_DEFINE(BUILD_PRESTO_LIBFTDI, 1, [1 if you want the ASIX PRESTO driver using libftdi.])
  185. else
  186. AC_DEFINE(BUILD_PRESTO_LIBFTDI, 0, [0 if you don't want the ASIX PRESTO driver using libftdi.])
  187. fi
  188. if test $build_presto_ftd2xx = yes; then
  189. build_bitq=yes
  190. AC_DEFINE(BUILD_PRESTO_FTD2XX, 1, [1 if you want the ASIX PRESTO driver using FTD2XX.])
  191. else
  192. AC_DEFINE(BUILD_PRESTO_FTD2XX, 0, [0 if you don't want the ASIX PRESTO driver using FTD2XX.])
  193. fi
  194. if test $build_bitq = yes; then
  195. AC_DEFINE(BUILD_BITQ, 1, [1 if you want a bitq interface.])
  196. else
  197. AC_DEFINE(BUILD_BITQ, 0, [0 if you don't want a bitq interface.])
  198. fi
  199. if test $build_usbprog = yes; then
  200. AC_DEFINE(BUILD_USBPROG, 1, [1 if you want the usbprog JTAG driver.])
  201. else
  202. AC_DEFINE(BUILD_USBPROG, 0, [0 if you don't want the usbprog JTAG driver.])
  203. fi
  204. if test $build_oocd_trace = yes; then
  205. AC_DEFINE(BUILD_OOCD_TRACE, 1, [1 if you want the OpenOCD+trace ETM capture driver.])
  206. else
  207. AC_DEFINE(BUILD_OOCD_TRACE, 0, [0 if you don't want the OpenOCD+trace ETM capture driver.])
  208. fi
  209. if test $build_jlink = yes; then
  210. AC_DEFINE(BUILD_JLINK, 1, [1 if you want the J-Link JTAG driver.])
  211. else
  212. AC_DEFINE(BUILD_JLINK, 0, [0 if you don't want the J-Link JTAG driver.])
  213. fi
  214. AM_CONFIG_HEADER(config.h)
  215. AM_INIT_AUTOMAKE(openocd, 1.0)
  216. AM_CONDITIONAL(PARPORT, test $build_parport = yes)
  217. AM_CONDITIONAL(DUMMY, test $build_dummy = yes)
  218. AM_CONDITIONAL(GIVEIO, test $parport_use_giveio = yes)
  219. AM_CONDITIONAL(EP93XX, test $build_ep93xx = yes)
  220. AM_CONDITIONAL(ECOSBOARD, test $build_ecosboard = yes)
  221. AM_CONDITIONAL(AT91RM9200, test $build_at91rm9200 = yes)
  222. AM_CONDITIONAL(BITBANG, test $build_bitbang = yes)
  223. AM_CONDITIONAL(FT2232_LIBFTDI, test $build_ft2232_libftdi = yes)
  224. AM_CONDITIONAL(FT2232_FTD2XX, test $build_ft2232_ftd2xx = yes)
  225. AM_CONDITIONAL(AMTJTAGACCEL, test $build_amtjtagaccel = yes)
  226. AM_CONDITIONAL(GW16012, test $build_gw16012 = yes)
  227. AM_CONDITIONAL(PRESTO_LIBFTDI, test $build_presto_libftdi = yes)
  228. AM_CONDITIONAL(PRESTO_FTD2XX, test $build_presto_ftd2xx = yes)
  229. AM_CONDITIONAL(USBPROG, test $build_usbprog = yes)
  230. AM_CONDITIONAL(OOCD_TRACE, test $build_oocd_trace = yes)
  231. AM_CONDITIONAL(JLINK, test $build_jlink = yes)
  232. AM_CONDITIONAL(IS_CYGWIN, test $is_cygwin = yes)
  233. AM_CONDITIONAL(IS_MINGW, test $is_mingw = yes)
  234. AM_CONDITIONAL(IS_WIN32, test $is_win32 = yes)
  235. AM_CONDITIONAL(FTD2XXDIR, test $with_ftd2xx != search)
  236. AM_CONDITIONAL(BITQ, test $build_bitq = yes)
  237. AC_LANG_C
  238. AC_PROG_CC
  239. AC_PROG_RANLIB
  240. AC_SUBST(WITH_FTD2XX, $with_ftd2xx)
  241. AC_OUTPUT(Makefile src/Makefile src/helper/Makefile src/jtag/Makefile src/xsvf/Makefile src/target/Makefile src/server/Makefile src/flash/Makefile src/pld/Makefile doc/Makefile)