configure.ac 54 KB

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