configure.ac 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812
  1. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  2. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  3. m4_define([v_maj], [4])
  4. m4_define([v_min], [9])
  5. m4_define([v_mic], [0])
  6. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  7. m4_define([v_ver], [v_maj.v_min.v_mic])
  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], [kernel@kolivas.org])
  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. LT_INIT([disable-shared])
  47. gl_INIT
  48. dnl Checks for header files.
  49. AC_HEADER_STDC
  50. AC_CHECK_HEADERS(syslog.h)
  51. AC_FUNC_ALLOCA
  52. have_win32=false
  53. PTHREAD_FLAGS="-lpthread"
  54. DLOPEN_FLAGS="-ldl"
  55. WS2_LIBS=""
  56. MM_LIBS=""
  57. MATH_LIBS="-lm"
  58. RT_LIBS="-lrt"
  59. case $target in
  60. amd64-*)
  61. have_x86_64=true
  62. ;;
  63. x86_64-*)
  64. have_x86_64=true
  65. ;;
  66. *)
  67. have_x86_64=false
  68. ;;
  69. esac
  70. case $target in
  71. *-*-linux-gnu*)
  72. have_linux=true
  73. ;;
  74. *-*-mingw*)
  75. have_win32=true
  76. PTHREAD_FLAGS=""
  77. DLOPEN_FLAGS=""
  78. WS2_LIBS="-lws2_32"
  79. MM_LIBS="-lwinmm"
  80. RT_LIBS=""
  81. AC_DEFINE([_WIN32_WINNT], [0x0501], "WinNT version for XP+ support")
  82. ;;
  83. powerpc-*-darwin*)
  84. have_darwin=true
  85. CFLAGS="$CFLAGS -faltivec"
  86. PTHREAD_FLAGS=""
  87. RT_LIBS=""
  88. ;;
  89. *-*-darwin*)
  90. have_darwin=true
  91. PTHREAD_FLAGS=""
  92. RT_LIBS=""
  93. ;;
  94. esac
  95. has_winpthread=false
  96. if test "x$have_win32" = xtrue; then
  97. has_winpthread=true
  98. AC_CHECK_LIB(winpthread, nanosleep, , has_winpthread=false)
  99. PTHREAD_LIBS=-lwinpthread
  100. fi
  101. if test "x$has_winpthread" != xtrue; then
  102. AC_CHECK_LIB(pthread, pthread_create, ,
  103. AC_MSG_ERROR([Could not find pthread library - please install libpthread]))
  104. PTHREAD_LIBS=-lpthread
  105. fi
  106. # Drivers that are designed to be run on dedicated hardware should set standalone to yes
  107. # All drivers should prepend an x to the drivercount
  108. standalone="no"
  109. bmsc="no"
  110. drivercount=""
  111. AC_ARG_ENABLE([bmsc],
  112. [AC_HELP_STRING([--enable-bmsc],[Compile support for Bitmain Single Chain (default disabled)])],
  113. [bmsc=$enableval]
  114. )
  115. if test "x$bmsc" = xyes; then
  116. AC_DEFINE([USE_BMSC], [1], [Defined to 1 if Bitmain Single Chain support is wanted])
  117. drivercount=x$drivercount
  118. standalone="yes"
  119. fi
  120. AM_CONDITIONAL([HAS_BMSC], [test x$bmsc = xyes])
  121. bitmain="no"
  122. AC_ARG_ENABLE([bitmain],
  123. [AC_HELP_STRING([--enable-bitmain],[Compile support for Bitmain Multi Chain (default disabled)])],
  124. [bitmain=$enableval]
  125. )
  126. if test "x$bitmain" = xyes; then
  127. AC_DEFINE([USE_BITMAIN], [1], [Defined to 1 if Bitmain Multi Chain support is wanted])
  128. drivercount=x$drivercount
  129. standalone="yes"
  130. fi
  131. AM_CONDITIONAL([HAS_BITMAIN], [test x$bitmain = xyes])
  132. avalon="no"
  133. AC_ARG_ENABLE([avalon],
  134. [AC_HELP_STRING([--enable-avalon],[Compile support for Avalon (default disabled)])],
  135. [avalon=$enableval]
  136. )
  137. if test "x$avalon" = xyes; then
  138. AC_DEFINE([USE_AVALON], [1], [Defined to 1 if Avalon support is wanted])
  139. drivercount=x$drivercount
  140. fi
  141. AM_CONDITIONAL([HAS_AVALON], [test x$avalon = xyes])
  142. avalon2="no"
  143. AC_ARG_ENABLE([avalon2],
  144. [AC_HELP_STRING([--enable-avalon2],[Compile support for Avalon2 (default disabled)])],
  145. [avalon2=$enableval]
  146. )
  147. if test "x$avalon2" = xyes; then
  148. AC_DEFINE([USE_AVALON2], [1], [Defined to 1 if Avalon2 support is wanted])
  149. drivercount=x$drivercount
  150. fi
  151. AM_CONDITIONAL([HAS_AVALON2], [test x$avalon2 = xyes])
  152. avalon4="no"
  153. AC_ARG_ENABLE([avalon4],
  154. [AC_HELP_STRING([--enable-avalon4],[Compile support for Avalon4 (default disabled)])],
  155. [avalon4=$enableval]
  156. )
  157. if test "x$avalon4" = xyes; then
  158. AC_DEFINE([USE_AVALON4], [1], [Defined to 1 if Avalon4 support is wanted])
  159. fi
  160. AM_CONDITIONAL([HAS_AVALON4], [test x$avalon4 = xyes])
  161. bab="no"
  162. AC_ARG_ENABLE([bab],
  163. [AC_HELP_STRING([--enable-bab],[Compile support for BlackArrow Bitfury STANDALONE(default disabled)])],
  164. [bab=$enableval]
  165. )
  166. if test "x$bab" = xyes; then
  167. AC_DEFINE([USE_BAB], [1], [Defined to 1 if BlackArrow Bitfury support is wanted])
  168. drivercount=x$drivercount
  169. standalone="yes"
  170. fi
  171. AM_CONDITIONAL([HAS_BAB], [test x$bab = xyes])
  172. bflsc="no"
  173. AC_ARG_ENABLE([bflsc],
  174. [AC_HELP_STRING([--enable-bflsc],[Compile support for BFL ASICs (default disabled)])],
  175. [bflsc=$enableval]
  176. )
  177. if test "x$bflsc" = xyes; then
  178. AC_DEFINE([USE_BFLSC], [1], [Defined to 1 if BFL ASIC support is wanted])
  179. drivercount=x$drivercount
  180. fi
  181. AM_CONDITIONAL([HAS_BFLSC], [test x$bflsc = xyes])
  182. bitforce="no"
  183. AC_ARG_ENABLE([bitforce],
  184. [AC_HELP_STRING([--enable-bitforce],[Compile support for BitForce FPGAs (default disabled)])],
  185. [bitforce=$enableval]
  186. )
  187. if test "x$bitforce" = xyes; then
  188. AC_DEFINE([USE_BITFORCE], [1], [Defined to 1 if BitForce support is wanted])
  189. drivercount=x$drivercount
  190. fi
  191. AM_CONDITIONAL([HAS_BITFORCE], [test x$bitforce = xyes])
  192. bitfury="no"
  193. AC_ARG_ENABLE([bitfury],
  194. [AC_HELP_STRING([--enable-bitfury],[Compile support for BitFury ASICs (default disabled)])],
  195. [bitfury=$enableval]
  196. )
  197. if test "x$bitfury" = xyes; then
  198. AC_DEFINE([USE_BITFURY], [1], [Defined to 1 if BitFury ASIC support is wanted])
  199. drivercount=x$drivercount
  200. fi
  201. AM_CONDITIONAL([HAS_BITFURY], [test x$bitfury = xyes])
  202. bitmine_A1="no"
  203. AC_ARG_ENABLE([bitmine_A1],
  204. [AC_HELP_STRING([--enable-bitmine_A1],[Compile support for Bitmine.ch A1 ASICs STANDALONE(default disabled)])],
  205. [bitmine_A1=$enableval]
  206. )
  207. if test "x$bitmine_A1" = xyes; then
  208. AC_DEFINE([USE_BITMINE_A1], [1], [Defined to 1 if Bitmine A1 support is wanted])
  209. drivercount=x$drivercount
  210. standalone="yes"
  211. fi
  212. AM_CONDITIONAL([HAS_BITMINE_A1], [test x$bitmine_A1 = xyes])
  213. blockerupter="no"
  214. AC_ARG_ENABLE([blockerupter],
  215. [AC_HELP_STRING([--enable-blockerupter],[Compile support for BlockErupter (default disabled)])],
  216. [blockerupter=$enableval]
  217. )
  218. if test "x$blockerupter" = xyes; then
  219. AC_DEFINE([USE_BLOCKERUPTER], [1], [Defined to 1 if BlockErupter support is wanted])
  220. drivercount=x$drivercount
  221. fi
  222. AM_CONDITIONAL([HAS_BLOCKERUPTER], [test x$blockerupter = xyes])
  223. cointerra="no"
  224. AC_ARG_ENABLE([cointerra],
  225. [AC_HELP_STRING([--enable-cointerra],[Compile support for Cointerra ASICs (default disabled)])],
  226. [cointerra=$enableval]
  227. )
  228. if test "x$cointerra" = xyes; then
  229. AC_DEFINE([USE_COINTERRA], [1], [Defined to 1 if Cointerra support is wanted])
  230. drivercount=x$drivercount
  231. fi
  232. AM_CONDITIONAL([HAS_COINTERRA], [test x$cointerra = xyes])
  233. drillbit="no"
  234. AC_ARG_ENABLE([drillbit],
  235. [AC_HELP_STRING([--enable-drillbit],[Compile support for Drillbit BitFury ASICs (default disabled)])],
  236. [drillbit=$enableval]
  237. )
  238. if test "x$drillbit" = xyes; then
  239. AC_DEFINE([USE_DRILLBIT], [1], [Defined to 1 if Drillbit BitFury support is wanted])
  240. drivercount=x$drivercount
  241. fi
  242. AM_CONDITIONAL([HAS_DRILLBIT], [test x$drillbit = xyes])
  243. hashfast="no"
  244. AC_ARG_ENABLE([hashfast],
  245. [AC_HELP_STRING([--enable-hashfast],[Compile support for Hashfast (default disabled)])],
  246. [hashfast=$enableval]
  247. )
  248. if test "x$hashfast" = xyes; then
  249. AC_DEFINE([USE_HASHFAST], [1], [Defined to 1 if Hashfast support is wanted])
  250. drivercount=x$drivercount
  251. fi
  252. AM_CONDITIONAL([HAS_HASHFAST], [test x$hashfast = xyes])
  253. hashratio="no"
  254. AC_ARG_ENABLE([hashratio],
  255. [AC_HELP_STRING([--enable-hashratio],[Compile support for Hashratio (default disabled)])],
  256. [hashratio=$enableval]
  257. )
  258. if test "x$hashratio" = xyes; then
  259. AC_DEFINE([USE_HASHRATIO], [1], [Defined to 1 if Hashratiosupport is wanted])
  260. drivercount=x$drivercount
  261. fi
  262. AM_CONDITIONAL([HAS_HASHRATIO], [test x$hashratio = xyes])
  263. icarus="no"
  264. AC_ARG_ENABLE([icarus],
  265. [AC_HELP_STRING([--enable-icarus],[Compile support for Icarus (default disabled)])],
  266. [icarus=$enableval]
  267. )
  268. if test "x$icarus" = xyes; then
  269. AC_DEFINE([USE_ICARUS], [1], [Defined to 1 if Icarus support is wanted])
  270. drivercount=x$drivercount
  271. fi
  272. AM_CONDITIONAL([HAS_ICARUS], [test x$icarus = xyes])
  273. klondike="no"
  274. AC_ARG_ENABLE([klondike],
  275. [AC_HELP_STRING([--enable-klondike],[Compile support for Klondike (default disabled)])],
  276. [klondike=$enableval]
  277. )
  278. if test "x$klondike" = xyes; then
  279. AC_DEFINE([USE_KLONDIKE], [1], [Defined to 1 if Klondike support is wanted])
  280. drivercount=x$drivercount
  281. fi
  282. AM_CONDITIONAL([HAS_KLONDIKE], [test x$klondike = xyes])
  283. knc="no"
  284. AC_ARG_ENABLE([knc],
  285. [AC_HELP_STRING([--enable-knc],[Compile support for KnC miners STANDALONE(default disabled)])],
  286. [knc=$enableval]
  287. )
  288. if test "x$knc" = xyes; then
  289. AC_DEFINE([USE_KNC], [1], [Defined to 1 if KnC miner support is wanted])
  290. drivercount=x$drivercount
  291. standalone="yes"
  292. fi
  293. AM_CONDITIONAL([HAS_KNC], [test x$knc = xyes])
  294. minion="no"
  295. AC_ARG_ENABLE([minion],
  296. [AC_HELP_STRING([--enable-minion],[Compile support for Minion BlackArrow ASIC STANDALONE(default disabled)])],
  297. [minion=$enableval]
  298. )
  299. if test "x$minion" = xyes; then
  300. AC_DEFINE([USE_MINION], [1], [Defined to 1 if Minion BlackArrow ASIC support is wanted])
  301. drivercount=x$drivercount
  302. standalone="yes"
  303. fi
  304. AM_CONDITIONAL([HAS_MINION], [test x$minion = xyes])
  305. modminer="no"
  306. AC_ARG_ENABLE([modminer],
  307. [AC_HELP_STRING([--enable-modminer],[Compile support for ModMiner FPGAs(default disabled)])],
  308. [modminer=$enableval]
  309. )
  310. if test "x$modminer" = xyes; then
  311. AC_DEFINE([USE_MODMINER], [1], [Defined to 1 if ModMiner support is wanted])
  312. drivercount=x$drivercount
  313. fi
  314. AM_CONDITIONAL([HAS_MODMINER], [test x$modminer = xyes])
  315. sp10="no"
  316. AC_ARG_ENABLE([sp10],
  317. [AC_HELP_STRING([--enable-sp10],[Compile support for Spondoolies SP10 STANDALONE(default disabled)])],
  318. [sp10=$enableval]
  319. )
  320. if test "x$sp10" = xyes; then
  321. AC_DEFINE([USE_SP10], [1], [Defined to 1 if Spondoolies SP10 support is wanted])
  322. drivercount=x$drivercount
  323. standalone="yes"
  324. fi
  325. AM_CONDITIONAL([HAS_SP10], [test x$sp10 = xyes])
  326. sp30="no"
  327. AC_ARG_ENABLE([sp30],
  328. [AC_HELP_STRING([--enable-sp30],[Compile support for Spondoolies SP30 STANDALONE(default disabled)])],
  329. [sp30=$enableval]
  330. )
  331. if test "x$sp30" = xyes; then
  332. AC_DEFINE([USE_SP30], [1], [Defined to 1 if SP30 support is wanted])
  333. drivercount=x$drivercount
  334. standalone="yes"
  335. fi
  336. AM_CONDITIONAL([HAS_SP30], [test x$sp30 = xyes])
  337. forcecombo="no"
  338. AC_ARG_ENABLE([forcecombo],
  339. [AC_HELP_STRING([--enable-forcecombo],[Allow combinations of drivers not intended to be built together(default disabled)])],
  340. [forcecombo=$enableval]
  341. )
  342. if test "x$forcecombo" = xyes; then
  343. standalone="no"
  344. fi
  345. curses="auto"
  346. AC_ARG_WITH([curses],
  347. [AC_HELP_STRING([--without-curses],[Compile support for curses TUI (default enabled)])],
  348. [curses=$withval]
  349. )
  350. if test "x$curses" = "xno"; then
  351. cursesmsg='User specified --without-curses. TUI support DISABLED'
  352. else
  353. AC_SEARCH_LIBS(addstr, ncurses pdcurses, [
  354. curses=yes
  355. cursesmsg="FOUND: ${ac_cv_search_addstr}"
  356. AC_DEFINE([HAVE_CURSES], [1], [Defined to 1 if curses TUI support is wanted])
  357. ], [
  358. if test "x$curses" = "xyes"; then
  359. AC_MSG_ERROR([Could not find curses library - please install libncurses-dev or pdcurses-dev (or configure --without-curses)])
  360. else
  361. AC_MSG_WARN([Could not find curses library - if you want a TUI, install libncurses-dev or pdcurses-dev])
  362. curses=no
  363. cursesmsg='NOT FOUND. TUI support DISABLED'
  364. fi
  365. ])
  366. fi
  367. #Add a new device to this list if it needs libusb, along with a no on the end.
  368. if test x$avalon$avalon2$avalon4$bitforce$bitfury$blockerupter$modminer$bflsc$icarus$hashfast$hashratio$klondike$drillbit$cointerra$bmsc$bitmain != xnononononononononononononononono; then
  369. want_usbutils=true
  370. else
  371. want_usbutils=false
  372. fi
  373. if test x$bitfury != xno; then
  374. want_libbitfury=true
  375. else
  376. want_libbitfury=false
  377. fi
  378. if test x$avalon2$avalon4$hashratio != xnonono; then
  379. want_crc16=true
  380. else
  381. want_crc16=false
  382. fi
  383. AM_CONDITIONAL([NEED_FPGAUTILS], [test x$modminer != xno])
  384. AM_CONDITIONAL([WANT_USBUTILS], [test x$want_usbutils != xfalse])
  385. AM_CONDITIONAL([WANT_LIBBITFURY], [test x$want_libbitfury != xfalse])
  386. AM_CONDITIONAL([HAVE_CURSES], [test x$curses = xyes])
  387. AM_CONDITIONAL([HAVE_WINDOWS], [test x$have_win32 = xtrue])
  388. AM_CONDITIONAL([HAVE_x86_64], [test x$have_x86_64 = xtrue])
  389. AM_CONDITIONAL([WANT_CRC16], [test x$want_crc16 != xfalse])
  390. if test "x$want_usbutils" != xfalse; then
  391. dlibusb="no"
  392. AC_DEFINE([USE_USBUTILS], [1], [Defined to 1 if usbutils support required])
  393. AC_ARG_WITH([system-libusb],
  394. [AC_HELP_STRING([--with-system-libusb],[NOT RECOMMENDED! Compile against dynamic system libusb. (Default use included static libusb)])],
  395. [dlibusb=$withval]
  396. )
  397. if test "x$dlibusb" != xno; then
  398. case $target in
  399. *-*-freebsd*)
  400. LIBUSB_LIBS="-lusb"
  401. LIBUSB_CFLAGS=""
  402. AC_DEFINE(HAVE_LIBUSB, 1, [Define if you have libusb-1.0])
  403. ;;
  404. *)
  405. 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])])
  406. ;;
  407. esac
  408. else
  409. AC_CONFIG_SUBDIRS([compat/libusb-1.0])
  410. LIBUSB_LIBS="compat/libusb-1.0/libusb/.libs/libusb-1.0.a"
  411. if test "x$have_linux" = "xtrue"; then
  412. AC_ARG_ENABLE([udev],
  413. [AC_HELP_STRING([--disable-udev],[Disable building libusb with udev])],
  414. [udev=$enableval]
  415. )
  416. if test "x$udev" != xno; then
  417. LIBUSB_LIBS+=" -ludev"
  418. fi
  419. fi
  420. if test "x$have_darwin" = "xtrue"; then
  421. LIBUSB_LIBS+=" -lobjc"
  422. LDFLAGS+=" -framework CoreFoundation -framework IOKit"
  423. fi
  424. fi
  425. else
  426. LIBUSB_LIBS=""
  427. fi
  428. AM_CONDITIONAL([WANT_STATIC_LIBUSB], [test x$dlibusb = xno])
  429. AC_CONFIG_SUBDIRS([compat/jansson-2.6])
  430. JANSSON_LIBS="compat/jansson-2.6/src/.libs/libjansson.a"
  431. PKG_PROG_PKG_CONFIG()
  432. if test "x$have_cgminer_sdk" = "xtrue"; then
  433. if test "x$have_x86_64" = xtrue; then
  434. ARCH_DIR=x86_64
  435. else
  436. ARCH_DIR=x86
  437. fi
  438. PKG_CONFIG="${PKG_CONFIG:-pkg-config} --define-variable=arch=$ARCH_DIR --define-variable=target=$target --define-variable=cgminersdkdir=$CGMINER_SDK"
  439. PKG_CONFIG_PATH="$CGMINER_SDK/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
  440. fi
  441. AC_SUBST(LIBUSB_LIBS)
  442. AC_SUBST(LIBUSB_CFLAGS)
  443. AC_ARG_ENABLE([libcurl],
  444. [AC_HELP_STRING([--disable-libcurl],[Disable building with libcurl for getwork and GBT support])],
  445. [libcurl=$enableval]
  446. )
  447. if test "x$libcurl" != xno; then
  448. if test "x$have_win32" != xtrue; then
  449. PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.25.0], [AC_DEFINE([CURL_HAS_KEEPALIVE], [1], [Defined if version of curl supports keepalive.])],
  450. [PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.18.2], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.18.2])])])
  451. else
  452. PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.25.0], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.25.0])])
  453. AC_DEFINE([CURL_HAS_KEEPALIVE], [1])
  454. fi
  455. AC_DEFINE([HAVE_LIBCURL], [1], [Defined to 1 if libcurl support built in])
  456. else
  457. LIBCURL_LIBS=""
  458. fi
  459. AC_SUBST(LIBCURL_LIBS)
  460. #check execv signature
  461. AC_COMPILE_IFELSE([AC_LANG_SOURCE([
  462. #include <process.h>
  463. int execv(const char*, const char*const*);
  464. ])],
  465. AC_DEFINE([EXECV_2ND_ARG_TYPE], [const char* const*], [int execv(const char*, const char*const*);]),
  466. AC_DEFINE([EXECV_2ND_ARG_TYPE], [char* const*], [int execv(const char*, char*const*);]))
  467. dnl CCAN wants to know a lot of vars.
  468. # All the configuration checks. Regrettably, the __attribute__ checks will
  469. # give false positives on old GCCs, since they just cause warnings. But that's
  470. # fairly harmless.
  471. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((cold)) cleanup(void) { }])],
  472. AC_DEFINE([HAVE_ATTRIBUTE_COLD], [1],
  473. [Define if __attribute__((cold))]))
  474. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((const)) cleanup(void) { }])],
  475. AC_DEFINE([HAVE_ATTRIBUTE_CONST], [1],
  476. [Define if __attribute__((const))]))
  477. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((noreturn)) cleanup(void) { exit(1); }])],
  478. AC_DEFINE([HAVE_ATTRIBUTE_NORETURN], [1],
  479. [Define if __attribute__((noreturn))]))
  480. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((format(__printf__, 1, 2))) cleanup(const char *fmt, ...) { }])],
  481. AC_DEFINE([HAVE_ATTRIBUTE_PRINTF], [1],
  482. [Define if __attribute__((format(__printf__)))]))
  483. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((unused)) cleanup(void) { }])],
  484. AC_DEFINE([HAVE_ATTRIBUTE_UNUSED], [1],
  485. [Define if __attribute__((unused))]))
  486. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((used)) cleanup(void) { }])],
  487. AC_DEFINE([HAVE_ATTRIBUTE_USED], [1],
  488. [Define if __attribute__((used))]))
  489. AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return __builtin_constant_p(1) ? 0 : 1; }])],
  490. AC_DEFINE([HAVE_BUILTIN_CONSTANT_P], [1],
  491. [Define if have __builtin_constant_p]))
  492. AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return __builtin_types_compatible_p(char *, int) ? 1 : 0; }])],
  493. AC_DEFINE([HAVE_BUILTIN_TYPES_COMPATIBLE_P], [1],
  494. [Define if have __builtin_types_compatible_p]))
  495. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static int __attribute__((warn_unused_result)) func(int x) { return x; }])],
  496. AC_DEFINE([HAVE_WARN_UNUSED_RESULT], [1],
  497. [Define if __attribute__((warn_unused_result))]))
  498. if test "x$prefix" = xNONE; then
  499. prefix=/usr/local
  500. fi
  501. AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$prefix/bin"], [Path to cgminer install])
  502. AC_SUBST(JANSSON_LIBS)
  503. AC_SUBST(PTHREAD_FLAGS)
  504. AC_SUBST(DLOPEN_FLAGS)
  505. AC_SUBST(PTHREAD_LIBS)
  506. AC_SUBST(NCURSES_LIBS)
  507. AC_SUBST(PDCURSES_LIBS)
  508. AC_SUBST(WS2_LIBS)
  509. AC_SUBST(MM_LIBS)
  510. AC_SUBST(MATH_LIBS)
  511. AC_SUBST(RT_LIBS)
  512. AC_CONFIG_FILES([
  513. Makefile
  514. compat/Makefile
  515. ccan/Makefile
  516. lib/Makefile
  517. ])
  518. AC_OUTPUT
  519. echo
  520. echo
  521. echo
  522. echo "------------------------------------------------------------------------"
  523. echo "$PACKAGE $VERSION"
  524. echo "------------------------------------------------------------------------"
  525. echo
  526. echo
  527. echo "Configuration Options Summary:"
  528. echo
  529. if test "x$libcurl" != xno; then
  530. echo " libcurl(GBT+getwork).: Enabled: $LIBCURL_LIBS"
  531. else
  532. echo " libcurl(GBT+getwork).: Disabled"
  533. fi
  534. echo " curses.TUI...........: $cursesmsg"
  535. echo
  536. if test "x$bmsc" = xyes; then
  537. echo " Bitmain.SingleChain..: Enabled"
  538. else
  539. echo " Bitmain.SingleChain..: Disabled"
  540. fi
  541. if test "x$bitmain" = xyes; then
  542. echo " Bitmain.MultiChain...: Enabled"
  543. else
  544. echo " Bitmain.MultiChain...: Disabled"
  545. fi
  546. if test "x$avalon" = xyes; then
  547. echo " Avalon.ASICs.........: Enabled"
  548. else
  549. echo " Avalon.ASICs.........: Disabled"
  550. fi
  551. if test "x$avalon2" = xyes; then
  552. echo " Avalon2.ASICs........: Enabled"
  553. else
  554. echo " Avalon2.ASICs........: Disabled"
  555. fi
  556. if test "x$avalon4" = xyes; then
  557. echo " Avalon4.ASICs........: Enabled"
  558. else
  559. echo " Avalon4.ASICs........: Disabled"
  560. fi
  561. if test "x$minion" = xyes; then
  562. echo " BlackArrowMinion.ASIC: Enabled"
  563. else
  564. echo " BlackArrowMinion.ASIC: Disabled"
  565. fi
  566. if test "x$bab" = xyes; then
  567. echo " BlackArrow.ASICs.....: Enabled"
  568. else
  569. echo " BlackArrow.ASICs.....: Disabled"
  570. fi
  571. if test "x$bflsc" = xyes; then
  572. echo " BFL.ASICs............: Enabled"
  573. else
  574. echo " BFL.ASICs............: Disabled"
  575. fi
  576. if test "x$bitforce" = xyes; then
  577. echo " BitForce.FPGAs.......: Enabled"
  578. else
  579. echo " BitForce.FPGAs.......: Disabled"
  580. fi
  581. if test "x$bitfury" = xyes; then
  582. echo " BitFury.ASICs........: Enabled"
  583. else
  584. echo " BitFury.ASICs........: Disabled"
  585. fi
  586. if test "x$blockerupter" = xyes; then
  587. echo " BlockErupter.ASICs...: Enabled"
  588. else
  589. echo " BlockErupter.ASICs...: Disabled"
  590. fi
  591. if test "x$cointerra" = xyes; then
  592. echo " Cointerra.ASICs......: Enabled"
  593. else
  594. echo " Cointerra.ASICs......: Disabled"
  595. fi
  596. if test "x$sp10" = xyes; then
  597. echo " Spond-sp10.ASICs.....: Enabled"
  598. else
  599. echo " Spond-sp10.ASICs.....: Disabled"
  600. fi
  601. if test "x$sp30" = xyes; then
  602. echo " Spond-sp30.ASICs.....: Enabled"
  603. else
  604. echo " Spond-sp30.ASICs.....: Disabled"
  605. fi
  606. if test "x$bitmine_A1" = xyes; then
  607. echo " Bitmine-A1.ASICs.....: Enabled"
  608. else
  609. echo " Bitmine-A1.ASICs.....: Disabled"
  610. fi
  611. if test "x$drillbit" = xyes; then
  612. echo " Drillbit.BitFury.....: Enabled"
  613. else
  614. echo " Drillbit.BitFury.....: Disabled"
  615. fi
  616. if test "x$hashfast" = xyes; then
  617. echo " Hashfast.ASICs.......: Enabled"
  618. else
  619. echo " Hashfast.ASICs.......: Disabled"
  620. fi
  621. if test "x$hashratio" = xyes; then
  622. echo " Hashratio.ASICs......: Enabled"
  623. else
  624. echo " Hashratio.ASICs......: Disabled"
  625. fi
  626. if test "x$icarus" = xyes; then
  627. echo " Icarus.ASICs/FPGAs...: Enabled"
  628. else
  629. echo " Icarus.ASICs/FPGAs...: Disabled"
  630. fi
  631. if test "x$klondike" = xyes; then
  632. echo " Klondike.ASICs.......: Enabled"
  633. else
  634. echo " Klondike.ASICs.......: Disabled"
  635. fi
  636. if test "x$knc" = xyes; then
  637. echo " KnC.ASICs............: Enabled"
  638. else
  639. echo " KnC.ASICs............: Disabled"
  640. fi
  641. if test "x$modminer" = xyes; then
  642. echo " ModMiner.FPGAs.......: Enabled"
  643. else
  644. echo " ModMiner.FPGAs.......: Disabled"
  645. fi
  646. #Add any new device to this, along with a no on the end of the test
  647. if test "x$avalon$avalon2$bab$bflsc$bitforce$bitfury$blockerupter$hashfast$hashratio$icarus$klondike$knc$modminer$drillbit$minion$cointerra$bitmine_A1$bmsc$bitmain$sp10$sp30" = xnonononononononononononononononononononono; then
  648. echo
  649. AC_MSG_ERROR([No mining devices configured in])
  650. echo
  651. fi
  652. if test "x$standalone" = xyes; then
  653. if test $drivercount != x; then
  654. echo
  655. AC_MSG_ERROR([You have configured more than one driver in with a driver that is designed to be standalone only (see ./configure --help)])
  656. echo
  657. fi
  658. fi
  659. echo
  660. echo "Compilation............: make (or gmake)"
  661. echo " CPPFLAGS.............: $CPPFLAGS"
  662. echo " CFLAGS...............: $CFLAGS"
  663. echo " LDFLAGS..............: $LDFLAGS $PTHREAD_FLAGS"
  664. echo " LDADD................: $DLOPEN_FLAGS $LIBCURL_LIBS $JANSSON_LIBS $PTHREAD_LIBS $NCURSES_LIBS $PDCURSES_LIBS $WS2_LIBS $MATH_LIBS $LIBUSB_LIBS $RT_LIBS"
  665. echo
  666. echo "Installation...........: make install (as root if needed, with 'su' or 'sudo')"
  667. echo " prefix...............: $prefix"
  668. echo
  669. if test "x$want_usbutils$dlibusb" = xyesyes; then
  670. echo "*** SYSTEM LIBUSB BEING ADDED - NOT RECOMMENDED UNLESS YOU ARE UNABLE TO COMPILE THE INCLUDED LIBUSB ***"
  671. echo
  672. fi