configure.ac 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794
  1. dnl * Copyright 2012-2013 Luke Dashjr
  2. dnl * Copyright 2011-2013 Con Kolivas
  3. dnl * Copyright 2010-2011 Jeff Garzik
  4. dnl * Copyright 2012 Xiangfu
  5. dnl * Copyright 2011 Rusty Russell
  6. dnl * Copyright 2011 Mark Crichton
  7. dnl * Copyright 2013-2014 Nate Woolls
  8. dnl *
  9. dnl * This program is free software; you can redistribute it and/or modify it
  10. dnl * under the terms of the GNU General Public License as published by the Free
  11. dnl * Software Foundation; either version 3 of the License, or (at your option)
  12. dnl * any later version. See COPYING for more details.
  13. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  14. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  15. m4_define([v_maj], [4])
  16. m4_define([v_min], [2])
  17. m4_define([v_mic], [0])
  18. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  19. m4_define([v_ver], [v_maj.v_min.v_mic])
  20. m4_define([lt_rev], m4_eval(v_maj + v_min))
  21. m4_define([lt_cur], v_mic)
  22. m4_define([lt_age], v_min)
  23. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  24. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  25. AC_INIT([bfgminer], [v_ver], [luke-jr+bfgminer@utopios.org])
  26. AC_PREREQ([2.59c])
  27. AC_CANONICAL_SYSTEM
  28. AC_CONFIG_MACRO_DIR([m4])
  29. AC_CONFIG_SRCDIR([miner.c])
  30. AC_CONFIG_HEADERS([config.h])
  31. AH_BOTTOM([
  32. #ifdef WIN32
  33. #include <winsock2.h>
  34. #endif
  35. ])
  36. AM_INIT_AUTOMAKE([foreign subdir-objects])
  37. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
  38. AC_USE_SYSTEM_EXTENSIONS
  39. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  40. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  41. m4_ifdef([v_rev], , [m4_define([v_rev], [0])])
  42. m4_ifdef([v_rel], , [m4_define([v_rel], [])])
  43. AC_DEFINE_UNQUOTED(CGMINER_MAJOR_VERSION, [v_maj], [Major version])
  44. AC_DEFINE_UNQUOTED(CGMINER_MINOR_VERSION, [v_min], [Minor version])
  45. AC_DEFINE_UNQUOTED(CGMINER_MINOR_SUBVERSION, [v_mic], [Micro version])
  46. version_info="lt_rev:lt_cur:lt_age"
  47. release_info="v_rel"
  48. AC_SUBST(version_info)
  49. AC_SUBST(release_info)
  50. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  51. ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  52. VMAJ=v_maj
  53. AC_SUBST(VMAJ)
  54. AC_CANONICAL_BUILD
  55. AC_CANONICAL_HOST
  56. dnl Make sure anyone changing configure.ac/Makefile.am has a clue
  57. AM_MAINTAINER_MODE([enable])
  58. dnl Checks for programs
  59. AC_PROG_CC_C99
  60. gl_EARLY
  61. AC_PROG_GCC_TRADITIONAL
  62. AM_PROG_CC_C_O
  63. AC_PROG_RANLIB
  64. AC_PROG_CPP
  65. gl_INIT
  66. AC_SYS_LARGEFILE
  67. dnl Checks for header files.
  68. AC_HEADER_STDC
  69. AC_CHECK_HEADERS(syslog.h)
  70. AC_CHECK_HEADERS([sys/epoll.h])
  71. AC_CHECK_HEADERS([sys/mman.h])
  72. AC_CHECK_HEADERS([sys/prctl.h])
  73. AC_CHECK_HEADERS([sys/file.h])
  74. AC_CHECK_HEADERS([sys/termios.h])
  75. AC_CHECK_HEADERS([linux/spi/spidev.h])
  76. AC_CHECK_MEMBER([struct i2c_msg.buf],[
  77. true
  78. ],[
  79. dnl Note the member is different here to avoid caching screwing things up
  80. AC_CHECK_MEMBER([struct i2c_msg.len],[
  81. AC_DEFINE([NEED_LINUX_I2C_H],[1],[Defined if linux/i2c.h is needed to supplement linux/i2c-dev.h])
  82. ],[
  83. true
  84. ],[
  85. AC_INCLUDES_DEFAULT
  86. #include <linux/i2c.h>
  87. #include <linux/i2c-dev.h>
  88. ])
  89. ],[
  90. AC_INCLUDES_DEFAULT
  91. #include <linux/i2c-dev.h>
  92. ])
  93. # Setuid
  94. AC_CHECK_HEADERS([pwd.h])
  95. # Check for chroot support
  96. AC_CHECK_FUNCS([chroot])
  97. AC_CHECK_FUNCS([sleep])
  98. AC_FUNC_ALLOCA
  99. lowllist=
  100. driverlist=
  101. algolist=SHA256d
  102. optlist=
  103. has_fpga=no
  104. has_asic=no
  105. need_binloader=no
  106. need_dynclock=no
  107. need_gc3355=no
  108. need_lowl_vcom=no
  109. need_lowlevel=no
  110. need_lowl_ftdi=no
  111. need_lowl_hid=no
  112. need_lowl_pci=no
  113. need_lowl_spi=no
  114. need_lowl_usb=no
  115. need_work2d=no
  116. have_cygwin=false
  117. have_win32=false
  118. have_macho=false
  119. use_udevrules=true
  120. have_udevrules=false
  121. AUTOSCAN_CPPFLAGS=""
  122. AUTOSCAN_LIBS=""
  123. DLOPEN_FLAGS="-ldl"
  124. WS2_LIBS=""
  125. MM_LIBS=""
  126. MATH_LIBS="-lm"
  127. RT_LIBS=""
  128. case $target in
  129. amd64-* | x86_64-*)
  130. have_x86_32=false
  131. have_x86_64=true
  132. bitness="64"
  133. ;;
  134. i386-* | i486-* | i586-* | i686-* | x86-*)
  135. have_x86_32=true
  136. have_x86_64=false
  137. bitness="32"
  138. ;;
  139. *)
  140. have_x86_32=false
  141. have_x86_64=false
  142. ;;
  143. esac
  144. case $target in
  145. *-*-mingw*)
  146. have_win32=true
  147. use_udevrules=false
  148. DLOPEN_FLAGS=""
  149. WS2_LIBS="-lws2_32"
  150. MM_LIBS="-lwinmm"
  151. AC_DEFINE([_WIN32_WINNT], [0x0501], "WinNT version for XP+ support")
  152. AC_DEFINE([FD_SETSIZE], [4096], [Maximum sockets before fd_set overflows])
  153. ;;
  154. *-*-cygwin*)
  155. have_cygwin=true
  156. use_udevrules=false
  157. ;;
  158. powerpc-*-darwin*)
  159. CFLAGS="$CFLAGS -faltivec"
  160. have_macho=true
  161. use_udevrules=false
  162. ;;
  163. *-*-darwin*)
  164. have_macho=true
  165. use_udevrules=false
  166. ;;
  167. esac
  168. m4_define([BFG_INCLUDE],
  169. if test "x$2" = "x"; then
  170. $1=''
  171. else
  172. $1="[#]include <$2>"
  173. fi
  174. )
  175. m4_define([BFG_PREPROC_IFELSE],
  176. BFG_INCLUDE([headerinclude], $2)
  177. AC_COMPILE_IFELSE([
  178. AC_LANG_PROGRAM([
  179. ${headerinclude}
  180. ], [
  181. #if !( $1 )
  182. #error "$1 false in preprocessor"
  183. #endif
  184. ])
  185. ],[$3],[$4])
  186. )
  187. AC_CHECK_DECL([HASH_ITER],[
  188. AC_CHECK_DECL([DL_CONCAT],[
  189. true
  190. ],[
  191. AC_MSG_ERROR([Could not find DL_FOREACH_SAFE - install uthash-dev 1.9.4+])
  192. ],[
  193. #include <utlist.h>
  194. ])
  195. ],[
  196. AC_MSG_ERROR([Could not find HASH_ITER - please install uthash-dev 1.9.4+])
  197. ],[
  198. #include <uthash.h>
  199. ])
  200. ddyes=yes
  201. ddauto=auto
  202. ddno=no
  203. AC_ARG_ENABLE([other-drivers],
  204. [AC_HELP_STRING([--disable-other-drivers],[Build without drivers by default unless explicitly enabled])],
  205. [
  206. if test x$enableval = xyes; then
  207. ddno=yes
  208. else
  209. ddyes=no
  210. ddauto=no
  211. fi
  212. ]
  213. )
  214. algolist="$algolist scrypt"
  215. AC_ARG_ENABLE([scrypt],
  216. [AC_HELP_STRING([--enable-scrypt],[Compile support for scrypt mining (default disabled)])],
  217. [scrypt=$enableval],
  218. [scrypt=no])
  219. if test "x$scrypt" = xyes; then
  220. AC_DEFINE([USE_SCRYPT], [1], [Defined to 1 if scrypt support is wanted])
  221. fi
  222. lowl_pci=no
  223. if test "x$ac_cv_header_sys_mman_h" = "xyes"; then
  224. AC_ARG_WITH([uio],
  225. [AC_HELP_STRING([--without-uio],[Compile support for PCI devices via Linux UIO interface (default enabled)])],
  226. [uio=$withval],
  227. [uio=$ddyes])
  228. AC_ARG_WITH([vfio],
  229. [AC_HELP_STRING([--without-vfio],[Compile support for PCI devices via Linux VFIO interface (default enabled)])],
  230. [vfio=$enableval],
  231. [vfio=$ddauto])
  232. if test "x$vfio" != "xno"; then
  233. AC_CHECK_HEADER([linux/vfio.h],[
  234. vfio=yes
  235. ],[
  236. if test "x$vfio" = "xyes"; then
  237. AC_MSG_ERROR([Unable to find linux/vfio.h])
  238. elif test "x$uio" = "xyes"; then
  239. AC_MSG_WARN([linux/vfio.h not found; PCI device support will require UIO (and root access)])
  240. else
  241. AC_MSG_WARN([linux/vfio.h not found; PCI device support will not be available])
  242. fi
  243. vfio=no
  244. ])
  245. fi
  246. if test "x$vfio$uio" != xnono; then
  247. lowl_pci=yes
  248. fi
  249. fi
  250. driverlist="$driverlist cpu/cpumining"
  251. AC_ARG_ENABLE([cpumining],
  252. [AC_HELP_STRING([--enable-cpumining],[Build with CPU mining support (default disabled)])],
  253. [cpumining=$enableval],
  254. [cpumining=$ddno]
  255. )
  256. if test "x$cpumining" = xyes; then
  257. AC_DEFINE_UNQUOTED([WANT_CPUMINE], [1], [Enable CPUMINING])
  258. driverlist="$driverlist cpu:asm/has_yasm"
  259. driverlist="$driverlist cpu:sse2/have_sse2"
  260. fi
  261. AM_CONDITIONAL([HAS_CPUMINE], [test x$cpumining = xyes])
  262. driverlist="$driverlist opencl"
  263. AC_ARG_ENABLE([opencl],
  264. [AC_HELP_STRING([--enable-opencl],[Compile support for OpenCL (default disabled)])],
  265. [opencl=$enableval],
  266. [opencl=$ddno]
  267. )
  268. if test "x$opencl" = xyes; then
  269. AC_DEFINE([HAVE_OPENCL], [1], [Defined to 1 if OpenCL support is wanted])
  270. fi
  271. AM_CONDITIONAL([HAVE_OPENCL], [test x$opencl = xyes])
  272. m4_define([BFG_PTHREAD_FLAG_CHECK],
  273. AC_MSG_CHECKING([for $1])
  274. for cflag in ' -pthread' ''; do
  275. for lib in ' -lpthread' ' -lwinpthread' ''; do
  276. CFLAGS="${save_CFLAGS}${cflag}"
  277. LIBS="${save_LIBS}${lib}"
  278. AC_LINK_IFELSE([
  279. AC_LANG_PROGRAM([
  280. #include <pthread.h>
  281. ], [
  282. void *f = $1;
  283. ])
  284. ], [
  285. found_pthread=true
  286. PTHREAD_FLAGS="${cflag}"
  287. PTHREAD_LIBS="${lib}"
  288. if test "x${cflag}${lib}" = "x"; then
  289. AC_MSG_RESULT([yes])
  290. else
  291. AC_MSG_RESULT([with${cflag}${lib}])
  292. fi
  293. $2
  294. break 2
  295. ])
  296. done
  297. done
  298. if test "x${found_pthread}" = "xfalse"; then
  299. AC_MSG_RESULT([no])
  300. fi
  301. )
  302. save_CFLAGS="${CFLAGS}"
  303. save_LIBS="${LIBS}"
  304. found_pthread=false
  305. BFG_PTHREAD_FLAG_CHECK([pthread_cancel],[
  306. AC_DEFINE([HAVE_PTHREAD_CANCEL], [1], [Define if you have a native pthread_cancel])
  307. ])
  308. if test "x${found_pthread}" = "xfalse"; then
  309. BFG_PTHREAD_FLAG_CHECK([pthread_create])
  310. if test "x${found_pthread}" = "xfalse"; then
  311. AC_MSG_ERROR([Could not find pthread library - please install libpthread])
  312. fi
  313. fi
  314. # check for nanosleep here, since it is provided by winpthread
  315. AC_CHECK_FUNCS([nanosleep])
  316. CFLAGS="${save_CFLAGS}"
  317. LIBS="${save_LIBS}"
  318. PKG_CHECK_MODULES([JANSSON],[jansson],[
  319. true
  320. ],[
  321. AC_MSG_CHECKING([for jansson in system-default locations])
  322. LIBS="$LIBS -ljansson"
  323. AC_TRY_LINK([
  324. #include <jansson.h>
  325. ],[
  326. json_object();
  327. ],[
  328. AC_MSG_RESULT([found])
  329. JANSSON_LIBS=-ljansson
  330. ],[
  331. AC_MSG_RESULT([not found])
  332. AC_MSG_ERROR([Could not find jansson library])
  333. ])
  334. LIBS="${save_LIBS}"
  335. ])
  336. AC_SUBST(JANSSON_CFLAGS)
  337. AC_SUBST(JANSSON_LIBS)
  338. if test "x$opencl" = xyes; then
  339. adl="$ddyes"
  340. driverlist="$driverlist opencl:sensors/with_sensors"
  341. AC_ARG_WITH([sensors],
  342. [AC_HELP_STRING([--without-sensors],[Build with libsensors monitoring (default enabled)])],
  343. [true],[with_sensors=$ddauto])
  344. if test "x$opencl" != xyes; then
  345. with_sensors=no
  346. fi
  347. if test "x$with_sensors" != xno; then
  348. AC_MSG_CHECKING([for libsensors])
  349. save_LIBS="${LIBS}"
  350. LIBS="$LIBS -lsensors"
  351. AC_LINK_IFELSE([AC_LANG_PROGRAM([
  352. #include <stddef.h>
  353. #include <sensors/sensors.h>
  354. ],[
  355. const sensors_chip_name *cn;
  356. cn = sensors_get_detected_chips(NULL, NULL);
  357. ])],[
  358. with_sensors=yes
  359. sensors_LIBS="-lsensors"
  360. AC_DEFINE([HAVE_SENSORS], [1], [Defined if libsensors was found])
  361. AC_MSG_RESULT([yes])
  362. ],[
  363. with_sensors=no
  364. AC_MSG_RESULT([no])
  365. if ! $have_win32; then
  366. with_sensors_enableaction="install libsensors"
  367. fi
  368. ])
  369. LIBS="$save_LIBS"
  370. fi
  371. AC_SUBST(sensors_LIBS)
  372. driverlist="$driverlist opencl:adl/adl"
  373. AC_ARG_ENABLE([adl],
  374. [AC_HELP_STRING([--disable-adl],[Build without ADL monitoring (default enabled)])],
  375. [adl=$enableval]
  376. )
  377. if test x$adl = xyes
  378. then
  379. AC_DEFINE([HAVE_ADL], [1], [Defined if ADL headers were found])
  380. fi
  381. else
  382. adl="no"
  383. fi
  384. driverlist="$driverlist bitforce"
  385. AC_ARG_ENABLE([bitforce],
  386. [AC_HELP_STRING([--disable-bitforce],[Compile support for BitForce (default enabled)])],
  387. [bitforce=$enableval],
  388. [bitforce=$ddyes]
  389. )
  390. if test "x$bitforce" = xyes; then
  391. AC_DEFINE([USE_BITFORCE], [1], [Defined to 1 if BitForce support is wanted])
  392. driverlist="$driverlist bitforce:pci/need_lowl_pci"
  393. if test "x$lowl_pci" = "xyes"; then
  394. need_lowl_pci=yes
  395. fi
  396. need_lowl_vcom=yes
  397. has_fpga=yes
  398. has_asic=yes
  399. have_udevrules=true
  400. fi
  401. AM_CONDITIONAL([HAS_BITFORCE], [test x$bitforce = xyes])
  402. driverlist="$driverlist icarus cairnsmore/icarus erupter/icarus antminer/icarus"
  403. AC_ARG_ENABLE([icarus],
  404. [AC_HELP_STRING([--disable-icarus],[Compile support for Icarus (default enabled)])],
  405. [icarus=$enableval],
  406. [icarus=$ddyes]
  407. )
  408. if test "x$icarus" = xyes; then
  409. AC_DEFINE([USE_ICARUS], [1], [Defined to 1 if Icarus support is wanted])
  410. need_dynclock=yes
  411. need_lowl_vcom=yes
  412. has_fpga=yes
  413. has_asic=yes
  414. have_udevrules=true
  415. fi
  416. AM_CONDITIONAL([HAS_ICARUS], [test x$icarus = xyes])
  417. driverlist="$driverlist dualminer"
  418. AC_ARG_ENABLE([dualminer],
  419. [AC_HELP_STRING([--disable-dualminer],[Compile support for DualMiner (default enabled)])],
  420. [dualminer=$enableval],
  421. [dualminer=$ddauto]
  422. )
  423. if test "x$dualminer" = "xno"; then
  424. true
  425. elif test "x$icarus" = "xyes"; then
  426. dualminer=yes
  427. elif test "x$dualminer" = "xyes"; then
  428. AC_MSG_ERROR([You explicitly disabled Icarus and explicitly enabled DualMiner])
  429. else
  430. dualminer=no
  431. fi
  432. if test "x$dualminer" = "xyes"; then
  433. AC_DEFINE([USE_DUALMINER], [1], [Defined to 1 if DualMiner support is wanted])
  434. need_gc3355=yes
  435. fi
  436. AM_CONDITIONAL([USE_DUALMINER], [test x$dualminer = xyes])
  437. driverlist="$driverlist zeusminer"
  438. AC_ARG_ENABLE([zeusminer],
  439. [AC_HELP_STRING([--disable-zeusminer],[Compile support for ZeusMiner (default enabled with scrypt)])],
  440. [zeusminer=$enableval],
  441. [zeusminer=$scrypt])
  442. if test "x$zeusminer" = "xno"; then
  443. true
  444. elif test "x$icarus" = "xyes"; then
  445. if test "x$scrypt" = "xno"; then
  446. AC_MSG_ERROR([You explicitly enabled ZeusMiner, but did not enable scrypt])
  447. else
  448. zeusminer=yes
  449. fi
  450. elif test "x$zeusminer" = "xyes"; then
  451. AC_MSG_ERROR([You explicitly disabled Icarus and explicitly enabled ZeusMiner])
  452. else
  453. zeusminer=no
  454. fi
  455. if test "x$zeusminer" = "xyes"; then
  456. AC_DEFINE([USE_ZEUSMINER], [1], [Defined to 1 if ZeusMiner support is wanted])
  457. has_asic=yes
  458. fi
  459. AM_CONDITIONAL([USE_ZEUSMINER], [test x$zeusminer = xyes])
  460. driverlist="$driverlist gridseed"
  461. AC_ARG_ENABLE([gridseed],
  462. [AC_HELP_STRING([--disable-gridseed],[Compile support for GridSeed (default enabled with scrypt)])],
  463. [gridseed=$enableval],
  464. [gridseed=$scrypt])
  465. if test "x$gridseed" = "xyes"; then
  466. if test "x$scrypt" = "xno"; then
  467. AC_MSG_ERROR([You explicitly enabled GridSeed, but did not enable scrypt (SHA2 not supported)])
  468. fi
  469. AC_DEFINE([USE_GRIDSEED], [1], [Defined to 1 if GridSeed support is wanted])
  470. need_gc3355=yes
  471. need_lowl_vcom=yes
  472. has_asic=yes
  473. fi
  474. AM_CONDITIONAL([USE_GRIDSEED], [test x$gridseed = xyes])
  475. driverlist="$driverlist avalon"
  476. avalon="no"
  477. AC_ARG_ENABLE([avalon],
  478. [AC_HELP_STRING([--disable-avalon],[Compile support for Avalon (default enabled)])],
  479. [avalon=$enableval],
  480. [avalon=$ddyes]
  481. )
  482. if test "x$avalon" = xyes; then
  483. AC_DEFINE([USE_AVALON], [1], [Defined to 1 if Avalon support is wanted])
  484. need_lowl_vcom=yes
  485. has_asic=yes
  486. fi
  487. AM_CONDITIONAL([HAS_AVALON], [test x$avalon = xyes])
  488. driverlist="$driverlist knc"
  489. AC_ARG_ENABLE([knc],
  490. [AC_HELP_STRING([--enable-knc],[Compile support for KnC (default disabled)])],
  491. [knc=$enableval],
  492. [knc=$ddno]
  493. )
  494. if test "x$knc" = xyes; then
  495. AC_CHECK_HEADERS([linux/i2c-dev-user.h])
  496. AC_CHECK_DECL([i2c_smbus_read_word_data],[true],[
  497. AC_MSG_ERROR([linux/i2c-dev.h header from i2c-tools (NOT linux headers) is required for knc driver])
  498. ],[
  499. #include <stddef.h>
  500. #ifdef HAVE_LINUX_I2C_DEV_USER_H
  501. #include <linux/i2c-dev-user.h>
  502. #else
  503. #ifdef NEED_LINUX_I2C_H
  504. #include <linux/i2c.h>
  505. #endif
  506. #include <linux/i2c-dev.h>
  507. #endif
  508. ])
  509. AC_DEFINE([USE_KNC], [1], [Defined to 1 if KnC support is wanted])
  510. need_lowl_spi=yes
  511. fi
  512. AM_CONDITIONAL([USE_KNC], [test x$knc = xyes])
  513. AC_ARG_WITH([libmicrohttpd],
  514. [AC_HELP_STRING([--without-libmicrohttpd],[Compile support for libmicrohttpd getwork server (default enabled)])],
  515. [httpsrv=$withval],
  516. [httpsrv=$ddauto]
  517. )
  518. if test "x$httpsrv" != "xno"; then
  519. PKG_CHECK_MODULES([libmicrohttpd],[libmicrohttpd >= 0.9.5],[
  520. AC_DEFINE([USE_LIBMICROHTTPD],[1],[Defined to 1 if libmicrohttpd support is wanted])
  521. httpsrv=yes
  522. ],[
  523. httpsrv=no
  524. httpsrv_enableaction="install libmicrohttpd 0.9.5+"
  525. need_bfg_driver_proxy_enableaction="install libmicrohttpd 0.9.5+"
  526. if test "x$httpsrv" = "xyes"; then
  527. AC_MSG_ERROR([Unable to find libmicrohttpd 0.9.5+])
  528. else
  529. AC_MSG_WARN([libmicrohttpd 0.9.5+ not found; getwork proxy will be unavailable])
  530. fi
  531. ])
  532. fi
  533. AM_CONDITIONAL([USE_LIBMICROHTTPD], [test x$httpsrv = xyes])
  534. AC_ARG_WITH([libevent],
  535. [AC_HELP_STRING([--without-libevent],[Compile support for libevent stratum server (default enabled)])],
  536. [libevent=$withval],
  537. [libevent=$ddauto]
  538. )
  539. if test "x$libevent" != "xno"; then
  540. PKG_CHECK_MODULES([libevent],[libevent >= 2.0.3],[
  541. AC_DEFINE([USE_LIBEVENT],[1],[Defined to 1 if libevent support is wanted])
  542. libevent=yes
  543. ],[
  544. libevent=no
  545. libevent_enableaction="install libevent 2.0.3+"
  546. if test -n "$need_bfg_driver_proxy_enableaction"; then
  547. need_bfg_driver_proxy_enableaction="${need_bfg_driver_proxy_enableaction} (getwork) or libevent 2.0.3+ (stratum)"
  548. else
  549. need_bfg_driver_proxy_enableaction="install libevent 2.0.3+"
  550. fi
  551. if test "x$libevent" = "xyes"; then
  552. AC_MSG_ERROR([Unable to find libevent 2.0.3+])
  553. else
  554. AC_MSG_WARN([libevent 2.0.3+ not found; stratum proxy will be unavailable])
  555. fi
  556. ])
  557. if test "x$libevent" = "xyes"; then
  558. need_work2d=yes
  559. fi
  560. fi
  561. AM_CONDITIONAL([USE_LIBEVENT], [test x$libevent = xyes])
  562. driverlist="$driverlist proxy/need_bfg_driver_proxy"
  563. if test x$libevent$httpsrv = xnono; then
  564. need_bfg_driver_proxy=no
  565. else
  566. need_bfg_driver_proxy=yes
  567. driverlist="$driverlist proxy:getwork/httpsrv proxy:stratum/libevent"
  568. fi
  569. AM_CONDITIONAL([NEED_BFG_DRIVER_PROXY], [test x$libevent$httpsrv != xnono])
  570. driverlist="$driverlist modminer"
  571. AC_ARG_ENABLE([modminer],
  572. [AC_HELP_STRING([--disable-modminer],[Compile support for ModMiner (default enabled)])],
  573. [modminer=$enableval],
  574. [modminer=$ddyes]
  575. )
  576. if test "x$modminer" = xyes; then
  577. AC_DEFINE([USE_MODMINER], [1], [Defined to 1 if ModMiner support is wanted])
  578. need_dynclock=yes
  579. need_lowl_vcom=yes
  580. need_binloader=yes
  581. has_fpga=yes
  582. have_udevrules=true
  583. fi
  584. AM_CONDITIONAL([HAS_MODMINER], [test x$modminer = xyes])
  585. PKG_PROG_PKG_CONFIG()
  586. libusb=no
  587. libusb_include_path=""
  588. AC_ARG_WITH([libusb],
  589. [AC_HELP_STRING([--without-libusb],[Compile using libusb (default enabled)])],
  590. [want_libusb=$withval],
  591. [want_libusb=auto]
  592. )
  593. if test "x$want_libusb" != "xno"; then
  594. PKG_CHECK_MODULES([LIBUSB], [libusb-1.0],[
  595. libusb=yes
  596. ],[
  597. for usb_lib in usb-1.0 usb; do
  598. AC_CHECK_LIB($usb_lib, libusb_init, [
  599. libusb=yes
  600. break
  601. ])
  602. done
  603. if test "x$libusb" = xyes; then
  604. AC_CHECK_DECL([libusb_init],[
  605. LIBUSB_LIBS="-l$usb_lib"
  606. ],[
  607. AC_MSG_CHECKING([whether libusb_init is declared in subdirectory])
  608. libusb_include_path=`echo '#include <libusb-1.0/libusb.h>' | ${CPP} -M - 2>/dev/null | sed -E -e 's/^[^:]+:[[:space:]]*(([^[:space:]]|\\\\[[:space:]])*)libusb\\.h([[:space:]].*|$)$/\\1/' -e 't my' -e d -e ': my' -e 's/\\\\?([\\\\[:space:]])/\\\\\\1/g'`
  609. if test "x$libusb_include_path" != "x"; then
  610. LIBUSB_LIBS="-l$usb_lib"
  611. LIBUSB_CFLAGS="-I$libusb_include_path"
  612. AC_MSG_RESULT([yes])
  613. else
  614. libusb=no
  615. AC_MSG_RESULT([no])
  616. fi
  617. ],[#include <libusb.h>])
  618. fi
  619. ])
  620. fi
  621. driverlist="$driverlist klondike hashbusteravalon/klondike"
  622. AC_ARG_ENABLE([klondike],
  623. [AC_HELP_STRING([--disable-klondike],[Compile support for Klondike (default enabled)])],
  624. [klondike=$enableval],
  625. [klondike=$ddauto]
  626. )
  627. if test "x$klondike$want_libusb" = xyesno; then
  628. AC_MSG_ERROR([You disabled libusb, required for Klondike support])
  629. elif test "x$klondike$libusb" = xyesno; then
  630. AC_MSG_ERROR([Could not find libusb, required for Klondike support])
  631. elif test "x$klondike" = xauto; then
  632. klondike="$libusb"
  633. if test "x$libusb" = xno; then
  634. AC_MSG_WARN([Could not find libusb, required for Klondike support])
  635. klondike_enableaction="install libusb 1.0+"
  636. fi
  637. fi
  638. if test "x$klondike" = xyes; then
  639. AC_DEFINE([USE_KLONDIKE], [1], [Defined to 1 if Klondike support is wanted])
  640. need_lowl_usb=yes
  641. has_asic=yes
  642. have_udevrules=true
  643. fi
  644. AM_CONDITIONAL([HAS_KLONDIKE], [test x$klondike = xyes])
  645. driverlist="$driverlist x6500"
  646. AC_ARG_ENABLE([x6500],
  647. [AC_HELP_STRING([--disable-x6500],[Compile support for X6500 (default if libusb)])],
  648. [x6500=$enableval],
  649. [x6500=$ddauto]
  650. )
  651. if test "x$x6500$want_libusb" = xyesno; then
  652. AC_MSG_ERROR([You disabled libusb, required for X6500 support])
  653. elif test "x$x6500$libusb" = xyesno; then
  654. AC_MSG_ERROR([Could not find libusb, required for X6500 support])
  655. elif test "x$x6500" = xauto; then
  656. x6500="$libusb"
  657. if test "x$libusb" = xno; then
  658. AC_MSG_WARN([Could not find libusb, required for X6500 support])
  659. x6500_enableaction="install libusb 1.0+"
  660. fi
  661. fi
  662. if test "x$x6500" = xyes; then
  663. AC_DEFINE([USE_X6500], [1], [Defined to 1 if X6500 support is wanted])
  664. need_dynclock=yes
  665. need_lowl_ftdi=yes
  666. need_binloader=yes
  667. has_fpga=yes
  668. have_udevrules=true
  669. fi
  670. AM_CONDITIONAL([HAS_X6500], [test x$x6500 = xyes])
  671. driverlist="$driverlist ztex"
  672. AC_ARG_ENABLE([ztex],
  673. [AC_HELP_STRING([--disable-ztex],[Compile support for ZTEX (default if libusb)])],
  674. [ztex=$enableval],
  675. [ztex=$ddauto]
  676. )
  677. if test "x$ztex$want_libusb" = xyesno; then
  678. AC_MSG_ERROR([You disabled libusb, required for ZTEX support])
  679. elif test "x$ztex$libusb" = xyesno; then
  680. AC_MSG_ERROR([Could not find libusb, required for ZTEX support])
  681. elif test "x$ztex" = xauto; then
  682. ztex="$libusb"
  683. if test "x$libusb" = xno; then
  684. AC_MSG_WARN([Could not find libusb, required for ZTEX support])
  685. ztex_enableaction="install libusb 1.0+"
  686. fi
  687. fi
  688. if test "x$ztex" = xyes; then
  689. AC_DEFINE([USE_ZTEX], [1], [Defined to 1 if ZTEX support is wanted])
  690. need_dynclock=yes
  691. need_lowl_usb=yes
  692. need_binloader=yes
  693. has_fpga=yes
  694. have_udevrules=true
  695. fi
  696. AM_CONDITIONAL([HAS_ZTEX], [test x$ztex = xyes])
  697. driverlist="$driverlist bifury"
  698. AC_ARG_ENABLE([bifury],
  699. [AC_HELP_STRING([--disable-bifury],[Compile support for Bi*Fury (default enabled)])],
  700. [bifury=$enableval],
  701. [bifury=$ddyes]
  702. )
  703. if test "x$bifury" = "xyes"; then
  704. AC_DEFINE([USE_BIFURY], [1], [Defined to 1 if Bi*Fury support is wanted])
  705. need_lowl_vcom=yes
  706. has_asic=yes
  707. have_udevrules=true
  708. fi
  709. AM_CONDITIONAL([USE_BIFURY], [test x$bifury = xyes])
  710. driverlist="$driverlist bitfury_gpio/bitfury"
  711. AC_ARG_ENABLE([bitfury],
  712. [AC_HELP_STRING([--disable-bitfury],[Compile support for Bitfury (default enabled)])],
  713. [bitfury=$enableval],
  714. [bitfury=$ddyes]
  715. )
  716. if test "x$bitfury" = xyes; then
  717. AC_DEFINE([USE_BITFURY], [1], [Defined to 1 if Bitfury support is wanted])
  718. need_lowl_spi=yes
  719. fi
  720. AM_CONDITIONAL([HAS_BITFURY], [test x$bitfury = xyes])
  721. driverlist="$driverlist bfsb"
  722. AC_ARG_ENABLE([bfsb],
  723. [AC_HELP_STRING([--enable-bfsb],[Compile support for BFSB (default disabled)])],
  724. [bfsb=$enableval],
  725. [bfsb=$ddno]
  726. )
  727. if test "x$bfsb" = "xyes"; then
  728. if test "x$bitfury" = "xno"; then
  729. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled BFSB])
  730. fi
  731. AC_DEFINE([USE_BFSB], [1], [Defined to 1 if BFSB support is wanted])
  732. fi
  733. AM_CONDITIONAL([HAS_BFSB], [test x$bfsb = xyes])
  734. driverlist="$driverlist bigpic"
  735. AC_ARG_ENABLE([bigpic],
  736. [AC_HELP_STRING([--disable-bigpic],[Compile support for Big Picture Mining USB (default enabled)])],
  737. [bigpic=$enableval],
  738. [bigpic=$ddauto]
  739. )
  740. if test "x$bigpic" = "xno"; then
  741. true
  742. elif test "x$bitfury" = "xyes"; then
  743. bigpic=yes
  744. elif test "x$bigpic" = "xyes"; then
  745. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled BigPic])
  746. else
  747. bigpic=no
  748. fi
  749. if test "x$bigpic" = "xyes"; then
  750. AC_DEFINE([USE_BIGPIC], [1], [Defined to 1 if Big Picture Mining USB support is wanted])
  751. need_lowl_vcom=yes
  752. has_asic=yes
  753. have_udevrules=true
  754. fi
  755. AM_CONDITIONAL([HAS_BIGPIC], [test x$bigpic = xyes])
  756. driverlist="$driverlist bfx"
  757. AC_ARG_ENABLE([bfx],
  758. [AC_HELP_STRING([--disable-bfx],[Compile support for BFx2 (default if libusb)])],
  759. [bfx=$enableval],
  760. [bfx=$ddauto]
  761. )
  762. if test "x$bfx" = "xno"; then
  763. true
  764. elif test "x$bitfury$libusb" = "xyesyes"; then
  765. bfx=yes
  766. elif test "x$bfx" = "xyes"; then
  767. if test "x$want_libusb" = "xno"; then
  768. AC_MSG_ERROR([You disabled libusb, required for BFx2 support])
  769. elif test "x$libusb" = "xno"; then
  770. AC_MSG_ERROR([Could not find libusb, required for BFx2 support])
  771. else
  772. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled BFx2])
  773. fi
  774. elif test "x$bfx" = "xauto"; then
  775. bfx="$libusb"
  776. if test "x$libusb" = xno; then
  777. AC_MSG_WARN([Could not find libusb, required for BFx2 support])
  778. bfx_enableaction="install libusb 1.0+"
  779. fi
  780. fi
  781. if test "x$bfx" = xyes; then
  782. AC_DEFINE([USE_BFX], [1], [Defined to 1 if BFx2 support is wanted])
  783. need_lowl_ftdi=yes
  784. has_asic=yes
  785. fi
  786. AM_CONDITIONAL([USE_BFX], [test x$bfx = xyes])
  787. driverlist="$driverlist drillbit"
  788. AC_ARG_ENABLE([drillbit],
  789. [AC_HELP_STRING([--disable-drillbit],[Compile support for DrillBit (default enabled)])],
  790. [drillbit=$enableval],
  791. [drillbit=$ddauto]
  792. )
  793. if test "x$drillbit" = "xno"; then
  794. true
  795. elif test "x$bitfury" = "xyes"; then
  796. drillbit=yes
  797. elif test "x$drillbit" = "xyes"; then
  798. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled DrillBit])
  799. else
  800. drillbit=no
  801. fi
  802. if test "x$drillbit" = "xyes"; then
  803. AC_DEFINE([USE_DRILLBIT], [1], [Defined to 1 if DrillBit support is wanted])
  804. need_lowl_vcom=yes
  805. has_asic=yes
  806. have_udevrules=true
  807. fi
  808. AM_CONDITIONAL([USE_DRILLBIT], [test x$drillbit = xyes])
  809. driverlist="$driverlist twinfury"
  810. AC_ARG_ENABLE([twinfury],
  811. [AC_HELP_STRING([--disable-twinfury],[Compile support for Twinfury USB miner (default enabled)])],
  812. [twinfury=$enableval],
  813. [twinfury=$ddauto]
  814. )
  815. if test "x$twinfury" = "xno"; then
  816. true
  817. elif test "x$bitfury" = "xyes"; then
  818. twinfury=yes
  819. elif test "x$twinfury" = "xyes"; then
  820. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled Twinfury])
  821. else
  822. twinfury=no
  823. fi
  824. if test "x$twinfury" = "xyes"; then
  825. AC_DEFINE([USE_TWINFURY], [1], [Defined to 1 if Twinfury USB miner support is wanted])
  826. need_lowl_vcom=yes
  827. has_asic=yes
  828. have_udevrules=true
  829. fi
  830. AM_CONDITIONAL([HAS_TWINFURY], [test x$twinfury = xyes])
  831. driverlist="$driverlist littlefury"
  832. AC_ARG_ENABLE([littlefury],
  833. [AC_HELP_STRING([--disable-littlefury],[Compile support for LittleFury (default enabled)])],
  834. [littlefury=$enableval],
  835. [littlefury=$ddauto]
  836. )
  837. if test "x$littlefury" = "xno"; then
  838. true
  839. elif test "x$bitfury" = "xyes"; then
  840. littlefury=yes
  841. elif test "x$littlefury" = "xyes"; then
  842. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled LittleFury])
  843. else
  844. littlefury=no
  845. fi
  846. if test "x$littlefury" = "xyes"; then
  847. AC_DEFINE([USE_LITTLEFURY], [1], [Defined to 1 if LittleFury support is wanted])
  848. need_lowl_vcom=yes
  849. has_asic=yes
  850. have_udevrules=true
  851. fi
  852. AM_CONDITIONAL([HAS_LITTLEFURY], [test x$littlefury = xyes])
  853. found_hidapi=false
  854. for _hidapi_lib in hidapi hidapi-hidraw hidapi-libusb; do
  855. PKG_CHECK_MODULES([hidapi],[$_hidapi_lib],[
  856. found_hidapi=true
  857. break
  858. ],[
  859. true
  860. ])
  861. done
  862. driverlist="$driverlist nanofury"
  863. AC_ARG_ENABLE([nanofury],
  864. [AC_HELP_STRING([--disable-nanofury],[Compile support for NanoFury (default enabled)])],
  865. [nanofury=$enableval],
  866. [nanofury=$ddauto]
  867. )
  868. if test "x$nanofury" = "xno"; then
  869. true
  870. elif test "x$bitfury" = "xyes"; then
  871. if test x$found_hidapi = xtrue; then
  872. nanofury=yes
  873. else
  874. if test x$nanofury = xauto; then
  875. nanofury=no
  876. nanofury_enableaction="install hidapi"
  877. else
  878. AC_MSG_ERROR([Could not find hidapi, required for NanoFury support])
  879. fi
  880. fi
  881. elif test "x$nanofury" = "xyes"; then
  882. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled NanoFury])
  883. else
  884. nanofury=no
  885. fi
  886. if test "x$nanofury" = "xyes"; then
  887. AC_DEFINE([USE_NANOFURY], [1], [Defined to 1 if NanoFury support is wanted])
  888. need_lowl_hid=yes
  889. has_asic=yes
  890. have_udevrules=true
  891. fi
  892. AM_CONDITIONAL([HAS_NANOFURY], [test x$nanofury = xyes])
  893. driverlist="$driverlist hashbuster"
  894. AC_ARG_ENABLE([hashbuster],
  895. [AC_HELP_STRING([--disable-hashbuster],[Compile support for HashBuster Nano (default enabled)])],
  896. [hashbuster=$enableval],
  897. [hashbuster=$ddauto],
  898. )
  899. if test "x$hashbuster" = "xno"; then
  900. true
  901. elif test "x$bitfury" = "xyes"; then
  902. if test x$found_hidapi = xtrue; then
  903. hashbuster=yes
  904. else
  905. if test x$hashbuster = xauto; then
  906. hashbuster=no
  907. hashbuster_enableaction="install hidapi"
  908. else
  909. AC_MSG_ERROR([Could not find hidapi, required for HashBuster Nano support])
  910. fi
  911. fi
  912. elif test "x$hashbuster" = "xyes"; then
  913. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled HashBuster Nano])
  914. else
  915. hashbuster=no
  916. fi
  917. if test "x$hashbuster" = "xyes"; then
  918. AC_DEFINE([USE_HASHBUSTER], [1], [Defined to 1 if HashBuster Nano support is wanted])
  919. need_lowl_hid=yes
  920. has_asic=yes
  921. have_udevrules=true
  922. fi
  923. AM_CONDITIONAL([USE_HASHBUSTER], [test x$hashbuster = xyes])
  924. driverlist="$driverlist hashbusterusb"
  925. AC_ARG_ENABLE([hashbusterusb],
  926. [AC_HELP_STRING([--disable-hashbusterusb],[Compile support for HashBuster Micro (default if libusb)])],
  927. [hashbusterusb=$enableval],
  928. [hashbusterusb=$ddauto]
  929. )
  930. if test "x$hashbusterusb$want_libusb" = xyesno; then
  931. AC_MSG_ERROR([You disabled libusb, required for HashBuster Micro support])
  932. elif test "x$hashbusterusb$libusb" = xyesno; then
  933. AC_MSG_ERROR([Could not find libusb, required for HashBuster Micro support])
  934. elif test "x$hashbusterusb" = xauto; then
  935. hashbusterusb="$libusb"
  936. if test "x$libusb" = xno; then
  937. AC_MSG_WARN([Could not find libusb, required for HashBuster Micro support])
  938. hashbusterusb_enableaction="install libusb 1.0+"
  939. fi
  940. fi
  941. if test "x$hashbusterusb" = xyes; then
  942. AC_DEFINE([USE_HASHBUSTERUSB], [1], [Defined to 1 if HashBuster Micro support is wanted])
  943. need_lowl_usb=yes
  944. has_asic=yes
  945. have_udevrules=true
  946. fi
  947. AM_CONDITIONAL([USE_HASHBUSTERUSB], [test x$hashbusterusb = xyes])
  948. driverlist="$driverlist hashfast"
  949. AC_ARG_ENABLE([hashfast],
  950. [AC_HELP_STRING([--disable-hashfast],[Compile support for HashFast (default enabled)])],
  951. [hashfast=$enableval],
  952. [hashfast=$ddyes]
  953. )
  954. if test "x$hashfast" = xyes; then
  955. AC_DEFINE([USE_HASHFAST], [1], [Defined to 1 if HashFast support is wanted])
  956. need_lowl_vcom=yes
  957. has_asic=yes
  958. have_udevrules=true
  959. fi
  960. AM_CONDITIONAL([USE_HASHFAST], [test x$hashfast = xyes])
  961. driverlist="$driverlist metabank"
  962. AC_ARG_ENABLE([metabank],
  963. [AC_HELP_STRING([--enable-metabank],[Compile support for Metabank (default disabled)])],
  964. [metabank=$enableval],
  965. [metabank=$ddno]
  966. )
  967. if test "x$metabank" = "xyes"; then
  968. if test "x$bitfury" = "xno"; then
  969. AC_MSG_ERROR([You explicitly disabled Bitfury and explicitly enabled Metabank])
  970. fi
  971. AC_DEFINE([USE_METABANK], [1], [Defined to 1 if Metabank support is wanted])
  972. fi
  973. AM_CONDITIONAL([HAS_METABANK], [test x$metabank = xyes])
  974. driverlist="$driverlist rockminer"
  975. AC_ARG_ENABLE([rockminer],
  976. [AC_HELP_STRING([--disable-rockminer],[Compile support for RockMiner (default enabled)])],
  977. [rockminer=$enableval],
  978. [rockminer=$ddyes]
  979. )
  980. if test "x$rockminer" = xyes; then
  981. AC_DEFINE([USE_ROCKMINER], [1], [Defined to 1 if RockMiner support is wanted])
  982. need_lowl_vcom=yes
  983. has_asic=yes
  984. have_udevrules=true
  985. fi
  986. AM_CONDITIONAL([USE_ROCKMINER], [test x$rockminer = xyes])
  987. if test "x$need_lowl_vcom" != "xno"; then
  988. # Lowlevel VCOM doesn't need libusb, but it can take advantage of it to reattach drivers
  989. if test "x$libusb" != xno; then
  990. need_lowl_usb=yes
  991. elif test "x$libusb$want_libusb" = xnoyes; then
  992. AC_MSG_ERROR([Could not find libusb, which you specifically requested])
  993. fi
  994. fi
  995. lowllist="$lowllist ftdi/need_lowl_ftdi"
  996. if test x$need_lowl_ftdi = xyes; then
  997. AC_DEFINE([NEED_BFG_LOWL_FTDI], [1], [Defined to 1 if lowlevel ftdi drivers are being used])
  998. need_lowl_usb=yes
  999. fi
  1000. lowllist="$lowllist spi/need_lowl_spi"
  1001. if test x$need_lowl_spi = xyes; then
  1002. AC_DEFINE([NEED_BFG_LOWL_SPI], [1], [Defined to 1 if lowlevel SPI drivers are being used])
  1003. fi
  1004. if test "x$need_lowl_usb" = "xno"; then
  1005. libusb=no
  1006. LIBUSB_LIBS=''
  1007. LIBUSB_CFLAGS=''
  1008. fi
  1009. if test "x$libusb" = xyes; then
  1010. AC_DEFINE([HAVE_LIBUSB], [1], [Define if you have libusb-1.0])
  1011. save_CFLAGS="$CFLAGS"
  1012. CFLAGS="$LIBUSB_CFLAGS $CFLAGS"
  1013. AC_CHECK_DECLS([libusb_error_name],[true],[true],[#include <libusb.h>])
  1014. CFLAGS="$save_CFLAGS"
  1015. fi
  1016. if test x$need_lowl_vcom = xyes; then
  1017. AC_DEFINE([NEED_BFG_LOWL_VCOM], [1], [Defined to 1 if lowlevel VCOM drivers are being used])
  1018. need_lowlevel=yes
  1019. if $have_win32; then
  1020. echo '#include <iospeeds.h>' >iospeeds_local.h
  1021. found_ddkusb=false
  1022. AC_CHECK_HEADER([usbiodef.h],[
  1023. found_ddkusb=true
  1024. ],[
  1025. AC_CHECK_HEADER([ddk/usbiodef.h],[
  1026. found_ddkusb=true
  1027. AUTOSCAN_CPPFLAGS="-I"`echo '#include <ddk/usbiodef.h>' | ${CPP} -M - 2>/dev/null | sed -E -e 's/^[^:]+:[[:space:]]*(([^[:space:]]|\\\\[[:space:]])*)usbiodef\\.h([[:space:]].*|$)$/\\1/' -e 't my' -e d -e ': my' -e 's/\\\\?([\\\\[:space:]])/\\\\\\1/g'`
  1028. ],[
  1029. true
  1030. ],[
  1031. #include <windows.h>
  1032. #include <ddk/usbioctl.h>
  1033. AC_INCLUDES_DEFAULT
  1034. ])
  1035. ],[
  1036. #include <windows.h>
  1037. #include <usbioctl.h>
  1038. AC_INCLUDES_DEFAULT
  1039. ])
  1040. if $found_ddkusb; then
  1041. AUTOSCAN_LIBS="-lsetupapi"
  1042. AC_DEFINE([HAVE_WIN_DDKUSB],[1],[Defined to 1 if Windows DDK USB headers are being used])
  1043. fi
  1044. else
  1045. AC_MSG_CHECKING([what baud rates your system supports])
  1046. echo '#include <termios.h>' | ${CPP} -dM - 2>/dev/null | sed 's/.*[ ]B\([0-9][0-9]*\)[ ].*/IOSPEED(\1)/' | grep IOSPEED >iospeeds_local.h
  1047. if grep -q IOSPEED iospeeds_local.h; then
  1048. AC_MSG_RESULT([done])
  1049. else
  1050. AC_MSG_RESULT([failed, using standard POSIX])
  1051. echo '#include <iospeeds_posix.h>' >iospeeds_local.h
  1052. fi
  1053. fi
  1054. fi
  1055. if test "x$opencl$need_lowl_hid" = xnono; then
  1056. DLOPEN_FLAGS=""
  1057. fi
  1058. lowllist="$lowllist hid/need_lowl_hid"
  1059. if test x$need_lowl_hid = xyes; then
  1060. AC_DEFINE([NEED_BFG_LOWL_HID], [1], [Defined to 1 if lowlevel hid drivers are being used])
  1061. need_lowlevel=yes
  1062. fi
  1063. lowllist="$lowllist pci/need_lowl_pci"
  1064. if test x$need_lowl_pci = xyes; then
  1065. AC_DEFINE([NEED_BFG_LOWL_PCI], [1], [Defined to 1 if lowlevel PCI drivers are being used])
  1066. need_lowlevel=yes
  1067. lowllist="$lowllist pci:uio/uio"
  1068. if test x$uio = xyes; then
  1069. AC_DEFINE([USE_UIO], [1], [Defined to 1 if lowlevel PCI drivers should support UIO])
  1070. fi
  1071. lowllist="$lowllist pci:vfio/vfio"
  1072. if test x$vfio = xyes; then
  1073. AC_DEFINE([USE_VFIO], [1], [Defined to 1 if lowlevel PCI drivers should support VFIO])
  1074. fi
  1075. fi
  1076. lowllist="$lowllist usb/need_lowl_usb"
  1077. if test x$need_lowl_usb = xyes; then
  1078. need_lowlevel=yes
  1079. fi
  1080. lowllist="$lowllist vcom/need_lowl_vcom"
  1081. if test x$need_lowl_vcom = xyes; then
  1082. need_lowlevel=yes
  1083. fi
  1084. if test x$need_lowlevel = xyes; then
  1085. AC_DEFINE([HAVE_BFG_LOWLEVEL], [1], [Defined to 1 if lowlevel drivers are being used])
  1086. fi
  1087. curses="auto"
  1088. AC_ARG_WITH([curses],
  1089. [AC_HELP_STRING([--without-curses],[Compile support for curses TUI (default enabled)])],
  1090. [curses=$withval]
  1091. )
  1092. if test "x$curses" = "xno"; then
  1093. optlist="$optlist curses"
  1094. else
  1095. curses_enableaction="install a curses library"
  1096. orig_libs="$LIBS"
  1097. if test "x${curses}" = "xyes"; then
  1098. preferl=''
  1099. else
  1100. preferl="${curses} ${curses}6 ${curses}5"
  1101. fi
  1102. for wideornot in w u ''; do
  1103. for ncursesver in '' 6 5; do
  1104. preferl="${preferl} ncurses${wideornot}${ncursesver}"
  1105. done
  1106. preferl="${preferl} pdcurses${wideornot}"
  1107. done
  1108. if test "x$cross_compiling" != "xyes"; then
  1109. AC_MSG_CHECKING([for best native curses library])
  1110. orig_cflags="$CFLAGS"
  1111. for curses_lib in ${preferl}; do
  1112. if ! ${curses_lib}-config --cflags >/dev/null 2>/dev/null; then
  1113. continue
  1114. fi
  1115. CFLAGS="$orig_cflags $(${curses_lib}-config --cflags)"
  1116. LIBS="$orig_libs $(${curses_lib}-config --libs)"
  1117. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  1118. #include <curses.h>
  1119. ]], [[
  1120. WINDOW *w = NULL;
  1121. mvwprintw(w, 2, 2, "Testing %s", "o hai");
  1122. ]])], [
  1123. curses=yes
  1124. optlist="$optlist ${curses_lib}/curses"
  1125. AC_MSG_RESULT([$curses_lib])
  1126. NCURSES_LIBS=`${curses_lib}-config --libs`
  1127. NCURSES_CPPFLAGS=`${curses_lib}-config --cflags`
  1128. break
  1129. ], [
  1130. AC_MSG_WARN([${curses_lib} doesn't seem to be installed properly])
  1131. ])
  1132. done
  1133. CFLAGS="$orig_cflags"
  1134. if test "x$curses" != "xyes"; then
  1135. AC_MSG_RESULT([none?])
  1136. fi
  1137. fi
  1138. if test "x$curses" != "xyes"; then
  1139. sym=addstr
  1140. AC_SEARCH_LIBS(${sym}, ${preferl}, [
  1141. curses=yes
  1142. eval "curseslib=\"\${ac_cv_search_${sym}}\""
  1143. barelib="${curseslib/-l/}"
  1144. optlist="$optlist ${barelib}/curses"
  1145. if test "x${curseslib}" != "xnone required"; then
  1146. NCURSES_LIBS="${curseslib}"
  1147. fi
  1148. # Need to check for headers in subdirectories, to ensure we get wide stuff
  1149. AC_MSG_CHECKING([for curses header subdirectory])
  1150. barelib="${barelib/6/}"
  1151. barelib="${barelib/5/}"
  1152. cursesincl=`echo '#include <'"${barelib}"'/curses.h>' | ${CPP} -M - 2>/dev/null | sed -E -e 's/^[^:]+:[[:space:]]*(([^[:space:]]|\\\\[[:space:]])*)curses\\.h([[:space:]].*|$)$/\\1/' -e 't my' -e d -e ': my' -e 's/\\\\?([\\\\[:space:]])/\\\\\\1/g'`
  1153. if test "x$cursesincl" != "x"; then
  1154. NCURSES_CPPFLAGS="-I${cursesincl}"
  1155. AC_MSG_RESULT([$cursesincl])
  1156. else
  1157. AC_MSG_RESULT([none found])
  1158. fi
  1159. break
  1160. ], [
  1161. if test "x$curses" = "xyes"; then
  1162. AC_MSG_ERROR([Could not find curses library - please install libncurses-dev or pdcurses-dev (or configure --without-curses)])
  1163. else
  1164. AC_MSG_WARN([Could not find curses library - if you want a TUI, install libncurses-dev or pdcurses-dev])
  1165. curses=no
  1166. optlist="$optlist curses"
  1167. fi
  1168. ])
  1169. fi
  1170. if test "x$curses" = "xyes"; then
  1171. AC_DEFINE([HAVE_CURSES], [1], [Defined to 1 if curses TUI support is wanted])
  1172. AC_MSG_CHECKING([whether curses library supports wide characters])
  1173. LIBS="$orig_libs $NCURSES_CPPFLAGS $NCURSES_LIBS"
  1174. AC_LINK_IFELSE([
  1175. AC_LANG_PROGRAM([
  1176. #define PDC_WIDE
  1177. #include <curses.h>
  1178. ],[
  1179. addwstr(L"test");
  1180. add_wch(WACS_VLINE);
  1181. ])
  1182. ],[
  1183. AC_MSG_RESULT([yes])
  1184. AC_DEFINE([USE_UNICODE],[1],[Defined to 1 if curses supports wide characters])
  1185. ],[
  1186. AC_MSG_RESULT([no])
  1187. ])
  1188. fi
  1189. LIBS="$orig_libs"
  1190. fi
  1191. maybe_ldconfig=
  1192. AC_ARG_WITH([system-libblkmaker], [AC_HELP_STRING([--with-system-libblkmaker], [Use system libblkmaker rather than bundled one (default disabled)])],[true],[with_system_libblkmaker=no])
  1193. if test "x$with_system_libblkmaker" = "xyes"; then
  1194. PKG_CHECK_MODULES([libblkmaker],[libblkmaker_jansson-0.1],[
  1195. true
  1196. ],[
  1197. AC_MSG_ERROR([Could not find system libblkmaker])
  1198. ])
  1199. else
  1200. save_LDFLAGS="$LDFLAGS"
  1201. LDFLAGS="$LDFLAGS -Wl,-zorigin"
  1202. origin_LDFLAGS=
  1203. AC_MSG_CHECKING([whether the linker recognizes the -zorigin option])
  1204. AC_TRY_LINK([],[],[
  1205. AC_MSG_RESULT([yes])
  1206. origin_LDFLAGS=',-zorigin'
  1207. ],[
  1208. AC_MSG_RESULT([no])
  1209. ])
  1210. LDFLAGS="$save_LDFLAGS"
  1211. libblkmaker_CFLAGS='-Ilibblkmaker'
  1212. libblkmaker_LDFLAGS='-Llibblkmaker/.libs -Wl,-rpath,\$$ORIGIN/libblkmaker/.libs'"$origin_LDFLAGS"
  1213. libblkmaker_LIBS='-lblkmaker_jansson-0.1 -lblkmaker-0.1'
  1214. AC_CONFIG_SUBDIRS([libblkmaker])
  1215. _ROOTPATH=$PATH$PATH_SEPARATOR`echo $PATH | sed s/bin/sbin/g`
  1216. possible_ldconfigs="${target}-ldconfig"
  1217. if test "x$cross_compiling" != "xyes"; then
  1218. possible_ldconfigs="${possible_ldconfigs} ldconfig"
  1219. fi
  1220. AC_CHECK_PROGS([LDCONFIG],[${possible_ldconfigs}],[],[$_ROOTPATH])
  1221. if test "x$LDCONFIG" != "x"; then
  1222. maybe_ldconfig=" && $LDCONFIG"
  1223. fi
  1224. fi
  1225. AC_SUBST(libblkmaker_CFLAGS)
  1226. AC_SUBST(libblkmaker_LDFLAGS)
  1227. AC_SUBST(libblkmaker_LIBS)
  1228. $have_udevrules || use_udevrules=false
  1229. if $use_udevrules; then
  1230. AC_ARG_WITH([udevrulesdir],
  1231. AS_HELP_STRING([--with-udevrulesdir=DIR], [Install udev rules into this directory]),
  1232. [], [
  1233. if test -d /lib/udev/rules.d; then
  1234. with_udevrulesdir=/lib/udev/rules.d
  1235. else
  1236. with_udevrulesdir=no
  1237. fi
  1238. ]
  1239. )
  1240. if test "x$with_udevrulesdir" = "xno"; then
  1241. use_udevrules=false
  1242. fi
  1243. if $use_udevrules; then
  1244. AC_SUBST([udevrulesdir], [$with_udevrulesdir])
  1245. fi
  1246. fi
  1247. AM_CONDITIONAL([NEED_LIBBLKMAKER], [test x$with_system_libblkmaker != xyes])
  1248. AM_CONDITIONAL([NEED_BFG_BINLOADER], [test x$need_binloader = xyes])
  1249. AM_CONDITIONAL([NEED_DYNCLOCK], [test x$need_dynclock = xyes])
  1250. AM_CONDITIONAL([USE_GC3355], [test x$need_gc3355 = xyes])
  1251. AM_CONDITIONAL([NEED_BFG_LOWL_VCOM], [test x$need_lowl_vcom = xyes])
  1252. AM_CONDITIONAL([NEED_BFG_LOWL_FTDI], [test x$need_lowl_ftdi = xyes])
  1253. AM_CONDITIONAL([NEED_BFG_LOWL_HID], [test x$need_lowl_hid = xyes])
  1254. AM_CONDITIONAL([NEED_BFG_LOWL_PCI], [test x$need_lowl_pci = xyes])
  1255. AM_CONDITIONAL([NEED_BFG_LOWL_SPI], [test x$need_lowl_spi = xyes])
  1256. AM_CONDITIONAL([NEED_BFG_LOWLEVEL], [test x$need_lowlevel = xyes])
  1257. AM_CONDITIONAL([NEED_BFG_WORK2D], [test x$need_work2d = xyes])
  1258. AM_CONDITIONAL([HAS_SCRYPT], [test x$scrypt = xyes])
  1259. AM_CONDITIONAL([HAVE_CURSES], [test x$curses = xyes])
  1260. AM_CONDITIONAL([HAVE_SENSORS], [test x$with_sensors = xyes])
  1261. AM_CONDITIONAL([HAVE_CYGWIN], [test x$have_cygwin = xtrue])
  1262. AM_CONDITIONAL([HAVE_LIBUSB], [test x$libusb = xyes])
  1263. AM_CONDITIONAL([HAVE_WINDOWS], [test x$have_win32 = xtrue])
  1264. AM_CONDITIONAL([HAVE_x86_64], [test x$have_x86_64 = xtrue])
  1265. AM_CONDITIONAL([HAVE_WIN_DDKUSB], [test x$found_ddkusb = xtrue])
  1266. AM_CONDITIONAL([HAS_FPGA], [test x$has_fpga != xno])
  1267. AM_CONDITIONAL([HAS_ASIC], [test x$has_asic != xno])
  1268. AM_CONDITIONAL([USE_UDEVRULES], [$use_udevrules])
  1269. dnl Find YASM
  1270. has_yasm=false
  1271. if test "x$have_x86_32$have_x86_64" != "xfalsefalse"; then
  1272. AC_PATH_PROG([YASM],[yasm],[false])
  1273. if test "x$YASM" != "xfalse" ; then
  1274. has_yasm_enableaction="install yasm 1.0.1+"
  1275. AC_MSG_CHECKING([if yasm version is greater than 1.0.1])
  1276. yasmver=`"$YASM" --version | head -1 | cut -d\ -f2`
  1277. yamajor=`echo $yasmver | cut -d. -f1`
  1278. yaminor=`echo $yasmver | cut -d. -f2`
  1279. yamini=`echo $yasmver | cut -d. -f3`
  1280. if test "$yamajor" -ge "1" ; then
  1281. if test "$yamajor" -eq "1" ; then
  1282. if test "$yaminor" -ge "0" ; then
  1283. if test "$yaminor" -eq "0"; then
  1284. if test "$yamini" -ge "1"; then
  1285. has_yasm=true
  1286. fi
  1287. else
  1288. has_yasm=true
  1289. fi
  1290. fi
  1291. fi
  1292. else
  1293. has_yasm=false
  1294. fi
  1295. if test "x$has_yasm" = "xtrue" ; then
  1296. AC_MSG_RESULT([yes])
  1297. else
  1298. AC_MSG_RESULT([no])
  1299. fi
  1300. fi
  1301. if test "x$has_yasm" = "xfalse" ; then
  1302. AC_MSG_NOTICE([yasm is required for the assembly algorithms. They will be skipped.])
  1303. else
  1304. AC_DEFINE([HAVE_YASM], [1], [Defined to 1 if yasm is being used])
  1305. if test "x$have_win32$have_cygwin" != "xfalsefalse"; then
  1306. if test "x$have_x86_64" = xtrue; then
  1307. YASM_FMT="win64"
  1308. else
  1309. YASM_FMT="coff"
  1310. fi
  1311. elif test "x$have_macho" = "xtrue"; then
  1312. YASM_FMT="macho$bitness"
  1313. else
  1314. YASM_FMT="elf$bitness"
  1315. fi
  1316. fi
  1317. fi
  1318. AM_CONDITIONAL([HAS_YASM], [test x$has_yasm = xtrue])
  1319. have_sse2=no
  1320. if test "x$cpumining$have_x86_32" = "xyestrue"; then
  1321. AC_MSG_CHECKING([if SSE2 code compiles])
  1322. save_CFLAGS="$CFLAGS"
  1323. for flags in '' '-msse2'; do
  1324. CFLAGS="$CFLAGS $flags"
  1325. AC_TRY_LINK([
  1326. #include <xmmintrin.h>
  1327. ],[
  1328. int *i = (int *)0xdeadbeef;
  1329. __m128i a, b;
  1330. a = _mm_set1_epi32(i[0]);
  1331. b = _mm_set_epi32(i[0], i[1], i[2], i[3]);
  1332. a = _mm_add_epi32(a, b);
  1333. a = _mm_andnot_si128(a, b);
  1334. a = _mm_or_si128(a, b);
  1335. a = _mm_slli_epi32(a, i[4]);
  1336. a = _mm_and_si128(a, b);
  1337. a = _mm_xor_si128(a, b);
  1338. ],[
  1339. if test "x$flags" = "x"; then
  1340. AC_MSG_RESULT([yes])
  1341. else
  1342. AC_MSG_RESULT([with $flags])
  1343. fi
  1344. SSE2_CFLAGS="$flags"
  1345. have_sse2=yes
  1346. break
  1347. ],[
  1348. true
  1349. ])
  1350. done
  1351. CFLAGS="${save_CFLAGS}"
  1352. if test "x$have_sse2" = "xyes"; then
  1353. AC_DEFINE([HAVE_SSE2], [1], [Defined to 1 if yasm is being used])
  1354. else
  1355. AC_MSG_RESULT([no])
  1356. fi
  1357. fi
  1358. AM_CONDITIONAL([HAVE_SSE2], [test "x$have_sse2" = "xyes"])
  1359. if test "x$need_lowl_vcom" = "xyes"; then
  1360. AC_ARG_WITH([libudev], [AC_HELP_STRING([--without-libudev], [Autodetect FPGAs using libudev (default enabled)])],
  1361. [libudev=$withval],
  1362. [libudev=auto]
  1363. )
  1364. if test "x$libudev" != "xno"; then
  1365. AC_CHECK_HEADER([libudev.h],[
  1366. libudev=yes
  1367. UDEV_LIBS=-ludev
  1368. AC_DEFINE([HAVE_LIBUDEV], [1], [Defined to 1 if libudev is wanted])
  1369. ], [
  1370. if test "x$libudev" = "xyes"; then
  1371. AC_MSG_ERROR([libudev not found])
  1372. fi
  1373. libudev=no
  1374. ])
  1375. fi
  1376. fi
  1377. AM_CONDITIONAL([HAVE_LIBUDEV], [test x$libudev != xno])
  1378. AC_SUBST(LIBUSB_LIBS)
  1379. AC_SUBST(LIBUSB_CFLAGS)
  1380. PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.18.2], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.18.2])])
  1381. if echo "$LIBCURL_CFLAGS" | grep '@CPPFLAG_CURL_STATICLIB@' >/dev/null 2>&1; then
  1382. AC_MSG_WARN([Your libcurl pkgconfig file is broken, applying workaround])
  1383. LIBCURL_CFLAGS=`echo "$LIBCURL_CFLAGS" | sed 's/@CPPFLAG_CURL_STATICLIB@//'`
  1384. fi
  1385. AC_SUBST(LIBCURL_LIBS)
  1386. AC_CHECK_FUNCS([setrlimit])
  1387. dnl CCAN wants to know a lot of vars.
  1388. # All the configuration checks. Regrettably, the __attribute__ checks will
  1389. # give false positives on old GCCs, since they just cause warnings. But that's
  1390. # fairly harmless.
  1391. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((cold)) cleanup(void) { }])],
  1392. AC_DEFINE([HAVE_ATTRIBUTE_COLD], [1],
  1393. [Define if __attribute__((cold))]))
  1394. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((const)) cleanup(void) { }])],
  1395. AC_DEFINE([HAVE_ATTRIBUTE_CONST], [1],
  1396. [Define if __attribute__((const))]))
  1397. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((noreturn)) cleanup(void) { exit(1); }])],
  1398. [
  1399. AC_DEFINE([HAVE_ATTRIBUTE_NORETURN], [1],
  1400. [Define if __attribute__((noreturn))])
  1401. AC_DEFINE_UNQUOTED([NORETURN], [__attribute__((noreturn))], [Syntax of noreturn attribute])
  1402. ], [
  1403. AC_DEFINE_UNQUOTED([NORETURN], [])
  1404. ]
  1405. )
  1406. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((format(__printf__, 1, 2))) cleanup(const char *fmt, ...) { }])],
  1407. AC_DEFINE([HAVE_ATTRIBUTE_PRINTF], [1],
  1408. [Define if __attribute__((format(__printf__)))]))
  1409. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((unused)) cleanup(void) { }])],
  1410. AC_DEFINE([HAVE_ATTRIBUTE_UNUSED], [1],
  1411. [Define if __attribute__((unused))]))
  1412. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((used)) cleanup(void) { }])],
  1413. AC_DEFINE([HAVE_ATTRIBUTE_USED], [1],
  1414. [Define if __attribute__((used))]))
  1415. AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return __builtin_constant_p(1) ? 0 : 1; }])],
  1416. AC_DEFINE([HAVE_BUILTIN_CONSTANT_P], [1],
  1417. [Define if have __builtin_constant_p]))
  1418. AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return __builtin_types_compatible_p(char *, int) ? 1 : 0; }])],
  1419. AC_DEFINE([HAVE_BUILTIN_TYPES_COMPATIBLE_P], [1],
  1420. [Define if have __builtin_types_compatible_p]))
  1421. AC_COMPILE_IFELSE([AC_LANG_SOURCE([static int __attribute__((warn_unused_result)) func(int x) { return x; }])],
  1422. AC_DEFINE([HAVE_WARN_UNUSED_RESULT], [1],
  1423. [Define if __attribute__((warn_unused_result))]))
  1424. # byteswap functions
  1425. AH_TEMPLATE([HAVE_BYTESWAP_H], [Define to use byteswap macros from byteswap.h])
  1426. AH_TEMPLATE([HAVE_ENDIAN_H], [Define to use byteswap macros from endian.h])
  1427. AH_TEMPLATE([HAVE_SYS_ENDIAN_H], [Define to use byteswap macros from sys/endian.h])
  1428. AH_TEMPLATE([HAVE_LIBKERN_OSBYTEORDER_H], [Define to use byteswap macros from libkern/OSByteOrder.h])
  1429. BSWAP=''
  1430. for sym in bswap_ __builtin_bswap __bswap_ __swap swap OSSwapInt; do
  1431. AC_MSG_CHECKING([for ${sym}* functions])
  1432. for headerfile in '' byteswap.h endian.h sys/endian.h libkern/OSByteOrder.h; do
  1433. BFG_INCLUDE([headerinclude], [${headerfile}])
  1434. AC_LINK_IFELSE([
  1435. AC_LANG_PROGRAM([
  1436. ${headerinclude}
  1437. ], [
  1438. (void) ${sym}16(0);
  1439. (void) ${sym}32(0);
  1440. (void) ${sym}64(0);
  1441. ])
  1442. ], [
  1443. BSWAP="${sym}"
  1444. if test "x${headerfile}" = "x"; then
  1445. AC_MSG_RESULT([yes])
  1446. else
  1447. AC_MSG_RESULT([found in ${headerfile}])
  1448. AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$headerfile]), 1)
  1449. fi
  1450. break 2
  1451. ])
  1452. done
  1453. AC_MSG_RESULT([no])
  1454. done
  1455. if test "x$BSWAP" = "x"; then
  1456. true # Substitutes are provided in miner.h
  1457. elif test "x$BSWAP" = "xbswap_"; then
  1458. AC_MSG_CHECKING([if bswap_16 is already a macro])
  1459. BFG_PREPROC_IFELSE([defined(bswap_16)], $headerfile, [
  1460. AC_MSG_RESULT([yes])
  1461. BSWAP=""
  1462. ],[
  1463. AC_MSG_RESULT([no])
  1464. ])
  1465. fi
  1466. if test "x$BSWAP" != "x"; then
  1467. AC_DEFINE_UNQUOTED([bswap_16], ${BSWAP}16, [Define to 16-bit byteswap macro])
  1468. AC_DEFINE_UNQUOTED([bswap_32], ${BSWAP}32, [Define to 16-bit byteswap macro])
  1469. AC_DEFINE_UNQUOTED([bswap_64], ${BSWAP}64, [Define to 16-bit byteswap macro])
  1470. fi
  1471. # endian definition macros
  1472. AC_MSG_CHECKING([for platform endian])
  1473. found_endian=no
  1474. for headerfile in '' endian.h sys/endian.h sys/param.h; do
  1475. for pfx in '' '__'; do
  1476. BFG_PREPROC_IFELSE([defined(${pfx}BYTE_ORDER) && defined(${pfx}BIG_ENDIAN) && defined(${pfx}LITTLE_ENDIAN) && (${pfx}BYTE_ORDER == ${pfx}BIG_ENDIAN || ${pfx}BYTE_ORDER == ${pfx}LITTLE_ENDIAN)], ${headerfile}, [
  1477. if test "x$headerfile" = "x"; then
  1478. headerfilec=''
  1479. else
  1480. headerfilec=" (${headerfile})"
  1481. fi
  1482. BFG_PREPROC_IFELSE([${pfx}BYTE_ORDER == ${pfx}BIG_ENDIAN], ${headerfile}, [
  1483. AC_MSG_RESULT([big endian${headerfilec}])
  1484. AC_DEFINE(WORDS_BIGENDIAN, 1, [Define if your platform is big endian])
  1485. ], [
  1486. AC_MSG_RESULT([little endian${headerfilec}])
  1487. ])
  1488. found_endian=yes
  1489. break 2
  1490. ],[true])
  1491. done
  1492. done
  1493. if test "x$found_endian" = "xno"; then
  1494. if $have_win32 || $have_cygwin; then
  1495. AC_MSG_RESULT([assuming little endian (Windows)])
  1496. else
  1497. # AC_C_BIGENDIAN is reported to have problems, and invasive even if buried in a conditional, so don't use it
  1498. AC_MSG_RESULT([unknown])
  1499. AC_MSG_ERROR([Unable to identify platform endian])
  1500. fi
  1501. fi
  1502. AC_MSG_CHECKING([if good static asserts compile])
  1503. AC_TRY_LINK([
  1504. #include <stddef.h>
  1505. ], [
  1506. _Static_assert(1, ":)");
  1507. ], [
  1508. AC_MSG_RESULT([yes])
  1509. ], [
  1510. AC_MSG_RESULT([no])
  1511. AC_DEFINE_UNQUOTED([_Static_assert(...)], [], [Turns _Static_assert into noop for compilers that don't support it])
  1512. ])
  1513. AC_MSG_CHECKING([if GNU format attribute compiles])
  1514. AC_TRY_COMPILE([
  1515. #define FORMAT_SYNTAX_CHECK(...) __attribute__(( format(__VA_ARGS__) ))
  1516. int myfunc(char *fmt, ...) FORMAT_SYNTAX_CHECK(printf, 1, 2);
  1517. int myfunc(char *fmt, ...) {
  1518. return 42;
  1519. }
  1520. ], [
  1521. myfunc("abc%d", 42);
  1522. ], [
  1523. AC_MSG_RESULT([yes])
  1524. AC_DEFINE_UNQUOTED([FORMAT_SYNTAX_CHECK(...)], [__attribute__(( format(__VA_ARGS__) ))], [Syntax of format-checking attribute])
  1525. ], [
  1526. AC_MSG_RESULT([no])
  1527. AC_DEFINE_UNQUOTED([FORMAT_SYNTAX_CHECK(...)], [])
  1528. ])
  1529. AC_MSG_CHECKING([for clock_gettime(CLOCK_MONOTONIC)])
  1530. AC_TRY_COMPILE([
  1531. #define _GNU_SOURCE
  1532. #include <time.h>
  1533. ],[
  1534. struct timespec ts;
  1535. clock_gettime(CLOCK_MONOTONIC, &ts);
  1536. ],[
  1537. AC_MSG_RESULT([yes])
  1538. AC_DEFINE([HAVE_CLOCK_GETTIME_MONOTONIC], [1], [Defined to 1 if clock_gettime(CLOCK_MONOTONIC) is defined])
  1539. save_LIBS="${LIBS}"
  1540. AC_SEARCH_LIBS([clock_gettime],[rt posix4],[
  1541. if test "x${ac_cv_search_clock_gettime}" != "xnone required"; then
  1542. RT_LIBS="${ac_cv_search_clock_gettime}"
  1543. fi
  1544. ])
  1545. LIBS="${save_LIBS}"
  1546. AC_CHECK_FUNCS([clock_nanosleep])
  1547. AC_MSG_CHECKING([for clock_gettime(CLOCK_MONOTONIC_RAW)])
  1548. AC_TRY_COMPILE([
  1549. #define _GNU_SOURCE
  1550. #include <time.h>
  1551. ],[
  1552. struct timespec ts;
  1553. clock_gettime(CLOCK_MONOTONIC_RAW, &ts);
  1554. ],[
  1555. AC_MSG_RESULT([yes])
  1556. AC_DEFINE([HAVE_CLOCK_GETTIME_MONOTONIC_RAW], [1], [Defined to 1 if clock_gettime(CLOCK_MONOTONIC_RAW) is defined])
  1557. ],[
  1558. AC_MSG_RESULT([no])
  1559. ])
  1560. ],[
  1561. AC_MSG_RESULT([no])
  1562. ])
  1563. save_LIBS="$LIBS"
  1564. LIBS="$LIBS $MATH_LIBS"
  1565. AC_CHECK_FUNCS([log2])
  1566. LIBS="$save_LIBS"
  1567. if test "x$prefix" = xNONE; then
  1568. prefix=/usr/local
  1569. fi
  1570. AM_CONDITIONAL([NEED_BITSTREAM_FPGAMINER], [test x$modminer$x6500 != xnono])
  1571. m4_define([BFG_PRINT_LIST],[
  1572. eval _mylist="\$$2"
  1573. _yeslist=
  1574. _nolist=
  1575. _enableactions=
  1576. for _opt in $_mylist; do
  1577. IFS=/ read _opt _var <<EOF
  1578. $_opt
  1579. EOF
  1580. test -n "$_var" || _var="$_opt"
  1581. eval "_val=\"\$${_var}\""
  1582. if test "x$_val" = "xno" || test "x$_val" = "xfalse"; then
  1583. _nolist="$_nolist $_opt"
  1584. eval "_enableaction=\"\$${_var}_enableaction\""
  1585. if test -n "$_enableaction"; then
  1586. _enableactions="${_enableactions}~ To enable ${_opt}, ${_enableaction}"
  1587. fi
  1588. else
  1589. _yeslist="$_yeslist $_opt"
  1590. fi
  1591. done
  1592. _yeslist=`echo "$_yeslist" | tr ' ' '\n' | sort | tr '\n' ' '`
  1593. _nolist=`echo "$_nolist" | tr ' ' '\n' | sort | tr '\n' ' '`
  1594. AC_DEFINE_UNQUOTED(AS_TR_CPP([BFG_$2]),["$_yeslist"],[List of drivers being built])
  1595. $2_print=" Enabled..$1..:${_yeslist}~ Disabled.$1..:${_nolist}${_enableactions}"
  1596. ])
  1597. BFG_PRINT_LIST([Lowlevel..],[lowllist])
  1598. BFG_PRINT_LIST([Drivers...],[driverlist])
  1599. BFG_PRINT_LIST([Algorithms],[algolist])
  1600. BFG_PRINT_LIST([Options...],[optlist])
  1601. AC_SUBST(AUTOSCAN_CPPFLAGS)
  1602. AC_SUBST(AUTOSCAN_LIBS)
  1603. AC_SUBST(PTHREAD_FLAGS)
  1604. AC_SUBST(DLOPEN_FLAGS)
  1605. AC_SUBST(PTHREAD_LIBS)
  1606. AC_SUBST(NCURSES_CPPFLAGS)
  1607. AC_SUBST(NCURSES_LIBS)
  1608. AC_SUBST(PDCURSES_LIBS)
  1609. AC_SUBST(WS2_LIBS)
  1610. AC_SUBST(MM_LIBS)
  1611. AC_SUBST(MATH_LIBS)
  1612. AC_SUBST(RT_LIBS)
  1613. AC_SUBST(UDEV_LIBS)
  1614. AC_SUBST(SSE2_CFLAGS)
  1615. AC_SUBST(YASM_FMT)
  1616. AC_CONFIG_FILES([
  1617. Makefile
  1618. x86_64/Makefile
  1619. x86_32/Makefile
  1620. ccan.bfg/Makefile
  1621. lib/Makefile
  1622. ])
  1623. if $use_udevrules; then
  1624. AC_CONFIG_FILES([70-bfgminer.rules])
  1625. fi
  1626. AC_OUTPUT
  1627. wordfilter ()
  1628. {
  1629. echo "$1" | sed 's/ \+/ /g;s/^ *//;s/ *$//'
  1630. }
  1631. echo
  1632. echo "------------------------------------------------------------------------"
  1633. echo "$PACKAGE $VERSION configuration options summary"
  1634. echo "------------------------------------------------------------------------"
  1635. echo
  1636. echo " CFLAGS...............: "`wordfilter "$CPPFLAGS $AUTOSCAN_CPPFLAGS $NCURSES_CPPFLAGS $PTHREAD_FLAGS $CFLAGS $LIBUSB_CFLAGS $JANSSON_CFLAGS $PTHREAD_FLAGS $libblkmaker_CFLAGS $hidapi_CFLAGS"`
  1637. echo " LDFLAGS..............: "`wordfilter "$LDFLAGS $AUTOSCAN_LIBS $PTHREAD_FLAGS $libblkmaker_LDFLAGS $PTHREAD_LIBS $LIBS $DLOPEN_FLAGS $LIBCURL_LIBS $JANSSON_LIBS $NCURSES_LIBS $PDCURSES_LIBS $WS2_LIBS $MATH_LIBS $UDEV_LIBS $LIBUSB_LIBS $RT_LIBS $sensors_LIBS $libblkmaker_LIBS"`
  1638. echo " Installation.prefix..: $prefix"
  1639. echo
  1640. echo "${lowllist_print}" | tr '~' '\n'
  1641. echo "${driverlist_print}" | tr '~' '\n'
  1642. echo "${algolist_print}" | tr '~' '\n'
  1643. echo "${optlist_print}" | tr '~' '\n'
  1644. echo