configure.ac 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123
  1. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  2. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  3. m4_define([v_maj], [4])
  4. m4_define([v_min], [12])
  5. m4_define([v_mic], [1])
  6. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  7. m4_define([v_ver], [v_maj.v_min.v_mic-wrk])
  8. m4_define([lt_rev], m4_eval(v_maj + v_min))
  9. m4_define([lt_cur], v_mic)
  10. m4_define([lt_age], v_min)
  11. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  12. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  13. AC_INIT([cgminer], [v_ver], [kano])
  14. AC_PREREQ(2.59)
  15. AC_CANONICAL_SYSTEM
  16. AC_CONFIG_MACRO_DIR([m4])
  17. AC_CONFIG_SRCDIR([cgminer.c])
  18. AC_CONFIG_HEADERS([config.h])
  19. AM_INIT_AUTOMAKE([foreign subdir-objects])
  20. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
  21. AC_USE_SYSTEM_EXTENSIONS
  22. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  23. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  24. m4_ifdef([v_rev], , [m4_define([v_rev], [0])])
  25. m4_ifdef([v_rel], , [m4_define([v_rel], [])])
  26. AC_DEFINE_UNQUOTED(CGMINER_MAJOR_VERSION, [v_maj], [Major version])
  27. AC_DEFINE_UNQUOTED(CGMINER_MINOR_VERSION, [v_min], [Minor version])
  28. AC_DEFINE_UNQUOTED(CGMINER_MINOR_SUBVERSION, [v_mic], [Micro version])
  29. version_info="lt_rev:lt_cur:lt_age"
  30. release_info="v_rel"
  31. AC_SUBST(version_info)
  32. AC_SUBST(release_info)
  33. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  34. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  35. VMAJ=v_maj
  36. AC_SUBST(VMAJ)
  37. AC_CANONICAL_BUILD
  38. AC_CANONICAL_HOST
  39. dnl Make sure anyone changing configure.ac/Makefile.am has a clue
  40. AM_MAINTAINER_MODE
  41. dnl Checks for programs
  42. AC_PROG_CC
  43. gl_EARLY
  44. AC_PROG_GCC_TRADITIONAL
  45. AM_PROG_CC_C_O
  46. # This breaks autoreconf so disable it
  47. # LT_INIT([disable-shared])
  48. gl_INIT
  49. dnl Checks for header files.
  50. AC_HEADER_STDC
  51. AC_CHECK_HEADERS(syslog.h)
  52. AC_FUNC_ALLOCA
  53. have_win32=false
  54. PTHREAD_FLAGS="-lpthread"
  55. LIBZ_LIBS="-lz"
  56. DLOPEN_FLAGS="-ldl"
  57. WS2_LIBS=""
  58. MM_LIBS=""
  59. MATH_LIBS="-lm"
  60. RT_LIBS="-lrt"
  61. case $target in
  62. amd64-*)
  63. have_x86_64=true
  64. ;;
  65. x86_64-*)
  66. have_x86_64=true
  67. ;;
  68. *)
  69. have_x86_64=false
  70. ;;
  71. esac
  72. #CFLAGS="$CFLAGS -Wimplicit-fallthrough=0"
  73. #^ causes problem on gcc 4.9 - pass in from CFLAG if needed
  74. #add CFLAGS "-fcommon" otherwise cause issue compilation on gcc 10.x (raspberry BullEyes)
  75. ##CFLAGS+=" -std=gnu11 -fcommon"
  76. case $target in
  77. *-*-linux-gnu*)
  78. have_linux=true
  79. ;;
  80. *-*-mingw*)
  81. have_win32=true
  82. PTHREAD_FLAGS=""
  83. DLOPEN_FLAGS=""
  84. WS2_LIBS="-lws2_32"
  85. MM_LIBS="-lwinmm"
  86. RT_LIBS=""
  87. #AC_DEFINE([_WIN32_WINNT], [0x0501], "WinNT version for XP+ support")
  88. ;;
  89. powerpc-*-darwin*)
  90. have_darwin=true
  91. CFLAGS="$CFLAGS -faltivec"
  92. PTHREAD_FLAGS=""
  93. RT_LIBS=""
  94. ;;
  95. *-*-darwin*)
  96. have_darwin=true
  97. PTHREAD_FLAGS=""
  98. RT_LIBS=""
  99. ;;
  100. *-*-freebsd*)
  101. PTHREAD_FLAGS=""
  102. DLOPEN_FLAGS=""
  103. RT_LIBS=""
  104. ;;
  105. esac
  106. has_winpthread=false
  107. if test "x$have_win32" = xtrue; then
  108. has_winpthread=true
  109. AC_CHECK_LIB(winpthread, nanosleep, , has_winpthread=false)
  110. PTHREAD_LIBS=-lwinpthread
  111. fi
  112. if test "x$has_winpthread" != xtrue; then
  113. AC_CHECK_LIB(pthread, pthread_create, ,
  114. AC_MSG_ERROR([Could not find pthread library - please install libpthread]))
  115. PTHREAD_LIBS=-lpthread
  116. fi
  117. # Drivers that are designed to be run on dedicated hardware should set standalone to yes
  118. # All drivers should prepend an x to the drivercount
  119. standalone="no"
  120. drivercount=""
  121. ants1="no"
  122. AC_ARG_ENABLE([ants1],
  123. [AC_HELP_STRING([--enable-ants1],[Compile support for Antminer S1 Bitmain STANDALONE(default disabled)])],
  124. [ants1=$enableval]
  125. )
  126. if test "x$ants1" = xyes; then
  127. AC_DEFINE([USE_ANT_S1], [1], [Defined to 1 if Antminer S1 Bitmain support is wanted])
  128. drivercount=x$drivercount
  129. standalone="yes"
  130. fi
  131. AM_CONDITIONAL([HAS_ANT_S1], [test x$ants1 = xyes])
  132. ants2="no"
  133. AC_ARG_ENABLE([ants2],
  134. [AC_HELP_STRING([--enable-ants2],[Compile support for Antminer S2 Bitmain STANDALONE(default disabled)])],
  135. [ants2=$enableval]
  136. )
  137. if test "x$ants2" = xyes; then
  138. AC_DEFINE([USE_ANT_S2], [1], [Defined to 1 if Antminer S2 Bitmain support is wanted])
  139. drivercount=x$drivercount
  140. standalone="yes"
  141. fi
  142. AM_CONDITIONAL([HAS_ANT_S2], [test x$ants2 = xyes])
  143. ants3="no"
  144. AC_ARG_ENABLE([ants3],
  145. [AC_HELP_STRING([--enable-ants3],[Compile support for Antminer S3 Bitmain STANDALONE(default disabled)])],
  146. [ants3=$enableval]
  147. )
  148. if test "x$ants3" = xyes; then
  149. AC_DEFINE([USE_ANT_S3], [1], [Defined to 1 if Antminer S3 Bitmain support is wanted])
  150. drivercount=x$drivercount
  151. standalone="yes"
  152. fi
  153. AM_CONDITIONAL([HAS_ANT_S3], [test x$ants3 = xyes])
  154. avalon="no"
  155. AC_ARG_ENABLE([avalon],
  156. [AC_HELP_STRING([--enable-avalon],[Compile support for Avalon (default disabled)])],
  157. [avalon=$enableval]
  158. )
  159. if test "x$avalon" = xyes; then
  160. AC_DEFINE([USE_AVALON], [1], [Defined to 1 if Avalon support is wanted])
  161. drivercount=x$drivercount
  162. fi
  163. AM_CONDITIONAL([HAS_AVALON], [test x$avalon = xyes])
  164. avalon2="no"
  165. AC_ARG_ENABLE([avalon2],
  166. [AC_HELP_STRING([--enable-avalon2],[Compile support for Avalon2 (default disabled)])],
  167. [avalon2=$enableval]
  168. )
  169. if test "x$avalon2" = xyes; then
  170. AC_DEFINE([USE_AVALON2], [1], [Defined to 1 if Avalon2 support is wanted])
  171. drivercount=x$drivercount
  172. fi
  173. AM_CONDITIONAL([HAS_AVALON2], [test x$avalon2 = xyes])
  174. avalon4="no"
  175. AC_ARG_ENABLE([avalon4],
  176. [AC_HELP_STRING([--enable-avalon4],[Compile support for Avalon4 (default disabled)])],
  177. [avalon4=$enableval]
  178. )
  179. if test "x$avalon4" = xyes; then
  180. AC_DEFINE([USE_AVALON4], [1], [Defined to 1 if Avalon4 support is wanted])
  181. fi
  182. AM_CONDITIONAL([HAS_AVALON4], [test x$avalon4 = xyes])
  183. avalon7="no"
  184. AC_ARG_ENABLE([avalon7],
  185. [AC_HELP_STRING([--enable-avalon7],[Compile support for Avalon7 (default disabled)])],
  186. [avalon7=$enableval]
  187. )
  188. if test "x$avalon7" = xyes; then
  189. AC_DEFINE([USE_AVALON7], [1], [Defined to 1 if Avalon7 support is wanted])
  190. fi
  191. AM_CONDITIONAL([HAS_AVALON7], [test x$avalon7 = xyes])
  192. avalon8="no"
  193. AC_ARG_ENABLE([avalon8],
  194. [AC_HELP_STRING([--enable-avalon8],[Compile support for Avalon8 (default disabled)])],
  195. [avalon8=$enableval]
  196. )
  197. if test "x$avalon8" = xyes; then
  198. AC_DEFINE([USE_AVALON8], [1], [Defined to 1 if Avalon8 support is wanted])
  199. fi
  200. AM_CONDITIONAL([HAS_AVALON8], [test x$avalon8 = xyes])
  201. avalon9="no"
  202. AC_ARG_ENABLE([avalon9],
  203. [AC_HELP_STRING([--enable-avalon9],[Compile support for Avalon9 (default disabled)])],
  204. [avalon9=$enableval]
  205. )
  206. if test "x$avalon9" = xyes; then
  207. AC_DEFINE([USE_AVALON9], [1], [Defined to 1 if Avalon9 support is wanted])
  208. fi
  209. AM_CONDITIONAL([HAS_AVALON9], [test x$avalon9 = xyes])
  210. avalonlc3="no"
  211. AC_ARG_ENABLE([avalonlc3],
  212. [AC_HELP_STRING([--enable-avalonlc3],[Compile support for Avalonlc3 (default disabled)])],
  213. [avalonlc3=$enableval]
  214. )
  215. if test "x$avalonlc3" = xyes; then
  216. AC_DEFINE([USE_AVALONLC3], [1], [Defined to 1 if Avalonlc3 support is wanted])
  217. fi
  218. AM_CONDITIONAL([HAS_AVALONLC3], [test x$avalonlc3 = xyes])
  219. avalon_miner="no"
  220. AC_ARG_ENABLE([avalon_miner],
  221. [AC_HELP_STRING([--enable-avalon-miner],[Compile support for Avalon miner(default disabled)])],
  222. [avalon_miner=$enableval]
  223. )
  224. if test "x$avalon_miner" = xyes; then
  225. AC_DEFINE([USE_AVALON_MINER], [1], [Defined to 1 if Avalon miner support is wanted])
  226. fi
  227. AM_CONDITIONAL([HAS_AVALON_MINER], [test x$avalon_miner = xyes])
  228. bab="no"
  229. AC_ARG_ENABLE([bab],
  230. [AC_HELP_STRING([--enable-bab],[Compile support for BlackArrow Bitfury STANDALONE(default disabled)])],
  231. [bab=$enableval]
  232. )
  233. if test "x$bab" = xyes; then
  234. AC_DEFINE([USE_BAB], [1], [Defined to 1 if BlackArrow Bitfury support is wanted])
  235. drivercount=x$drivercount
  236. standalone="yes"
  237. fi
  238. AM_CONDITIONAL([HAS_BAB], [test x$bab = xyes])
  239. bflsc="no"
  240. AC_ARG_ENABLE([bflsc],
  241. [AC_HELP_STRING([--enable-bflsc],[Compile support for BFL ASICs (default disabled)])],
  242. [bflsc=$enableval]
  243. )
  244. if test "x$bflsc" = xyes; then
  245. AC_DEFINE([USE_BFLSC], [1], [Defined to 1 if BFL ASIC support is wanted])
  246. drivercount=x$drivercount
  247. fi
  248. AM_CONDITIONAL([HAS_BFLSC], [test x$bflsc = xyes])
  249. bitforce="no"
  250. AC_ARG_ENABLE([bitforce],
  251. [AC_HELP_STRING([--enable-bitforce],[Compile support for BitForce FPGAs (default disabled)])],
  252. [bitforce=$enableval]
  253. )
  254. if test "x$bitforce" = xyes; then
  255. AC_DEFINE([USE_BITFORCE], [1], [Defined to 1 if BitForce support is wanted])
  256. drivercount=x$drivercount
  257. fi
  258. AM_CONDITIONAL([HAS_BITFORCE], [test x$bitforce = xyes])
  259. bitfury="no"
  260. AC_ARG_ENABLE([bitfury],
  261. [AC_HELP_STRING([--enable-bitfury],[Compile support for BitFury ASICs (default disabled)])],
  262. [bitfury=$enableval]
  263. )
  264. if test "x$bitfury" = xyes; then
  265. AC_DEFINE([USE_BITFURY], [1], [Defined to 1 if BitFury ASIC support is wanted])
  266. drivercount=x$drivercount
  267. fi
  268. AM_CONDITIONAL([HAS_BITFURY], [test x$bitfury = xyes])
  269. bitfury16="no"
  270. AC_ARG_ENABLE([bitfury16],
  271. [AC_HELP_STRING([--enable-bitfury16],[Compile support for BitFury 16nm ASICs STANDALONE(default disabled)])],
  272. [bitfury16=$enableval]
  273. )
  274. if test "x$bitfury16" = xyes; then
  275. AC_DEFINE([USE_BITFURY16], [1], [Defined to 1 if BitFury 16nm ASIC support is wanted])
  276. drivercount=x$drivercount
  277. standalone="yes"
  278. fi
  279. AM_CONDITIONAL([HAS_BITFURY16], [test x$bitfury16 = xyes])
  280. bitmain_soc="no"
  281. bitmain_R4="no"
  282. bitmain_S9="no"
  283. bitmain_T9="no"
  284. bitmain_T9P="no"
  285. AC_ARG_ENABLE([bitmain_soc],
  286. [AC_HELP_STRING([--enable-bitmain_soc],[Compile support for Bitmain ASICs STANDALONE(default disabled)])],
  287. [bitmain_soc=$enableval]
  288. )
  289. AC_ARG_ENABLE([bitmain_R4],
  290. [AC_HELP_STRING([--enable-bitmain_R4],[Compile support for Bitmain R4])],
  291. [bitmain_R4=$enableval]
  292. )
  293. AC_ARG_ENABLE([bitmain_S9],
  294. [AC_HELP_STRING([--enable-bitmain_S9],[Compile support for Bitmain S9])],
  295. [bitmain_S9=$enableval]
  296. )
  297. AC_ARG_ENABLE([bitmain_T9],
  298. [AC_HELP_STRING([--enable-bitmain_T9],[Compile support for Bitmain T9])],
  299. [bitmain_T9=$enableval]
  300. )
  301. AC_ARG_ENABLE([bitmain_T9P],
  302. [AC_HELP_STRING([--enable-bitmain_T9P],[Compile support for Bitmain T9+])],
  303. [bitmain_T9P=$enableval]
  304. )
  305. if test "x$bitmain_soc" = xyes; then
  306. AC_DEFINE([USE_BITMAIN_SOC], [1], [Defined to 1 if Bitmain ASICs support is wanted])
  307. if test "x$bitmain_R4" = xyes; then
  308. AC_DEFINE([R4], [1], [Defined to 1 for R4])
  309. fi
  310. if test "x$bitmain_S9" = xyes; then
  311. AC_DEFINE([S9_63], [1], [Defined to 1 for S9])
  312. fi
  313. if test "x$bitmain_T9" = xyes; then
  314. AC_DEFINE([S9_PLUS], [1], [Defined to 1 for T9])
  315. fi
  316. if test "x$bitmain_T9P" = xyes; then
  317. AC_DEFINE([T9_18], [1], [Defined to 1 for T9+])
  318. fi
  319. if test "x$bitmain_R4$bitmain_S9$bitmain_T9$bitmain_T9P" = xnononono; then
  320. AC_DEFINE([S9_63], [1], [Defined to 1 for default])
  321. fi
  322. drivercount=x$drivercount
  323. standalone="yes"
  324. fi
  325. AM_CONDITIONAL([HAS_BITMAIN_SOC], [test x$bitmain_soc = xyes])
  326. bitmine_A1="no"
  327. AC_ARG_ENABLE([bitmine_A1],
  328. [AC_HELP_STRING([--enable-bitmine_A1],[Compile support for Bitmine.ch A1 ASICs STANDALONE(default disabled)])],
  329. [bitmine_A1=$enableval]
  330. )
  331. if test "x$bitmine_A1" = xyes; then
  332. AC_DEFINE([USE_BITMINE_A1], [1], [Defined to 1 if Bitmine A1 support is wanted])
  333. drivercount=x$drivercount
  334. standalone="yes"
  335. fi
  336. AM_CONDITIONAL([HAS_BITMINE_A1], [test x$bitmine_A1 = xyes])
  337. blockerupter="no"
  338. AC_ARG_ENABLE([blockerupter],
  339. [AC_HELP_STRING([--enable-blockerupter],[Compile support for BlockErupter BROKEN DRIVER (default disabled)])],
  340. [blockerupter=$enableval]
  341. )
  342. if test "x$blockerupter" = xyes; then
  343. AC_DEFINE([USE_BLOCKERUPTER], [1], [Defined to 1 if BlockErupter support is wanted])
  344. drivercount=x$drivercount
  345. fi
  346. AM_CONDITIONAL([HAS_BLOCKERUPTER], [test x$blockerupter = xyes])
  347. cointerra="no"
  348. AC_ARG_ENABLE([cointerra],
  349. [AC_HELP_STRING([--enable-cointerra],[Compile support for Cointerra ASICs (default disabled)])],
  350. [cointerra=$enableval]
  351. )
  352. if test "x$cointerra" = xyes; then
  353. AC_DEFINE([USE_COINTERRA], [1], [Defined to 1 if Cointerra support is wanted])
  354. drivercount=x$drivercount
  355. fi
  356. AM_CONDITIONAL([HAS_COINTERRA], [test x$cointerra = xyes])
  357. dragonmint_t1="no"
  358. AC_ARG_ENABLE([dragonmint_t1],
  359. [AC_HELP_STRING([--enable-dragonmint_t1],[Compile support for Dragonmint T1 ASICs STANDALONE(default disabled)])],
  360. [dragonmint_t1=$enableval]
  361. )
  362. if test "x$dragonmint_t1" = xyes; then
  363. AC_DEFINE([USE_DRAGONMINT_T1], [1], [Defined to 1 if Dragonmint T1 support is wanted])
  364. AC_DEFINE([USE_VMASK], [1], [Defined to 1 if version mask rolling is wanted])
  365. drivercount=x$drivercount
  366. standalone="yes"
  367. fi
  368. AM_CONDITIONAL([HAS_DRAGONMINT_T1], [test x$dragonmint_t1 = xyes])
  369. drillbit="no"
  370. AC_ARG_ENABLE([drillbit],
  371. [AC_HELP_STRING([--enable-drillbit],[Compile support for Drillbit BitFury ASICs (default disabled)])],
  372. [drillbit=$enableval]
  373. )
  374. if test "x$drillbit" = xyes; then
  375. AC_DEFINE([USE_DRILLBIT], [1], [Defined to 1 if Drillbit BitFury support is wanted])
  376. drivercount=x$drivercount
  377. fi
  378. AM_CONDITIONAL([HAS_DRILLBIT], [test x$drillbit = xyes])
  379. gekko="no"
  380. AC_ARG_ENABLE([gekko],
  381. [AC_HELP_STRING([--enable-gekko],[Compile support for GekkoScience (default disabled)])],
  382. [gekko=$enableval]
  383. )
  384. if test "x$gekko" = xyes; then
  385. AC_DEFINE([USE_GEKKO], [1], [Defined to 1 if GekkoScience support is wanted])
  386. AC_DEFINE([USE_VMASK], [1], [Defined to 1 if version mask rolling is wanted])
  387. drivercount=x$drivercount
  388. fi
  389. AM_CONDITIONAL([HAS_GEKKO], [test x$gekko = xyes])
  390. hashfast="no"
  391. AC_ARG_ENABLE([hashfast],
  392. [AC_HELP_STRING([--enable-hashfast],[Compile support for Hashfast (default disabled)])],
  393. [hashfast=$enableval]
  394. )
  395. if test "x$hashfast" = xyes; then
  396. AC_DEFINE([USE_HASHFAST], [1], [Defined to 1 if Hashfast support is wanted])
  397. drivercount=x$drivercount
  398. fi
  399. AM_CONDITIONAL([HAS_HASHFAST], [test x$hashfast = xyes])
  400. hashratio="no"
  401. AC_ARG_ENABLE([hashratio],
  402. [AC_HELP_STRING([--enable-hashratio],[Compile support for Hashratio (default disabled)])],
  403. [hashratio=$enableval]
  404. )
  405. if test "x$hashratio" = xyes; then
  406. AC_DEFINE([USE_HASHRATIO], [1], [Defined to 1 if Hashratiosupport is wanted])
  407. drivercount=x$drivercount
  408. fi
  409. AM_CONDITIONAL([HAS_HASHRATIO], [test x$hashratio = xyes])
  410. icarus="no"
  411. AC_ARG_ENABLE([icarus],
  412. [AC_HELP_STRING([--enable-icarus],[Compile support for Icarus (default disabled)])],
  413. [icarus=$enableval]
  414. )
  415. if test "x$icarus" = xyes; then
  416. AC_DEFINE([USE_ICARUS], [1], [Defined to 1 if Icarus support is wanted])
  417. drivercount=x$drivercount
  418. fi
  419. AM_CONDITIONAL([HAS_ICARUS], [test x$icarus = xyes])
  420. klondike="no"
  421. AC_ARG_ENABLE([klondike],
  422. [AC_HELP_STRING([--enable-klondike],[Compile support for Klondike (default disabled)])],
  423. [klondike=$enableval]
  424. )
  425. if test "x$klondike" = xyes; then
  426. AC_DEFINE([USE_KLONDIKE], [1], [Defined to 1 if Klondike support is wanted])
  427. drivercount=x$drivercount
  428. fi
  429. AM_CONDITIONAL([HAS_KLONDIKE], [test x$klondike = xyes])
  430. knc="no"
  431. AC_ARG_ENABLE([knc],
  432. [AC_HELP_STRING([--enable-knc],[Compile support for KnC miners STANDALONE(default disabled)])],
  433. [knc=$enableval]
  434. )
  435. if test "x$knc" = xyes; then
  436. AC_DEFINE([USE_KNC], [1], [Defined to 1 if KnC miner support is wanted])
  437. drivercount=x$drivercount
  438. standalone="yes"
  439. fi
  440. AM_CONDITIONAL([HAS_KNC], [test x$knc = xyes])
  441. minion="no"
  442. AC_ARG_ENABLE([minion],
  443. [AC_HELP_STRING([--enable-minion],[Compile support for Minion BlackArrow ASIC STANDALONE(default disabled)])],
  444. [minion=$enableval]
  445. )
  446. if test "x$minion" = xyes; then
  447. AC_DEFINE([USE_MINION], [1], [Defined to 1 if Minion BlackArrow ASIC support is wanted])
  448. drivercount=x$drivercount
  449. standalone="yes"
  450. fi
  451. AM_CONDITIONAL([HAS_MINION], [test x$minion = xyes])
  452. modminer="no"
  453. AC_ARG_ENABLE([modminer],
  454. [AC_HELP_STRING([--enable-modminer],[Compile support for ModMiner FPGAs(default disabled)])],
  455. [modminer=$enableval]
  456. )
  457. if test "x$modminer" = xyes; then
  458. AC_DEFINE([USE_MODMINER], [1], [Defined to 1 if ModMiner support is wanted])
  459. drivercount=x$drivercount
  460. fi
  461. AM_CONDITIONAL([HAS_MODMINER], [test x$modminer = xyes])
  462. sp10="no"
  463. AC_ARG_ENABLE([sp10],
  464. [AC_HELP_STRING([--enable-sp10],[Compile support for Spondoolies SP10 STANDALONE(default disabled)])],
  465. [sp10=$enableval]
  466. )
  467. if test "x$sp10" = xyes; then
  468. AC_DEFINE([USE_SP10], [1], [Defined to 1 if Spondoolies SP10 support is wanted])
  469. drivercount=x$drivercount
  470. standalone="yes"
  471. fi
  472. AM_CONDITIONAL([HAS_SP10], [test x$sp10 = xyes])
  473. sp30="no"
  474. AC_ARG_ENABLE([sp30],
  475. [AC_HELP_STRING([--enable-sp30],[Compile support for Spondoolies SP30 STANDALONE(default disabled)])],
  476. [sp30=$enableval]
  477. )
  478. if test "x$sp30" = xyes; then
  479. AC_DEFINE([USE_SP30], [1], [Defined to 1 if SP30 support is wanted])
  480. drivercount=x$drivercount
  481. standalone="yes"
  482. fi
  483. AM_CONDITIONAL([HAS_SP30], [test x$sp30 = xyes])
  484. forcecombo="no"
  485. AC_ARG_ENABLE([forcecombo],
  486. [AC_HELP_STRING([--enable-forcecombo],[Allow combinations of drivers not intended to be built together(default disabled)])],
  487. [forcecombo=$enableval]
  488. )
  489. if test "x$forcecombo" = xyes; then
  490. standalone="no"
  491. fi
  492. curses="auto"
  493. AC_ARG_WITH([curses],
  494. [AC_HELP_STRING([--without-curses],[Compile support for curses TUI (default enabled)])],
  495. [curses=$withval]
  496. )
  497. if test "x$curses" = "xno"; then
  498. cursesmsg='User specified --without-curses. TUI support DISABLED'
  499. else
  500. AC_SEARCH_LIBS(setupterm, pdcurses ncurses pdcurses, [
  501. curses=yes
  502. cursesmsg="Enabled: ${ac_cv_search_setupterm}"
  503. AC_DEFINE([HAVE_CURSES], [1], [Defined to 1 if curses TUI support is wanted])
  504. ], [
  505. if test "x$curses" = "xyes"; then
  506. AC_MSG_ERROR([Could not find curses library - please install libncurses-dev or pdcurses-dev (or configure --without-curses)])
  507. else
  508. AC_MSG_WARN([Could not find curses library - if you want a TUI, install libncurses-dev or pdcurses-dev])
  509. curses=no
  510. cursesmsg='NOT FOUND. TUI support DISABLED'
  511. fi
  512. ])
  513. fi
  514. #Add a new device to this list if it needs libusb, along with a no on the end.
  515. if test x$avalon$avalon2$avalon4$avalon7$avalon8$avalon9$avalonlc3$avalon_miner$bitforce$bitfury$blockerupter$gekko$modminer$bflsc$icarus$hashfast$hashratio$klondike$drillbit$cointerra$ants1$ants3 != xnononononononononononononononononononononono; then
  516. want_usbutils=true
  517. else
  518. want_usbutils=false
  519. fi
  520. if test x$bitfury != xno; then
  521. want_libbitfury=true
  522. else
  523. want_libbitfury=false
  524. fi
  525. if test x$avalon2$avalon4$avalon7$avalon8$avalon9$avalonlc3$avalon_miner$gekko$hashratio != xnononononononono; then
  526. want_crc16=true
  527. else
  528. want_crc16=false
  529. fi
  530. AM_CONDITIONAL([NEED_FPGAUTILS], [test x$modminer != xno])
  531. AM_CONDITIONAL([WANT_USBUTILS], [test x$want_usbutils != xfalse])
  532. AM_CONDITIONAL([NEED_LIBZ], [test x$bitmain_soc != xno])
  533. AM_CONDITIONAL([WANT_LIBBITFURY], [test x$want_libbitfury != xfalse])
  534. AM_CONDITIONAL([HAVE_CURSES], [test x$curses = xyes])
  535. AM_CONDITIONAL([HAVE_WINDOWS], [test x$have_win32 = xtrue])
  536. AM_CONDITIONAL([HAVE_x86_64], [test x$have_x86_64 = xtrue])
  537. AM_CONDITIONAL([WANT_CRC16], [test x$want_crc16 != xfalse])
  538. AM_CONDITIONAL([NEED_I2C_CONTEXT], [test x$avalon4$avalon7$avalon8$avalon9$avalonlc3 != xnonononono])
  539. AM_CONDITIONAL([SUPPORT_SSP], [test x$avalon7 != xno])
  540. if test "x$want_usbutils" != xfalse; then
  541. dlibusb="no"
  542. AC_DEFINE([USE_USBUTILS], [1], [Defined to 1 if usbutils support required])
  543. AC_ARG_WITH([system-libusb],
  544. [AC_HELP_STRING([--with-system-libusb],[Compile against dynamic system libusb. (Default use included static libusb)])],
  545. [dlibusb=$withval]
  546. )
  547. if test "x$dlibusb" != xno; then
  548. case $target in
  549. *-*-freebsd*)
  550. LIBUSB_LIBS="-lusb"
  551. LIBUSB_CFLAGS=""
  552. AC_DEFINE(HAVE_LIBUSB, 1, [Define if you have libusb-1.0])
  553. ;;
  554. *)
  555. PKG_CHECK_MODULES(LIBUSB, libusb-1.0, [AC_DEFINE(HAVE_LIBUSB, 1, [Define if you have libusb-1.0])], [AC_MSG_ERROR([Could not find usb library - please install libusb-1.0])])
  556. ;;
  557. esac
  558. else
  559. AC_CONFIG_SUBDIRS([compat/libusb-1.0])
  560. LIBUSB_LIBS="compat/libusb-1.0/libusb/.libs/libusb-1.0.a"
  561. if test "x$have_linux" = "xtrue"; then
  562. AC_ARG_ENABLE([udev],
  563. [AC_HELP_STRING([--disable-udev],[Disable building libusb with udev])],
  564. [udev=$enableval]
  565. )
  566. if test "x$udev" != xno; then
  567. LIBUSB_LIBS+=" -ludev"
  568. fi
  569. fi
  570. if test "x$have_darwin" = "xtrue"; then
  571. LIBUSB_LIBS+=" -lobjc"
  572. LDFLAGS+=" -framework CoreFoundation -framework IOKit"
  573. fi
  574. fi
  575. else
  576. LIBUSB_LIBS=""
  577. fi
  578. AM_CONDITIONAL([WANT_STATIC_LIBUSB], [test x$dlibusb = xno])
  579. djansson="no"
  580. AC_ARG_WITH([system-jansson],
  581. [AC_HELP_STRING([--with-system-jansson],[Not Recommended! Compile against dynamic system jansson. (Default use included static jansson)])],
  582. [djansson=$withval]
  583. )
  584. if test "x$djansson" != xno; then
  585. case $target in
  586. *-*-freebsd*)
  587. JANSSON_LIBS="-ljansson"
  588. JANSSON_CFLAGS=""
  589. AC_DEFINE(HAVE_JANSSON, 1, [Define if you have jansson >= 2.6])
  590. ;;
  591. *)
  592. PKG_CHECK_MODULES(JANSSON, jansson >= 2.6, [AC_DEFINE(HAVE_JANSSON, 1, [Define if you have jansson >= 2.6])], [AC_MSG_ERROR([Could not find jansson library - please install jansson >= 2.6])])
  593. ;;
  594. esac
  595. else
  596. AC_CONFIG_SUBDIRS([compat/jansson-2.9])
  597. JANSSON_LIBS="compat/jansson-2.9/src/.libs/libjansson.a"
  598. fi
  599. AM_CONDITIONAL([WANT_STATIC_JANSSON], [test x$djansson = xno])
  600. AC_CHECK_HEADERS([uthash.h])
  601. PKG_PROG_PKG_CONFIG()
  602. if test "x$have_cgminer_sdk" = "xtrue"; then
  603. if test "x$have_x86_64" = xtrue; then
  604. ARCH_DIR=x86_64
  605. else
  606. ARCH_DIR=x86
  607. fi
  608. PKG_CONFIG="${PKG_CONFIG:-pkg-config} --define-variable=arch=$ARCH_DIR --define-variable=target=$target --define-variable=cgminersdkdir=$CGMINER_SDK"
  609. PKG_CONFIG_PATH="$CGMINER_SDK/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
  610. fi
  611. AC_SUBST(LIBUSB_LIBS)
  612. AC_SUBST(LIBUSB_CFLAGS)
  613. AC_ARG_ENABLE([libcurl],
  614. [AC_HELP_STRING([--disable-libcurl],[Disable building with libcurl for GBT support])],
  615. [libcurl=$enableval]
  616. )
  617. static_curl="no"
  618. if test "x$libcurl" != xno; then
  619. if test "x$have_win32" != xtrue; then
  620. PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.25.0], [AC_DEFINE([CURL_HAS_KEEPALIVE], [1], [Defined if version of curl supports keepalive.])],
  621. [PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.18.2], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.18.2])])])
  622. else
  623. PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.25.0], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.25.0])])
  624. AC_DEFINE([CURL_HAS_KEEPALIVE], [1])
  625. static_curl="yes"
  626. fi
  627. AC_DEFINE([HAVE_LIBCURL], [1], [Defined to 1 if libcurl support built in])
  628. else
  629. LIBCURL_LIBS=""
  630. fi
  631. AC_SUBST(LIBCURL_LIBS)
  632. AM_CONDITIONAL([STATIC_CURL], [test x$static_curl = xyes])
  633. libsystemd="no"
  634. AC_ARG_ENABLE([libsystemd],
  635. [AC_HELP_STRING([--enable-libsystemd],[Enable building with libsystemd for watchdog and status notification support])],
  636. [libsystemd=$enableval]
  637. )
  638. if test "x$libsystemd" != xno; then
  639. if test "x$have_linux" != xtrue; then
  640. AC_MSG_ERROR([libsystemd is only supported on Linux platforms])
  641. fi
  642. PKG_CHECK_MODULES(LIBSYSTEMD, libsystemd, , AC_MSG_ERROR(Could not find libsystemd dev))
  643. AC_DEFINE([USE_LIBSYSTEMD], [1], [Defined to 1 if libsystemd support is wanted])
  644. else
  645. LIBSYSTEMD_LIBS=""
  646. fi
  647. extranonce="yes"
  648. AC_ARG_ENABLE([extranonce],
  649. [AC_HELP_STRING([--disable-extranonce],[Disable extranonce.subscribe support ])],
  650. [extranonce=$enableval]
  651. )
  652. AC_ARG_ENABLE([extranonce],
  653. [AC_HELP_STRING([--enable-extranonce],[Enable extranonce.subscribe support (NiceHash)])],
  654. [extranonce=$enableval]
  655. )
  656. if test "x$extranonce" != xno; then
  657. AC_DEFINE([USE_XTRANONCE], [1], [Defined to 1 if extranonce.subscribe support is wanted])
  658. fi
  659. #check execv signature
  660. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  661. #include <process.h>
  662. int execv(const char*, const char*const*);
  663. ])],
  664. AC_DEFINE([EXECV_2ND_ARG_TYPE], [const char* const*], [int execv(const char*, const char*const*);]),
  665. AC_DEFINE([EXECV_2ND_ARG_TYPE], [char* const*], [int execv(const char*, char*const*);]))
  666. dnl CCAN wants to know a lot of vars.
  667. # All the configuration checks. Regrettably, the __attribute__ checks will
  668. # give false positives on old GCCs, since they just cause warnings. But that's
  669. # fairly harmless.
  670. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((cold)) cleanup(void) { }])],
  671. AC_DEFINE([HAVE_ATTRIBUTE_COLD], [1],
  672. [Define if __attribute__((cold))]))
  673. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((const)) cleanup(void) { }])],
  674. AC_DEFINE([HAVE_ATTRIBUTE_CONST], [1],
  675. [Define if __attribute__((const))]))
  676. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((noreturn)) cleanup(void) { exit(1); }])],
  677. AC_DEFINE([HAVE_ATTRIBUTE_NORETURN], [1],
  678. [Define if __attribute__((noreturn))]))
  679. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((format(__printf__, 1, 2))) cleanup(const char *fmt, ...) { }])],
  680. AC_DEFINE([HAVE_ATTRIBUTE_PRINTF], [1],
  681. [Define if __attribute__((format(__printf__)))]))
  682. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((unused)) cleanup(void) { }])],
  683. AC_DEFINE([HAVE_ATTRIBUTE_UNUSED], [1],
  684. [Define if __attribute__((unused))]))
  685. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((used)) cleanup(void) { }])],
  686. AC_DEFINE([HAVE_ATTRIBUTE_USED], [1],
  687. [Define if __attribute__((used))]))
  688. AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return __builtin_constant_p(1) ? 0 : 1; }])],
  689. AC_DEFINE([HAVE_BUILTIN_CONSTANT_P], [1],
  690. [Define if have __builtin_constant_p]))
  691. AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return __builtin_types_compatible_p(char *, int) ? 1 : 0; }])],
  692. AC_DEFINE([HAVE_BUILTIN_TYPES_COMPATIBLE_P], [1],
  693. [Define if have __builtin_types_compatible_p]))
  694. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static int __attribute__((warn_unused_result)) func(int x) { return x; }])],
  695. AC_DEFINE([HAVE_WARN_UNUSED_RESULT], [1],
  696. [Define if __attribute__((warn_unused_result))]))
  697. if test "x$prefix" = xNONE; then
  698. prefix=/usr/local
  699. fi
  700. AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$prefix/bin"], [Path to cgminer install])
  701. AC_SUBST(JANSSON_LIBS)
  702. AC_SUBST(LIBZ_LIBS)
  703. AC_SUBST(PTHREAD_FLAGS)
  704. AC_SUBST(DLOPEN_FLAGS)
  705. AC_SUBST(PTHREAD_LIBS)
  706. AC_SUBST(NCURSES_LIBS)
  707. AC_SUBST(PDCURSES_LIBS)
  708. AC_SUBST(WS2_LIBS)
  709. AC_SUBST(MM_LIBS)
  710. AC_SUBST(MATH_LIBS)
  711. AC_SUBST(RT_LIBS)
  712. AC_CONFIG_FILES([
  713. Makefile
  714. compat/Makefile
  715. ccan/Makefile
  716. lib/Makefile
  717. ])
  718. AC_OUTPUT
  719. echo
  720. echo "------------------------------------------------------------------------"
  721. echo "$PACKAGE $VERSION"
  722. echo "------------------------------------------------------------------------"
  723. echo
  724. echo "Configuration Options Summary:"
  725. echo
  726. if test "x$libcurl" != xno; then
  727. echo " libcurl(GBT).........: Enabled: $LIBCURL_LIBS"
  728. else
  729. echo " libcurl(GBT).........: Disabled"
  730. fi
  731. if test "x$libsystemd" != xno; then
  732. echo " libsystemd...........: Enabled: $LIBSYSTEMD_LIBS"
  733. else
  734. echo " libsystemd...........: Disabled"
  735. fi
  736. if test "x$dlibusb" != xno; then
  737. echo " libusb_system........: $LIBUSB_LIBS"
  738. else
  739. echo " libusb_internal......: $LIBUSB_LIBS"
  740. fi
  741. echo " curses.TUI...........: $cursesmsg"
  742. echo
  743. if test "x$extranonce" != xno; then
  744. echo " Extranonce.subscribe.: Enabled"
  745. else
  746. echo " Extranonce.subscribe.: Disabled"
  747. fi
  748. echo
  749. if test "x$ants1" = xyes; then
  750. echo " Antminer.S1.Bitmain..: Enabled"
  751. else
  752. echo " Antminer.S1.Bitmain..: Disabled"
  753. fi
  754. if test "x$ants2" = xyes; then
  755. echo " Antminer.S2.Bitmain..: Enabled"
  756. else
  757. echo " Antminer.S2.Bitmain..: Disabled"
  758. fi
  759. if test "x$ants3" = xyes; then
  760. echo " Antminer.S3.Bitmain..: Enabled"
  761. else
  762. echo " Antminer.S3.Bitmain..: Disabled"
  763. fi
  764. if test "x$avalon" = xyes; then
  765. echo " Avalon.ASICs.........: Enabled"
  766. else
  767. echo " Avalon.ASICs.........: Disabled"
  768. fi
  769. if test "x$avalon2" = xyes; then
  770. echo " Avalon2.ASICs........: Enabled"
  771. else
  772. echo " Avalon2.ASICs........: Disabled"
  773. fi
  774. if test "x$avalon4" = xyes; then
  775. echo " Avalon4.ASICs........: Enabled"
  776. else
  777. echo " Avalon4.ASICs........: Disabled"
  778. fi
  779. if test "x$avalon7" = xyes; then
  780. echo " Avalon7.ASICs........: Enabled"
  781. else
  782. echo " Avalon7.ASICs........: Disabled"
  783. fi
  784. if test "x$avalon8" = xyes; then
  785. echo " Avalon8.ASICs........: Enabled"
  786. else
  787. echo " Avalon8.ASICs........: Disabled"
  788. fi
  789. if test "x$avalon9" = xyes; then
  790. echo " Avalon9.ASICs........: Enabled"
  791. else
  792. echo " Avalon9.ASICs........: Disabled"
  793. fi
  794. if test "x$avalonlc3" = xyes; then
  795. echo " Avalonlc3.ASICs......: Enabled"
  796. else
  797. echo " Avalonlc3.ASICs......: Disabled"
  798. fi
  799. if test "x$avalon_miner" = xyes; then
  800. echo " Avalon miner.ASICs...: Enabled"
  801. else
  802. echo " Avalon miner.ASICs...: Disabled"
  803. fi
  804. if test "x$minion" = xyes; then
  805. echo " BlackArrowMinion.ASIC: Enabled"
  806. else
  807. echo " BlackArrowMinion.ASIC: Disabled"
  808. fi
  809. if test "x$bab" = xyes; then
  810. echo " BlackArrow.ASICs.....: Enabled"
  811. else
  812. echo " BlackArrow.ASICs.....: Disabled"
  813. fi
  814. if test "x$bflsc" = xyes; then
  815. echo " BFL.ASICs............: Enabled"
  816. else
  817. echo " BFL.ASICs............: Disabled"
  818. fi
  819. if test "x$bitforce" = xyes; then
  820. echo " BitForce.FPGAs.......: Enabled"
  821. else
  822. echo " BitForce.FPGAs.......: Disabled"
  823. fi
  824. if test "x$bitfury" = xyes; then
  825. echo " BitFury.ASICs........: Enabled"
  826. else
  827. echo " BitFury.ASICs........: Disabled"
  828. fi
  829. if test "x$bitfury16" = xyes; then
  830. echo " BitFury16.ASICs......: Enabled"
  831. else
  832. echo " BitFury16.ASICs......: Disabled"
  833. fi
  834. if test "x$bitmain_soc" = xyes; then
  835. echo " Bitmain.ASICs........: Enabled"
  836. else
  837. echo " Bitmain.ASICs........: Disabled"
  838. fi
  839. if test "x$blockerupter" = xyes; then
  840. echo " BlockErupter.ASICs...: Enabled"
  841. else
  842. echo " BlockErupter.ASICs...: Disabled"
  843. fi
  844. if test "x$cointerra" = xyes; then
  845. echo " Cointerra.ASICs......: Enabled"
  846. else
  847. echo " Cointerra.ASICs......: Disabled"
  848. fi
  849. if test "x$bitmine_A1" = xyes; then
  850. echo " Bitmine-A1.ASICs.....: Enabled"
  851. else
  852. echo " Bitmine-A1.ASICs.....: Disabled"
  853. fi
  854. if test "x$dragonmint_t1" = xyes; then
  855. echo " Dragonmint.T1.ASICs..: Enabled"
  856. else
  857. echo " Dragonmint.T1.ASICs..: Disabled"
  858. fi
  859. if test "x$drillbit" = xyes; then
  860. echo " Drillbit.BitFury.....: Enabled"
  861. else
  862. echo " Drillbit.BitFury.....: Disabled"
  863. fi
  864. if test "x$gekko" = xyes; then
  865. echo " GekkoScience.ASICs...: Enabled"
  866. else
  867. echo " GekkoScience.ASICs...: Disabled"
  868. fi
  869. if test "x$hashfast" = xyes; then
  870. echo " Hashfast.ASICs.......: Enabled"
  871. else
  872. echo " Hashfast.ASICs.......: Disabled"
  873. fi
  874. if test "x$hashratio" = xyes; then
  875. echo " Hashratio.ASICs......: Enabled"
  876. else
  877. echo " Hashratio.ASICs......: Disabled"
  878. fi
  879. if test "x$icarus" = xyes; then
  880. echo " Icarus.ASICs/FPGAs...: Enabled"
  881. else
  882. echo " Icarus.ASICs/FPGAs...: Disabled"
  883. fi
  884. if test "x$klondike" = xyes; then
  885. echo " Klondike.ASICs.......: Enabled"
  886. else
  887. echo " Klondike.ASICs.......: Disabled"
  888. fi
  889. if test "x$knc" = xyes; then
  890. echo " KnC.ASICs............: Enabled"
  891. else
  892. echo " KnC.ASICs............: Disabled"
  893. fi
  894. if test "x$modminer" = xyes; then
  895. echo " ModMiner.FPGAs.......: Enabled"
  896. else
  897. echo " ModMiner.FPGAs.......: Disabled"
  898. fi
  899. if test "x$sp10" = xyes; then
  900. echo " Spond-sp10.ASICs.....: Enabled"
  901. else
  902. echo " Spond-sp10.ASICs.....: Disabled"
  903. fi
  904. if test "x$sp30" = xyes; then
  905. echo " Spond-sp30.ASICs.....: Enabled"
  906. else
  907. echo " Spond-sp30.ASICs.....: Disabled"
  908. fi
  909. #Add any new device to this, along with a no on the end of the test
  910. if test "x$avalon$avalon2$avalon4$avalon7$avalon8$avalon9$avalonlc3$avalon_miner$bab$bflsc$bitforce$bitfury$bitfury16$bitmain_soc$blockerupter$gekko$hashfast$hashratio$icarus$klondike$knc$modminer$drillbit$minion$cointerra$bitmine_A1$ants1$ants2$ants3$sp10$sp30$dragonmint_t1" = xnononononononononononononononononononononononononononononononono; then
  911. echo
  912. AC_MSG_ERROR([No mining devices configured in])
  913. echo
  914. fi
  915. if test "x$standalone" = xyes; then
  916. if test $drivercount != x; then
  917. echo
  918. AC_MSG_ERROR([You have configured more than one driver in with a driver that is designed to be standalone only (see ./configure --help)])
  919. echo
  920. fi
  921. fi
  922. echo
  923. echo "Compilation............: make (or gmake)"
  924. echo " CPPFLAGS.............: $CPPFLAGS"
  925. echo " CFLAGS...............: $CFLAGS"
  926. echo " LDFLAGS..............: $LDFLAGS $PTHREAD_FLAGS"
  927. echo " LDADD................: $DLOPEN_FLAGS $LIBCURL_LIBS $LIBSYSTEMD_LIBS $JANSSON_LIBS $LIBZ_LIBS $PTHREAD_LIBS $NCURSES_LIBS $PDCURSES_LIBS $WS2_LIBS $MATH_LIBS $LIBUSB_LIBS $RT_LIBS"
  928. echo
  929. echo "Installation...........: make install (as root if needed, with 'su' or 'sudo')"
  930. echo " prefix...............: $prefix"
  931. echo
  932. if test "x$want_usbutils$dlibusb" = xyesyes; then
  933. echo "*** SYSTEM LIBUSB BEING ADDED - NOT RECOMMENDED UNLESS YOU ARE UNABLE TO COMPILE THE INCLUDED LIBUSB ***"
  934. echo
  935. fi
  936. if test "x$djansson" = xyes; then
  937. echo "*** SYSTEM JANSSON BEING ADDED - NOT RECOMMENDED UNLESS YOU ARE UNABLE TO COMPILE THE INCLUDED JANSSON ***"
  938. echo
  939. fi