123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870 |
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- m4_define([v_maj], [4])
- m4_define([v_min], [7])
- m4_define([v_mic], [0])
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- m4_define([v_ver], [v_maj.v_min.v_mic-scrypt-wrk])
- m4_define([lt_rev], m4_eval(v_maj + v_min))
- m4_define([lt_cur], v_mic)
- m4_define([lt_age], v_min)
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- AC_INIT([cgminer], [v_ver], [kernel@kolivas.org])
- AC_PREREQ(2.59)
- AC_CANONICAL_SYSTEM
- AC_CONFIG_MACRO_DIR([m4])
- AC_CONFIG_SRCDIR([cgminer.c])
- AC_CONFIG_HEADERS([config.h])
- AM_INIT_AUTOMAKE([foreign subdir-objects])
- m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
- AC_USE_SYSTEM_EXTENSIONS
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- m4_ifdef([v_rev], , [m4_define([v_rev], [0])])
- m4_ifdef([v_rel], , [m4_define([v_rel], [])])
- AC_DEFINE_UNQUOTED(CGMINER_MAJOR_VERSION, [v_maj], [Major version])
- AC_DEFINE_UNQUOTED(CGMINER_MINOR_VERSION, [v_min], [Minor version])
- AC_DEFINE_UNQUOTED(CGMINER_MINOR_SUBVERSION, [v_mic], [Micro version])
- version_info="lt_rev:lt_cur:lt_age"
- release_info="v_rel"
- AC_SUBST(version_info)
- AC_SUBST(release_info)
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
- VMAJ=v_maj
- AC_SUBST(VMAJ)
- AC_CANONICAL_BUILD
- AC_CANONICAL_HOST
- dnl Make sure anyone changing configure.ac/Makefile.am has a clue
- AM_MAINTAINER_MODE
- dnl Checks for programs
- AC_PROG_CC
- gl_EARLY
- AC_PROG_GCC_TRADITIONAL
- AM_PROG_CC_C_O
- LT_INIT([disable-shared])
- gl_INIT
- dnl Checks for header files.
- AC_HEADER_STDC
- AC_CHECK_HEADERS(syslog.h)
- AC_FUNC_ALLOCA
- have_win32=false
- PTHREAD_FLAGS="-lpthread"
- DLOPEN_FLAGS="-ldl"
- WS2_LIBS=""
- MM_LIBS=""
- MATH_LIBS="-lm"
- RT_LIBS="-lrt"
- case $target in
- amd64-*)
- have_x86_64=true
- ;;
- x86_64-*)
- have_x86_64=true
- ;;
- *)
- have_x86_64=false
- ;;
- esac
- case $target in
- *-*-linux-gnu*)
- have_linux=true
- ;;
- *-*-mingw*)
- have_win32=true
- PTHREAD_FLAGS=""
- DLOPEN_FLAGS=""
- WS2_LIBS="-lws2_32"
- MM_LIBS="-lwinmm"
- RT_LIBS=""
- AC_DEFINE([_WIN32_WINNT], [0x0501], "WinNT version for XP+ support")
- ;;
- powerpc-*-darwin*)
- have_darwin=true
- CFLAGS="$CFLAGS -faltivec"
- PTHREAD_FLAGS=""
- RT_LIBS=""
- ;;
- *-*-darwin*)
- have_darwin=true
- PTHREAD_FLAGS=""
- RT_LIBS=""
- ;;
- esac
- has_winpthread=false
- if test "x$have_win32" = xtrue; then
- has_winpthread=true
- AC_CHECK_LIB(winpthread, nanosleep, , has_winpthread=false)
- PTHREAD_LIBS=-lwinpthread
- fi
- if test "x$has_winpthread" != xtrue; then
- AC_CHECK_LIB(pthread, pthread_create, ,
- AC_MSG_ERROR([Could not find pthread library - please install libpthread]))
- PTHREAD_LIBS=-lpthread
- fi
- scrypt="no"
- AC_ARG_ENABLE([scrypt],
- [AC_HELP_STRING([--enable-scrypt],[Compile support for scrypt mining (default disabled)])],
- [scrypt=$enableval]
- )
- if test "x$scrypt" = xyes; then
- AC_DEFINE([USE_SCRYPT], [1], [Defined to 1 if scrypt support is wanted])
- fi
- AM_CONDITIONAL([HAS_SCRYPT], [test x$scrypt = xyes])
- # Drivers that are designed to be run on dedicated hardware should set standalone to yes
- # All drivers should prepend an x to the drivercount
- standalone="no"
- ants1="no"
- drivercount=""
- AC_ARG_ENABLE([ants1],
- [AC_HELP_STRING([--enable-ants1],[Compile support for Antminer S1 Bitmain STANDALONE(default disabled)])],
- [ants1=$enableval]
- )
- if test "x$ants1" = xyes; then
- AC_DEFINE([USE_ANT_S1], [1], [Defined to 1 if Antminer S1 Bitmain support is wanted])
- drivercount=x$drivercount
- standalone="yes"
- fi
- AM_CONDITIONAL([HAS_ANT_S1], [test x$ants1 = xyes])
- ants2="no"
- AC_ARG_ENABLE([ants2],
- [AC_HELP_STRING([--enable-ants2],[Compile support for Antminer S2 Bitmain STANDALONE(default disabled)])],
- [ants2=$enableval]
- )
- if test "x$ants2" = xyes; then
- AC_DEFINE([USE_ANT_S2], [1], [Defined to 1 if Antminer S2 Bitmain support is wanted])
- drivercount=x$drivercount
- standalone="yes"
- fi
- AM_CONDITIONAL([HAS_ANT_S2], [test x$ants2 = xyes])
- avalon="no"
- AC_ARG_ENABLE([avalon],
- [AC_HELP_STRING([--enable-avalon],[Compile support for Avalon (default disabled)])],
- [avalon=$enableval]
- )
- if test "x$avalon" = xyes; then
- AC_DEFINE([USE_AVALON], [1], [Defined to 1 if Avalon support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_AVALON], [test x$avalon = xyes])
- avalon2="no"
- AC_ARG_ENABLE([avalon2],
- [AC_HELP_STRING([--enable-avalon2],[Compile support for Avalon2 (default disabled)])],
- [avalon2=$enableval]
- )
- if test "x$avalon2" = xyes; then
- AC_DEFINE([USE_AVALON2], [1], [Defined to 1 if Avalon2 support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_AVALON2], [test x$avalon2 = xyes])
- bab="no"
- AC_ARG_ENABLE([bab],
- [AC_HELP_STRING([--enable-bab],[Compile support for BlackArrow Bitfury STANDALONE(default disabled)])],
- [bab=$enableval]
- )
- if test "x$bab" = xyes; then
- AC_DEFINE([USE_BAB], [1], [Defined to 1 if BlackArrow Bitfury support is wanted])
- drivercount=x$drivercount
- standalone="yes"
- fi
- AM_CONDITIONAL([HAS_BAB], [test x$bab = xyes])
- bflsc="no"
- AC_ARG_ENABLE([bflsc],
- [AC_HELP_STRING([--enable-bflsc],[Compile support for BFL ASICs (default disabled)])],
- [bflsc=$enableval]
- )
- if test "x$bflsc" = xyes; then
- AC_DEFINE([USE_BFLSC], [1], [Defined to 1 if BFL ASIC support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_BFLSC], [test x$bflsc = xyes])
- bitforce="no"
- AC_ARG_ENABLE([bitforce],
- [AC_HELP_STRING([--enable-bitforce],[Compile support for BitForce FPGAs (default disabled)])],
- [bitforce=$enableval]
- )
- if test "x$bitforce" = xyes; then
- AC_DEFINE([USE_BITFORCE], [1], [Defined to 1 if BitForce support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_BITFORCE], [test x$bitforce = xyes])
- bitfury="no"
- AC_ARG_ENABLE([bitfury],
- [AC_HELP_STRING([--enable-bitfury],[Compile support for BitFury ASICs (default disabled)])],
- [bitfury=$enableval]
- )
- if test "x$bitfury" = xyes; then
- AC_DEFINE([USE_BITFURY], [1], [Defined to 1 if BitFury ASIC support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_BITFURY], [test x$bitfury = xyes])
- bitmine_A1="no"
- AC_ARG_ENABLE([bitmine_A1],
- [AC_HELP_STRING([--enable-bitmine_A1],[Compile support for Bitmine.ch A1 ASICs STANDALONE(default disabled)])],
- [bitmine_A1=$enableval]
- )
- if test "x$bitmine_A1" = xyes; then
- AC_DEFINE([USE_BITMINE_A1], [1], [Defined to 1 if Bitmine A1 support is wanted])
- drivercount=x$drivercount
- standalone="yes"
- fi
- AM_CONDITIONAL([HAS_BITMINE_A1], [test x$bitmine_A1 = xyes])
- blockerupter="no"
- AC_ARG_ENABLE([blockerupter],
- [AC_HELP_STRING([--enable-blockerupter],[Compile support for BlockErupter (default disabled)])],
- [blockerupter=$enableval]
- )
- if test "x$blockerupter" = xyes; then
- AC_DEFINE([USE_BLOCKERUPTER], [1], [Defined to 1 if BlockErupter support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_BLOCKERUPTER], [test x$blockerupter = xyes])
- cointerra="no"
- AC_ARG_ENABLE([cointerra],
- [AC_HELP_STRING([--enable-cointerra],[Compile support for Cointerra ASICs (default disabled)])],
- [cointerra=$enableval]
- )
- if test "x$cointerra" = xyes; then
- AC_DEFINE([USE_COINTERRA], [1], [Defined to 1 if Cointerra support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_COINTERRA], [test x$cointerra = xyes])
- drillbit="no"
- AC_ARG_ENABLE([drillbit],
- [AC_HELP_STRING([--enable-drillbit],[Compile support for Drillbit BitFury ASICs (default disabled)])],
- [drillbit=$enableval]
- )
- if test "x$drillbit" = xyes; then
- AC_DEFINE([USE_DRILLBIT], [1], [Defined to 1 if Drillbit BitFury support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_DRILLBIT], [test x$drillbit = xyes])
- hashfast="no"
- AC_ARG_ENABLE([hashfast],
- [AC_HELP_STRING([--enable-hashfast],[Compile support for Hashfast (default disabled)])],
- [hashfast=$enableval]
- )
- if test "x$hashfast" = xyes; then
- AC_DEFINE([USE_HASHFAST], [1], [Defined to 1 if Hashfast support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_HASHFAST], [test x$hashfast = xyes])
- hashratio="no"
- AC_ARG_ENABLE([hashratio],
- [AC_HELP_STRING([--enable-hashratio],[Compile support for Hashratio (default disabled)])],
- [hashratio=$enableval]
- )
- if test "x$hashratio" = xyes; then
- AC_DEFINE([USE_HASHRATIO], [1], [Defined to 1 if Hashratiosupport is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_HASHRATIO], [test x$hashratio = xyes])
- icarus="no"
- AC_ARG_ENABLE([icarus],
- [AC_HELP_STRING([--enable-icarus],[Compile support for Icarus (default disabled)])],
- [icarus=$enableval]
- )
- if test "x$icarus" = xyes; then
- AC_DEFINE([USE_ICARUS], [1], [Defined to 1 if Icarus support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_ICARUS], [test x$icarus = xyes])
- klondike="no"
- AC_ARG_ENABLE([klondike],
- [AC_HELP_STRING([--enable-klondike],[Compile support for Klondike (default disabled)])],
- [klondike=$enableval]
- )
- if test "x$klondike" = xyes; then
- AC_DEFINE([USE_KLONDIKE], [1], [Defined to 1 if Klondike support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_KLONDIKE], [test x$klondike = xyes])
- knc="no"
- AC_ARG_ENABLE([knc],
- [AC_HELP_STRING([--enable-knc],[Compile support for KnC miners STANDALONE(default disabled)])],
- [knc=$enableval]
- )
- if test "x$knc" = xyes; then
- AC_DEFINE([USE_KNC], [1], [Defined to 1 if KnC miner support is wanted])
- drivercount=x$drivercount
- standalone="yes"
- fi
- AM_CONDITIONAL([HAS_KNC], [test x$knc = xyes])
- minion="no"
- AC_ARG_ENABLE([minion],
- [AC_HELP_STRING([--enable-minion],[Compile support for Minion BlackArrow ASIC STANDALONE(default disabled)])],
- [minion=$enableval]
- )
- if test "x$minion" = xyes; then
- AC_DEFINE([USE_MINION], [1], [Defined to 1 if Minion BlackArrow ASIC support is wanted])
- drivercount=x$drivercount
- standalone="yes"
- fi
- AM_CONDITIONAL([HAS_MINION], [test x$minion = xyes])
- modminer="no"
- AC_ARG_ENABLE([modminer],
- [AC_HELP_STRING([--enable-modminer],[Compile support for ModMiner FPGAs(default disabled)])],
- [modminer=$enableval]
- )
- if test "x$modminer" = xyes; then
- AC_DEFINE([USE_MODMINER], [1], [Defined to 1 if ModMiner support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_MODMINER], [test x$modminer = xyes])
- sp10="no"
- AC_ARG_ENABLE([sp10],
- [AC_HELP_STRING([--enable-sp10],[Compile support for Spondoolies SP10 STANDALONE(default disabled)])],
- [sp10=$enableval]
- )
- if test "x$sp10" = xyes; then
- AC_DEFINE([USE_SP10], [1], [Defined to 1 if Spondoolies SP10 support is wanted])
- drivercount=x$drivercount
- standalone="yes"
- fi
- AM_CONDITIONAL([HAS_SP10], [test x$sp10 = xyes])
- sp30="no"
- AC_ARG_ENABLE([sp30],
- [AC_HELP_STRING([--enable-sp30],[Compile support for Spondoolies SP30 STANDALONE(default disabled)])],
- [sp30=$enableval]
- )
- if test "x$sp30" = xyes; then
- AC_DEFINE([USE_SP30], [1], [Defined to 1 if SP30 support is wanted])
- drivercount=x$drivercount
- standalone="yes"
- fi
- AM_CONDITIONAL([HAS_SP30], [test x$sp30 = xyes])
- gridseed="no"
- AC_ARG_ENABLE([gridseed],
- [AC_HELP_STRING([--enable-gridseed],[Compile support for GridSeed (default disabled)])],
- [gridseed=$enableval]
- )
- if test "x$gridseed" = xyes; then
- AC_DEFINE([USE_FPGA_SERIAL], [1], [Defined to 1 if serial support required])
- AC_DEFINE([USE_GRIDSEED], [1], [Defined to 1 if GridSeed support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_GRIDSEED], [test x$gridseed = xyes])
- zeus="no"
- AC_ARG_ENABLE([zeus],
- [AC_HELP_STRING([--enable-zeus],[Compile support for Zeusminer (default disabled) (EXPERIMENTAL)])],
- [zeus=$enableval]
- )
- if test "x$zeus" = xyes; then
- AC_DEFINE([USE_FPGA_SERIAL], [1], [Defined to 1 if serial support required])
- AC_DEFINE([USE_ZEUS], [1], [Defined to 1 if Zeus support is wanted])
- drivercount=x$drivercount
- fi
- AM_CONDITIONAL([HAS_ZEUS], [test x$zeus = xyes])
- lketc="no"
- AC_ARG_ENABLE([lketc],
- [AC_HELP_STRING([--enable-lketc],[Compile support for Lketcminer (default disabled)])],
- [lketc=$enableval]
- )
- if test "x$lketc" = xyes; then
- AC_DEFINE([USE_FPGA_SERIAL], [1], [Defined to 1 if serial support required])
- AC_DEFINE([USE_LKETC], [1], [Defined to 1 if Lketc support is wanted])
- fi
- AM_CONDITIONAL([HAS_LKETC], [test x$lketc = xyes])
- curses="auto"
- AC_ARG_WITH([curses],
- [AC_HELP_STRING([--without-curses],[Compile support for curses TUI (default enabled)])],
- [curses=$withval]
- )
- if test "x$curses" = "xno"; then
- cursesmsg='User specified --without-curses. TUI support DISABLED'
- else
- AC_SEARCH_LIBS(addstr, ncurses pdcurses, [
- curses=yes
- cursesmsg="FOUND: ${ac_cv_search_addstr}"
- AC_DEFINE([HAVE_CURSES], [1], [Defined to 1 if curses TUI support is wanted])
- ], [
- if test "x$curses" = "xyes"; then
- AC_MSG_ERROR([Could not find curses library - please install libncurses-dev or pdcurses-dev (or configure --without-curses)])
- else
- AC_MSG_WARN([Could not find curses library - if you want a TUI, install libncurses-dev or pdcurses-dev])
- curses=no
- cursesmsg='NOT FOUND. TUI support DISABLED'
- fi
- ])
- fi
- #Add a new device to this list if it needs libusb, along with a no on the end.
- if test x$avalon$avalon2$bitforce$bitfury$blockerupter$modminer$bflsc$icarus$hashfast$hashratio$klondike$drillbit$cointerra$ants1$ants2$gridseed$zeus$lketc != xnononononononononononononononononono; then
- want_usbutils=true
- else
- want_usbutils=false
- fi
- if test x$bitfury != xno; then
- want_libbitfury=true
- else
- want_libbitfury=false
- fi
- if test x$gridseed$zeus$lketc != xnonono; then
- want_libudev=true
- else
- want_libudev=false
- fi
- if test x$avalon2$hashratio != xnono; then
- want_crc16=true
- else
- want_crc16=false
- fi
- AM_CONDITIONAL([NEED_FPGAUTILS], [test x$modminer$gridseed$zeus$lketc != xnononono])
- AM_CONDITIONAL([WANT_USBUTILS], [test x$want_usbutils != xfalse])
- AM_CONDITIONAL([WANT_LIBBITFURY], [test x$want_libbitfury != xfalse])
- AM_CONDITIONAL([HAVE_CURSES], [test x$curses = xyes])
- AM_CONDITIONAL([HAVE_WINDOWS], [test x$have_win32 = xtrue])
- AM_CONDITIONAL([HAVE_x86_64], [test x$have_x86_64 = xtrue])
- AM_CONDITIONAL([WANT_CRC16], [test x$want_crc16 != xfalse])
- if test "x$want_usbutils" != xfalse; then
- dlibusb="no"
- AC_DEFINE([USE_USBUTILS], [1], [Defined to 1 if usbutils support required])
- AC_ARG_WITH([system-libusb],
- [AC_HELP_STRING([--with-system-libusb],[NOT RECOMMENDED! Compile against dynamic system libusb. (Default use included static libusb)])],
- [dlibusb=$withval]
- )
- if test "x$dlibusb" != xno; then
- case $target in
- *-*-freebsd*)
- LIBUSB_LIBS="-lusb"
- LIBUSB_CFLAGS=""
- AC_DEFINE(HAVE_LIBUSB, 1, [Define if you have libusb-1.0])
- ;;
- *)
- PKG_CHECK_MODULES(LIBUSB, libusb-1.0, [AC_DEFINE(HAVE_LIBUSB, 1, [Define if you have libusb-1.0])], [AC_MSG_ERROR([Could not find usb library - please install libusb-1.0])])
- ;;
- esac
- else
- AC_CONFIG_SUBDIRS([compat/libusb-1.0])
- LIBUSB_LIBS="compat/libusb-1.0/libusb/.libs/libusb-1.0.a"
- if test "x$have_linux" = "xtrue"; then
- AC_ARG_ENABLE([udev],
- [AC_HELP_STRING([--disable-udev],[Disable building libusb with udev])],
- [udev=$enableval]
- )
- if test "x$udev" != xno; then
- LIBUSB_LIBS+=" -ludev"
- fi
- fi
- if test "x$have_darwin" = "xtrue"; then
- LIBUSB_LIBS+=" -lobjc"
- LDFLAGS+=" -framework CoreFoundation -framework IOKit"
- fi
- fi
- else
- LIBUSB_LIBS=""
- fi
- if test "x$want_libudev" != xfalse; then
- if test "x$have_linux" = "xtrue"; then
- AC_DEFINE([HAVE_LIBUDEV], [1], [Defined to 1 if udev support available])
- LIBUDEV_LIBS="-ludev"
- fi
- else
- LIBUDEV_LIBS=""
- fi
- AM_CONDITIONAL([WANT_STATIC_LIBUSB], [test x$dlibusb = xno])
- AC_CONFIG_SUBDIRS([compat/jansson-2.6])
- JANSSON_LIBS="compat/jansson-2.6/src/.libs/libjansson.a"
- PKG_PROG_PKG_CONFIG()
- if test "x$have_cgminer_sdk" = "xtrue"; then
- if test "x$have_x86_64" = xtrue; then
- ARCH_DIR=x86_64
- else
- ARCH_DIR=x86
- fi
- PKG_CONFIG="${PKG_CONFIG:-pkg-config} --define-variable=arch=$ARCH_DIR --define-variable=target=$target --define-variable=cgminersdkdir=$CGMINER_SDK"
- PKG_CONFIG_PATH="$CGMINER_SDK/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
- fi
- AC_SUBST(LIBUSB_LIBS)
- AC_SUBST(LIBUSB_CFLAGS)
- AC_SUBST(LIBUDEV_LIBS)
- AC_ARG_ENABLE([libcurl],
- [AC_HELP_STRING([--disable-libcurl],[Disable building with libcurl for getwork and GBT support])],
- [libcurl=$enableval]
- )
- if test "x$libcurl" != xno; then
- if test "x$have_win32" != xtrue; then
- PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.25.0], [AC_DEFINE([CURL_HAS_KEEPALIVE], [1], [Defined if version of curl supports keepalive.])],
- [PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.18.2], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.18.2])])])
- else
- PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.25.0], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.25.0])])
- AC_DEFINE([CURL_HAS_KEEPALIVE], [1])
- fi
- AC_DEFINE([HAVE_LIBCURL], [1], [Defined to 1 if libcurl support built in])
- else
- LIBCURL_LIBS=""
- fi
- AC_SUBST(LIBCURL_LIBS)
- #check execv signature
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([
- #include <process.h>
- int execv(const char*, const char*const*);
- ])],
- AC_DEFINE([EXECV_2ND_ARG_TYPE], [const char* const*], [int execv(const char*, const char*const*);]),
- AC_DEFINE([EXECV_2ND_ARG_TYPE], [char* const*], [int execv(const char*, char*const*);]))
- dnl CCAN wants to know a lot of vars.
- # All the configuration checks. Regrettably, the __attribute__ checks will
- # give false positives on old GCCs, since they just cause warnings. But that's
- # fairly harmless.
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((cold)) cleanup(void) { }])],
- AC_DEFINE([HAVE_ATTRIBUTE_COLD], [1],
- [Define if __attribute__((cold))]))
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((const)) cleanup(void) { }])],
- AC_DEFINE([HAVE_ATTRIBUTE_CONST], [1],
- [Define if __attribute__((const))]))
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((noreturn)) cleanup(void) { exit(1); }])],
- AC_DEFINE([HAVE_ATTRIBUTE_NORETURN], [1],
- [Define if __attribute__((noreturn))]))
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((format(__printf__, 1, 2))) cleanup(const char *fmt, ...) { }])],
- AC_DEFINE([HAVE_ATTRIBUTE_PRINTF], [1],
- [Define if __attribute__((format(__printf__)))]))
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((unused)) cleanup(void) { }])],
- AC_DEFINE([HAVE_ATTRIBUTE_UNUSED], [1],
- [Define if __attribute__((unused))]))
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([static void __attribute__((used)) cleanup(void) { }])],
- AC_DEFINE([HAVE_ATTRIBUTE_USED], [1],
- [Define if __attribute__((used))]))
- AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return __builtin_constant_p(1) ? 0 : 1; }])],
- AC_DEFINE([HAVE_BUILTIN_CONSTANT_P], [1],
- [Define if have __builtin_constant_p]))
- AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) { return __builtin_types_compatible_p(char *, int) ? 1 : 0; }])],
- AC_DEFINE([HAVE_BUILTIN_TYPES_COMPATIBLE_P], [1],
- [Define if have __builtin_types_compatible_p]))
- AC_COMPILE_IFELSE([AC_LANG_SOURCE([static int __attribute__((warn_unused_result)) func(int x) { return x; }])],
- AC_DEFINE([HAVE_WARN_UNUSED_RESULT], [1],
- [Define if __attribute__((warn_unused_result))]))
- if test "x$prefix" = xNONE; then
- prefix=/usr/local
- fi
- AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$prefix/bin"], [Path to cgminer install])
- AC_SUBST(JANSSON_LIBS)
- AC_SUBST(PTHREAD_FLAGS)
- AC_SUBST(DLOPEN_FLAGS)
- AC_SUBST(PTHREAD_LIBS)
- AC_SUBST(NCURSES_LIBS)
- AC_SUBST(PDCURSES_LIBS)
- AC_SUBST(WS2_LIBS)
- AC_SUBST(MM_LIBS)
- AC_SUBST(MATH_LIBS)
- AC_SUBST(RT_LIBS)
- AC_CONFIG_FILES([
- Makefile
- compat/Makefile
- ccan/Makefile
- lib/Makefile
- ])
- AC_OUTPUT
- echo
- echo
- echo
- echo "------------------------------------------------------------------------"
- echo "$PACKAGE $VERSION"
- echo "------------------------------------------------------------------------"
- echo
- echo
- echo "Configuration Options Summary:"
- echo
- if test "x$libcurl" != xno; then
- echo " libcurl(GBT+getwork).: Enabled: $LIBCURL_LIBS"
- else
- echo " libcurl(GBT+getwork).: Disabled"
- fi
- echo " curses.TUI...........: $cursesmsg"
- if test "x$scrypt" != xno; then
- echo " scrypt...............: Enabled"
- else
- echo " scrypt...............: Disabled"
- fi
- echo
- if test "x$ants1" = xyes; then
- echo " Antminer.S1.Bitmain..: Enabled"
- else
- echo " Antminer.S1.Bitmain..: Disabled"
- fi
- if test "x$ants2" = xyes; then
- echo " Antminer.S2.Bitmain..: Enabled"
- else
- echo " Antminer.S2.Bitmain..: Disabled"
- fi
- if test "x$avalon" = xyes; then
- echo " Avalon.ASICs.........: Enabled"
- else
- echo " Avalon.ASICs.........: Disabled"
- fi
- if test "x$avalon2" = xyes; then
- echo " Avalon2.ASICs........: Enabled"
- else
- echo " Avalon2.ASICs........: Disabled"
- fi
- if test "x$minion" = xyes; then
- echo " BlackArrowMinion.ASIC: Enabled"
- else
- echo " BlackArrowMinion.ASIC: Disabled"
- fi
- if test "x$bab" = xyes; then
- echo " BlackArrow.ASICs.....: Enabled"
- else
- echo " BlackArrow.ASICs.....: Disabled"
- fi
- if test "x$bflsc" = xyes; then
- echo " BFL.ASICs............: Enabled"
- else
- echo " BFL.ASICs............: Disabled"
- fi
- if test "x$bitforce" = xyes; then
- echo " BitForce.FPGAs.......: Enabled"
- else
- echo " BitForce.FPGAs.......: Disabled"
- fi
- if test "x$bitfury" = xyes; then
- echo " BitFury.ASICs........: Enabled"
- else
- echo " BitFury.ASICs........: Disabled"
- fi
- if test "x$blockerupter" = xyes; then
- echo " BlockErupter.ASICs...: Enabled"
- else
- echo " BlockErupter.ASICs...: Disabled"
- fi
- if test "x$cointerra" = xyes; then
- echo " Cointerra.ASICs......: Enabled"
- else
- echo " Cointerra.ASICs......: Disabled"
- fi
- if test "x$sp10" = xyes; then
- echo " Spond-sp10.ASICs.....: Enabled"
- else
- echo " Spond-sp10.ASICs.....: Disabled"
- fi
- if test "x$sp30" = xyes; then
- echo " Spond-sp30.ASICs.....: Enabled"
- else
- echo " Spond-sp30.ASICs.....: Disabled"
- fi
- if test "x$bitmine_A1" = xyes; then
- echo " Bitmine-A1.ASICs.....: Enabled"
- else
- echo " Bitmine-A1.ASICs.....: Disabled"
- fi
- if test "x$drillbit" = xyes; then
- echo " Drillbit.BitFury.....: Enabled"
- else
- echo " Drillbit.BitFury.....: Disabled"
- fi
- if test "x$hashfast" = xyes; then
- echo " Hashfast.ASICs.......: Enabled"
- else
- echo " Hashfast.ASICs.......: Disabled"
- fi
- if test "x$hashratio" = xyes; then
- echo " Hashratio.ASICs......: Enabled"
- else
- echo " Hashratio.ASICs......: Disabled"
- fi
- if test "x$icarus" = xyes; then
- echo " Icarus.ASICs/FPGAs...: Enabled"
- else
- echo " Icarus.ASICs/FPGAs...: Disabled"
- fi
- if test "x$klondike" = xyes; then
- echo " Klondike.ASICs.......: Enabled"
- else
- echo " Klondike.ASICs.......: Disabled"
- fi
- if test "x$knc" = xyes; then
- echo " KnC.ASICs............: Enabled"
- else
- echo " KnC.ASICs............: Disabled"
- fi
- if test "x$modminer" = xyes; then
- echo " ModMiner.FPGAs.......: Enabled"
- else
- echo " ModMiner.FPGAs.......: Disabled"
- fi
- if test "x$gridseed" = xyes; then
- echo " GridSeed.ASICs.......: Enabled"
- else
- echo " GridSeed.ASICs.......: Disabled"
- fi
- if test "x$zeus" = xyes; then
- echo " Zeus.ASICs...........: Enabled"
- else
- echo " Zeus.ASICs...........: Disabled"
- fi
- if test "x$lketc" = xyes; then
- echo " Lketc.ASICs..........: Enabled"
- else
- echo " Lketc.ASICs..........: Disabled"
- fi
- #Add any new device to this, along with a no on the end of the test
- if test "x$avalon$avalon2$bab$bflsc$bitforce$bitfury$blockerupter$hashfast$hashratio$icarus$klondike$knc$modminer$drillbit$minion$cointerra$bitmine_A1$ants1$ants2$sp10$sp30$gridseed$zeus$lketc" = xnononononononononononononononononononononononono; then
- AC_MSG_ERROR([No mining devices configured in])
- fi
- if test "x$standalone" = xyes; then
- if test $drivercount != x; then
- AC_MSG_ERROR([You have configured more than one driver in with a driver that is designed to be standalone only (see ./configure --help)])
- fi
- fi
- echo
- echo "Compilation............: make (or gmake)"
- echo " CPPFLAGS.............: $CPPFLAGS"
- echo " CFLAGS...............: $CFLAGS"
- echo " LDFLAGS..............: $LDFLAGS $PTHREAD_FLAGS"
- echo " LDADD................: $DLOPEN_FLAGS $LIBCURL_LIBS $JANSSON_LIBS $PTHREAD_LIBS $NCURSES_LIBS $PDCURSES_LIBS $WS2_LIBS $MATH_LIBS $LIBUSB_LIBS $LIBUDEV_LIBS $RT_LIBS"
- echo
- echo "Installation...........: make install (as root if needed, with 'su' or 'sudo')"
- echo " prefix...............: $prefix"
- echo
- if test "x$want_usbutils$dlibusb" = xyesyes; then
- echo "*** SYSTEM LIBUSB BEING ADDED - NOT RECOMMENDED UNLESS YOU ARE UNABLE TO COMPILE THE INCLUDED LIBUSB ***"
- echo
- fi
|