Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 1 | ## |
Uwe Hermann | 50985c2 | 2013-04-23 22:24:30 +0200 | [diff] [blame] | 2 | ## This file is part of the libsigrok project. |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 3 | ## |
Bert Vermeulen | c73d2ea | 2012-02-13 14:31:51 +0100 | [diff] [blame] | 4 | ## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com> |
Alexandru Gagniuc | d375b3c | 2012-10-15 01:17:32 -0500 | [diff] [blame] | 5 | ## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com> |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 6 | ## |
| 7 | ## This program is free software: you can redistribute it and/or modify |
| 8 | ## it under the terms of the GNU General Public License as published by |
| 9 | ## the Free Software Foundation, either version 3 of the License, or |
| 10 | ## (at your option) any later version. |
| 11 | ## |
| 12 | ## This program is distributed in the hope that it will be useful, |
| 13 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | ## GNU General Public License for more details. |
| 16 | ## |
| 17 | ## You should have received a copy of the GNU General Public License |
| 18 | ## along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 19 | ## |
| 20 | |
Uwe Hermann | ef7228b | 2012-01-28 21:26:56 +0100 | [diff] [blame] | 21 | # We require at least autoconf 2.63 (AC_INIT format changed there). |
| 22 | AC_PREREQ([2.63]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 23 | |
Uwe Hermann | 3af71f0 | 2012-01-04 00:05:43 +0100 | [diff] [blame] | 24 | # libsigrok package version number (NOT the same as shared lib version!). |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 25 | m4_define([sr_package_version_major], [0]) |
Uwe Hermann | 4133caa | 2014-05-06 23:00:08 +0200 | [diff] [blame] | 26 | m4_define([sr_package_version_minor], [3]) |
| 27 | m4_define([sr_package_version_micro], [0]) |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 28 | m4_define([sr_package_version], [sr_package_version_major.sr_package_version_minor.sr_package_version_micro]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 29 | |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 30 | AC_INIT([libsigrok], [sr_package_version], [sigrok-devel@lists.sourceforge.net], |
Uwe Hermann | db8ae7b | 2011-12-30 10:50:00 +0100 | [diff] [blame] | 31 | [libsigrok], [http://www.sigrok.org]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 32 | AC_CONFIG_HEADER([config.h]) |
Uwe Hermann | d8521c9 | 2012-01-03 21:55:48 +0100 | [diff] [blame] | 33 | AC_CONFIG_MACRO_DIR([autostuff]) |
| 34 | AC_CONFIG_AUX_DIR([autostuff]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 35 | |
Uwe Hermann | ef7228b | 2012-01-28 21:26:56 +0100 | [diff] [blame] | 36 | # We require at least automake 1.11 (needed for 'silent rules'). |
Uwe Hermann | 67bd805 | 2014-03-19 23:04:55 +0100 | [diff] [blame] | 37 | AM_INIT_AUTOMAKE([1.11 -Wall -Werror subdir-objects check-news color-tests]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 38 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
Pekka Nikander | 432e5e9 | 2012-05-11 19:23:21 +0300 | [diff] [blame] | 39 | m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 40 | |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 41 | AH_TOP([#ifndef SR_CONFIG_H |
| 42 | #define SR_CONFIG_H /* To stop multiple inclusions. */]) |
| 43 | AH_BOTTOM([#endif /* SR_CONFIG_H */]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 44 | |
Uwe Hermann | 1a081ca | 2012-02-01 23:40:35 +0100 | [diff] [blame] | 45 | # Enable more compiler warnings via -Wall and -Wextra. Add -fvisibility=hidden |
| 46 | # and enforce use of SR_API to explicitly mark all public API functions. |
Martin Ling | 4f10853 | 2014-04-18 19:11:47 +0100 | [diff] [blame] | 47 | COMMON_FLAGS="$CFLAGS -Wall -Wextra -fvisibility=hidden" |
| 48 | CFLAGS="$COMMON_FLAGS -Wmissing-prototypes" |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 49 | CXXFLAGS="-std=c++11 $COMMON_FLAGS" |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 50 | |
| 51 | # Checks for programs. |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 52 | AC_PROG_CC |
| 53 | AC_PROG_CPP |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 54 | AC_PROG_CXX |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 55 | AC_PROG_INSTALL |
| 56 | AC_PROG_LN_S |
| 57 | |
Uwe Hermann | bb203cd | 2013-03-12 23:00:58 +0100 | [diff] [blame] | 58 | # Required for per-target flags or subdir-objects with C sources. |
| 59 | AM_PROG_CC_C_O |
| 60 | |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 61 | # Initialize libtool. |
| 62 | LT_INIT |
| 63 | |
| 64 | # Initialize pkg-config. |
| 65 | # We require at least 0.22, as "Requires.private" behaviour changed there. |
| 66 | PKG_PROG_PKG_CONFIG([0.22]) |
| 67 | |
Uwe Hermann | 3af71f0 | 2012-01-04 00:05:43 +0100 | [diff] [blame] | 68 | # Library version for libsigrok (NOT the same as the package version). |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 69 | # Carefully read the libtool docs before updating these numbers! |
| 70 | # The algorithm for determining which number to change (and how) is nontrivial! |
| 71 | # http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info |
Uwe Hermann | 85ca913 | 2014-05-06 22:59:00 +0200 | [diff] [blame] | 72 | SR_LIB_VERSION_CURRENT=2 |
| 73 | SR_LIB_VERSION_REVISION=0 |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 74 | SR_LIB_VERSION_AGE=0 |
| 75 | SR_LIB_VERSION="$SR_LIB_VERSION_CURRENT:$SR_LIB_VERSION_REVISION:$SR_LIB_VERSION_AGE" |
| 76 | SR_LIB_LDFLAGS="-version-info $SR_LIB_VERSION" |
| 77 | AC_SUBST(SR_LIB_VERSION_CURRENT) |
| 78 | AC_SUBST(SR_LIB_VERSION_REVISION) |
| 79 | AC_SUBST(SR_LIB_VERSION_AGE) |
| 80 | AC_SUBST(SR_LIB_VERSION) |
| 81 | AC_SUBST(SR_LIB_LDFLAGS) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 82 | |
Bert Vermeulen | dbf2482 | 2013-01-14 00:52:55 +0100 | [diff] [blame] | 83 | AC_ARG_ENABLE(all-drivers, AC_HELP_STRING([--enable-all-drivers], |
| 84 | [enable all drivers by default [default=yes]]), |
| 85 | [HW_ENABLED_DEFAULT="$enableval"], |
| 86 | [HW_ENABLED_DEFAULT="yes"]) |
| 87 | |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 88 | # Usage: DRIVER([Device name], [driver-name]) |
| 89 | # An optional third argument [no] disables that driver. |
| 90 | m4_define([driverize], [m4_tolower(m4_bpatsubst([$1], [[^0-9a-zA-Z-]+], [-]))]) |
| 91 | m4_define([upperize], [m4_toupper(m4_bpatsubst([$1], [[^0-9a-zA-Z_]+], [_]))]) |
| 92 | AC_DEFUN([DRIVER], [ |
| 93 | if test -z "$3"; then |
| 94 | default=$HW_ENABLED_DEFAULT |
| 95 | else |
| 96 | default="$3" |
| 97 | fi |
| 98 | AC_ARG_ENABLE($2, AC_HELP_STRING([--enable-$2], [enable $1 support]), |
| 99 | [m4_join([], [HW_], upperize([$2]))="$enableval"], |
| 100 | [m4_join([], [HW_], upperize([$2]))=$default]) |
Bert Vermeulen | 43cd463 | 2014-07-22 18:17:34 +0200 | [diff] [blame] | 101 | dots=$(echo -n ".............................." | cut -c 1-$(expr 32 - $(echo -n $2|wc -c))) |
| 102 | driver_summary="${driver_summary} - $2${dots} \${m4_join([], [HW_], upperize([$2]))}@" |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 103 | ]) |
Bert Vermeulen | 6ac0db1 | 2012-09-02 11:58:29 +0200 | [diff] [blame] | 104 | |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 105 | DRIVER([Agilent DMM], [agilent-dmm]) |
| 106 | DRIVER([Appa 55II], [appa-55ii]) |
| 107 | DRIVER([ASIX SIGMA/SIGMA2], [asix-sigma]) |
| 108 | DRIVER([Atten PPS3xxx], [atten-pps3xxx]) |
Kumar Abhishek | bb99379 | 2014-07-22 01:41:52 +0530 | [diff] [blame] | 109 | DRIVER([BeagleLogic], [beaglelogic]) |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 110 | DRIVER([Brymen BM86x], [brymen-bm86x]) |
| 111 | DRIVER([Brymen DMM], [brymen-dmm]) |
| 112 | DRIVER([CEM DT-885x], [cem-dt-885x]) |
| 113 | DRIVER([Center 3xx], [center-3xx]) |
| 114 | DRIVER([ChronoVu LA], [chronovu-la]) |
| 115 | DRIVER([Colead SLM], [colead-slm]) |
| 116 | DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu]) |
| 117 | DRIVER([demo], [demo]) |
| 118 | DRIVER([Fluke DMM], [fluke-dmm]) |
| 119 | DRIVER([fx2lafw], [fx2lafw]) |
| 120 | DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x]) |
| 121 | DRIVER([Hameg HMO], [hameg-hmo]) |
| 122 | DRIVER([Hantek DSO], [hantek-dso]) |
| 123 | DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2]) |
| 124 | DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus]) |
| 125 | DRIVER([Kecheng KC-330B], [kecheng-kc-330b]) |
| 126 | DRIVER([Lascar EL-USB], [lascar-el-usb]) |
| 127 | DRIVER([Manson HCS-3xxx], [manson-hcs-3xxx]) |
| 128 | DRIVER([MIC 985xx], [mic-985xx]) |
| 129 | DRIVER([Motech LPS 30x], [motech-lps-30x]) |
| 130 | DRIVER([Norma DMM], [norma-dmm]) |
| 131 | DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer]) |
| 132 | DRIVER([Rigol DS], [rigol-ds]) |
| 133 | DRIVER([Saleae Logic16], [saleae-logic16]) |
| 134 | DRIVER([serial DMM], [serial-dmm]) |
| 135 | DRIVER([Sysclk LWLA], [sysclk-lwla]) |
| 136 | DRIVER([Teleinfo], [teleinfo]) |
| 137 | DRIVER([Testo], [testo]) |
| 138 | DRIVER([Tondaj SL-814], [tondaj-sl-814]) |
| 139 | DRIVER([UNI-T DMM], [uni-t-dmm]) |
| 140 | DRIVER([UNI-T UT32x], [uni-t-ut32x]) |
| 141 | DRIVER([Victor DMM], [victor-dmm]) |
| 142 | DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 143 | |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 144 | AC_ARG_ENABLE(libserialport, |
| 145 | AC_HELP_STRING([--disable-libserialport], |
| 146 | [disable libserialport support [default=detect]])) |
| 147 | |
| 148 | AC_ARG_ENABLE(libftdi, |
| 149 | AC_HELP_STRING([--disable-libftdi], |
| 150 | [disable libftdi support [default=detect]])) |
| 151 | |
| 152 | AC_ARG_ENABLE(libusb, |
| 153 | AC_HELP_STRING([--disable-libusb], |
| 154 | [disable libusb support [default=detect]])) |
| 155 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 156 | # Language binding '--enable' options |
| 157 | |
Bert Vermeulen | 6223fee | 2014-07-19 20:20:47 +0200 | [diff] [blame] | 158 | AC_ARG_ENABLE(bindings, |
| 159 | AC_HELP_STRING([--enable-bindings], |
| 160 | [build language bindings [default=yes]]), |
| 161 | [BINDINGS_ALL="$enableval"], [BINDINGS_ALL="yes"]) |
| 162 | |
| 163 | AC_ARG_ENABLE(cxx, |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 164 | AC_HELP_STRING([--enable-cxx], |
| 165 | [build C++ bindings [default=yes]]), |
Bert Vermeulen | 6223fee | 2014-07-19 20:20:47 +0200 | [diff] [blame] | 166 | [BINDINGS_CXX="$enableval"], [BINDINGS_CXX=$BINDINGS_ALL]) |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 167 | |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 168 | AC_ARG_ENABLE(python, |
| 169 | AC_HELP_STRING([--enable-python], |
| 170 | [build Python bindings [default=yes]]), |
Bert Vermeulen | 6223fee | 2014-07-19 20:20:47 +0200 | [diff] [blame] | 171 | [BINDINGS_PYTHON="$enableval"], [BINDINGS_PYTHON=$BINDINGS_ALL]) |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 172 | |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 173 | AC_ARG_ENABLE(java, |
| 174 | AC_HELP_STRING([--enable-java], |
| 175 | [build Java bindings [default=yes]]), |
Bert Vermeulen | 6223fee | 2014-07-19 20:20:47 +0200 | [diff] [blame] | 176 | [BINDINGS_JAVA="$enableval"], [BINDINGS_JAVA=$BINDINGS_ALL]) |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 177 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 178 | # Check if the C++ compiler supports the C++11 standard. |
| 179 | |
Bert Vermeulen | f8158d5 | 2014-07-18 19:55:38 +0200 | [diff] [blame] | 180 | m4_ifdef([AX_CXX_COMPILE_STDCXX_11], [AX_CXX_COMPILE_STDCXX_11(,[optional])], |
| 181 | [AC_MSG_NOTICE([Missing macro m4_toupper(aX_CXX_COMPILE_STDCXX_11), no C++11 check])]) |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 182 | |
| 183 | if test "x$HAVE_CXX11" != "x1"; then |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 184 | BINDINGS_CXX="no"; cxx_msg="C++11 compiler required" |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 185 | fi |
| 186 | |
Martin Ling | 3532ed0 | 2014-08-01 17:18:09 +0100 | [diff] [blame] | 187 | # The C++ bindings use doxygen to parse libsigrok symbols. |
| 188 | AC_CHECK_PROG([HAVE_DOXYGEN], [doxygen], [yes]) |
| 189 | if test "x$HAVE_DOXYGEN" != "xyes"; then |
| 190 | BINDINGS_CXX="no"; cxx_msg="doxygen required" |
Bert Vermeulen | bcacb86 | 2014-07-18 21:12:31 +0200 | [diff] [blame] | 191 | fi |
| 192 | |
Bert Vermeulen | de44e11 | 2014-07-23 16:33:42 +0200 | [diff] [blame] | 193 | # Python is needed for the C++ bindings. |
| 194 | AC_CHECK_PROG([HAVE_PYTHON], [python], [yes]) |
| 195 | if test "x$HAVE_PYTHON" != "xyes"; then |
| 196 | BINDINGS_CXX="no"; cxx_msg="Python required" |
| 197 | fi |
| 198 | |
| 199 | # The Python bindings need Python development files |
Bert Vermeulen | 57d62c4 | 2014-07-23 12:45:41 +0200 | [diff] [blame] | 200 | PKG_CHECK_MODULES([python], [python >= 2.7], |
Bert Vermeulen | bcacb86 | 2014-07-18 21:12:31 +0200 | [diff] [blame] | 201 | [CXXFLAGS="$CXXFLAGS $python_CFLAGS"; |
| 202 | CXXLIBS="$CXXLIBS $python_LIBS"], |
Bert Vermeulen | de44e11 | 2014-07-23 16:33:42 +0200 | [diff] [blame] | 203 | [BINDINGS_PYTHON="no"; python_msg="Python headers required"]) |
Bert Vermeulen | bcacb86 | 2014-07-18 21:12:31 +0200 | [diff] [blame] | 204 | |
Bert Vermeulen | de44e11 | 2014-07-23 16:33:42 +0200 | [diff] [blame] | 205 | # The Python bindings need the setuptools Python module. |
Bert Vermeulen | 0afa91b | 2014-07-23 12:57:37 +0200 | [diff] [blame] | 206 | m4_ifdef([AX_PYTHON_MODULE], [AX_PYTHON_MODULE([setuptools])], |
| 207 | # We'll let it go through even if the macro wasn't found, the python |
| 208 | # module may still be there. |
| 209 | [HAVE_PYTHON_SETUPTOOLS="yes"; |
| 210 | AC_MSG_NOTICE([Missing macro m4_toupper(aX_PYTHON_MODULE), no setuptools check])] |
| 211 | ) |
| 212 | if test "x$HAVE_PYMOD_SETUPTOOLS" != "xyes"; then |
Bert Vermeulen | de44e11 | 2014-07-23 16:33:42 +0200 | [diff] [blame] | 213 | BINDINGS_PYTHON="no"; python_msg="Python setuptools module required" |
Bert Vermeulen | 0afa91b | 2014-07-23 12:57:37 +0200 | [diff] [blame] | 214 | fi |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 215 | |
Bert Vermeulen | 0afa91b | 2014-07-23 12:57:37 +0200 | [diff] [blame] | 216 | # The Python and Java bindings use swig to generate code. |
| 217 | AC_CHECK_PROG([HAVE_SWIG], [swig], [yes]) |
| 218 | if test "x$HAVE_SWIG" != "xyes"; then |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 219 | BINDINGS_PYTHON="no"; python_msg="swig required" |
| 220 | BINDINGS_JAVA="no"; java_msg="swig required" |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 221 | fi |
| 222 | |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 223 | # Checks for libraries. |
| 224 | |
Martin Ling | 1c6736a | 2013-12-06 02:26:58 +0000 | [diff] [blame] | 225 | case "$host" in |
| 226 | *mingw*) |
| 227 | # We need to link against the Winsock2 library for SCPI over TCP. |
| 228 | LIBS="$LIBS -lws2_32";; |
| 229 | esac |
| 230 | |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 231 | # This variable collects the pkg-config names of all detected libs. |
| 232 | # It is then used to construct the "Requires.private:" field in the |
| 233 | # libsigrok.pc file. |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 234 | SR_PKGLIBS="" |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 235 | |
Uwe Hermann | ee8ddd8 | 2013-05-10 20:59:42 +0200 | [diff] [blame] | 236 | # libm (the standard math library) is always needed. |
| 237 | AC_SEARCH_LIBS([pow], [m]) |
| 238 | |
Uwe Hermann | 7d4874c | 2014-01-30 17:02:34 +0100 | [diff] [blame] | 239 | # RPC is only needed for VXI support. |
Aurelien Jacobs | d5876cf | 2014-01-09 23:44:35 +0100 | [diff] [blame] | 240 | AC_MSG_CHECKING([for RPC support]) |
| 241 | AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <rpc/rpc.h>], |
Matthias Heidbrink | 823b4e5 | 2014-02-05 19:50:46 +0100 | [diff] [blame] | 242 | [CLIENT *rpc_test(void)], |
| 243 | [{ return clnt_create("", 0, 0, ""); }])], |
| 244 | [AC_MSG_RESULT([yes]); have_rpc=1], |
| 245 | [AC_MSG_RESULT([no]); have_rpc=0]) |
Aurelien Jacobs | d5876cf | 2014-01-09 23:44:35 +0100 | [diff] [blame] | 246 | # Define HAVE_RPC in config.h if we found RPC support. |
Uwe Hermann | 7d4874c | 2014-01-30 17:02:34 +0100 | [diff] [blame] | 247 | AC_DEFINE_UNQUOTED(HAVE_RPC, [$have_rpc], [Specifies whether we have RPC support.]) |
Aurelien Jacobs | d5876cf | 2014-01-09 23:44:35 +0100 | [diff] [blame] | 248 | # VXI support is only compiled if RPC support was found. |
Uwe Hermann | 7d4874c | 2014-01-30 17:02:34 +0100 | [diff] [blame] | 249 | AM_CONDITIONAL(NEED_RPC, test "x$have_rpc" != "x0") |
Aurelien Jacobs | d5876cf | 2014-01-09 23:44:35 +0100 | [diff] [blame] | 250 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 251 | # libglib-2.0 is always needed. Abort if it's not found. |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 252 | # Note: glib-2.0 is part of the libsigrok API (hard pkg-config requirement). |
Uwe Hermann | 406569d | 2013-04-12 18:47:06 +0200 | [diff] [blame] | 253 | # We require at least 2.32.0 due to e.g. g_variant_new_fixed_array(). |
| 254 | AM_PATH_GLIB_2_0([2.32.0], |
Martin Ling | 4f10853 | 2014-04-18 19:11:47 +0100 | [diff] [blame] | 255 | [LIB_CFLAGS="$LIB_CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 256 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 257 | # libzip is always needed. Abort if it's not found. |
Uwe Hermann | 8819bf5 | 2013-10-16 18:10:29 +0200 | [diff] [blame] | 258 | PKG_CHECK_MODULES([libzip], [libzip >= 0.10], |
Martin Ling | 4f10853 | 2014-04-18 19:11:47 +0100 | [diff] [blame] | 259 | [LIB_CFLAGS="$LIB_CFLAGS $libzip_CFLAGS"; LIBS="$LIBS $libzip_LIBS"; |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 260 | SR_PKGLIBS="$SR_PKGLIBS libzip"]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 261 | |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 262 | # libserialport is only needed for some hardware drivers. Disable the |
| 263 | # respective drivers if it is not found. |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 264 | if test "x$enable_libserialport" != "xno"; then |
| 265 | PKG_CHECK_MODULES([libserialport], [libserialport >= 0.1.0], |
| 266 | [have_libserialport="yes"; LIB_CFLAGS="$LIB_CFLAGS $libserialport_CFLAGS"; |
| 267 | LIBS="$LIBS $libserialport_LIBS"; |
| 268 | SR_PKGLIBS="$SR_PKGLIBS libserialport"], |
| 269 | [have_libserialport="no"]) |
| 270 | if test "x$enable_libserialport$have_libserialport" = "xyesno"; then |
| 271 | AC_MSG_ERROR([libserialport support requested, but it was not found]) |
| 272 | fi |
| 273 | else |
| 274 | have_libserialport="no" |
| 275 | fi |
| 276 | |
| 277 | # Define HAVE_LIBSERIALPORT in config.h if we found libserialport. |
| 278 | if test "x$have_libserialport" = "xno"; then |
| 279 | HW_AGILENT_DMM="no"; HW_APPA_55II="no"; |
Marc Schink | 1c18390 | 2014-01-11 13:55:26 +0100 | [diff] [blame] | 280 | HW_ATTEN_PPS3XXX="no"; HW_BRYMEN_DMM="no"; HW_CEM_DT_885X="no"; |
Matthias Heidbrink | 823b4e5 | 2014-02-05 19:50:46 +0100 | [diff] [blame] | 281 | HW_CENTER_3XX="no"; HW_COLEAD_SLM="no"; HW_CONRAD_DIGI_35_CPU="no"; |
Uwe Hermann | 8c21897 | 2014-05-04 17:44:05 +0200 | [diff] [blame] | 282 | HW_FLUKE_DMM="no"; HW_GMC_MH_1X_2X="no"; HW_HAMEG_HMO="no"; |
Matthias Heidbrink | adeae78 | 2014-06-27 23:31:50 +0200 | [diff] [blame] | 283 | HW_MANSON_HCS_3XXX="no"; HW_MIC_985XX="no"; HW_MOTECH_LPS_30X="no"; |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 284 | HW_NORMA_DMM="no"; HW_OPENBENCH_LOGIC_SNIFFER="no"; HW_SERIAL_DMM="no"; |
| 285 | HW_TELEINFO="no"; HW_TONDAJ_SL_814="no"; |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 286 | else |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 287 | AC_DEFINE_UNQUOTED(HAVE_LIBSERIALPORT, [1], |
| 288 | [Specifies whether we have libserialport.]) |
| 289 | fi |
| 290 | |
| 291 | # Serial port helper code is only compiled in if libserialport was found. |
| 292 | AM_CONDITIONAL(NEED_SERIAL, test "x$have_libserialport" != xno) |
Martin Ling | a9bce5a | 2013-10-27 15:51:24 +0000 | [diff] [blame] | 293 | |
Martin Ling | 1fb2312 | 2014-02-01 10:01:05 +0000 | [diff] [blame] | 294 | PKG_CHECK_MODULES([librevisa], [librevisa >= 0.0.20130812], |
Martin Ling | 4f10853 | 2014-04-18 19:11:47 +0100 | [diff] [blame] | 295 | [have_librevisa="yes"; LIB_CFLAGS="$LIB_CFLAGS $librevisa_CFLAGS"; |
Martin Ling | 1fb2312 | 2014-02-01 10:01:05 +0000 | [diff] [blame] | 296 | LIBS="$LIBS $librevisa_LIBS"; |
Martin Ling | b84b7ee | 2014-02-02 16:21:33 -0800 | [diff] [blame] | 297 | SR_PKGLIBS="$SR_PKGLIBS librevisa"], |
| 298 | [have_librevisa="no"]) |
Martin Ling | 1fb2312 | 2014-02-01 10:01:05 +0000 | [diff] [blame] | 299 | |
| 300 | # VISA SCPI backend is only compiled in if librevisa was found. |
| 301 | AM_CONDITIONAL(NEED_VISA, test "x$have_librevisa" != xno) |
| 302 | |
| 303 | # Define HAVE_LIBREVISA in config.h if we found librevisa. |
| 304 | if test "x$have_librevisa" != "xno"; then |
| 305 | AC_DEFINE_UNQUOTED(HAVE_LIBREVISA, [1], |
| 306 | [Specifies whether we have librevisa.]) |
| 307 | fi |
| 308 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 309 | # libusb-1.0 is only needed for some hardware drivers. Disable the respective |
| 310 | # drivers if it is not found. |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 311 | if test "x$enable_libusb" != "xno"; then |
| 312 | case "$host" in |
| 313 | *freebsd*) |
| 314 | # FreeBSD comes with an "integrated" libusb-1.0-style USB API. |
| 315 | # This means libusb-1.0 is always available, no need to check for it, |
| 316 | # and no need to (potentially) disable any drivers if it's not found. |
| 317 | have_libusb1_0="yes" |
| 318 | ;; |
| 319 | *) |
| 320 | PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.16], |
| 321 | [have_libusb1_0="yes"; LIB_CFLAGS="$LIB_CFLAGS $libusb_CFLAGS"; |
| 322 | LIBS="$LIBS $libusb_LIBS"; |
| 323 | SR_PKGLIBS="$SR_PKGLIBS libusb-1.0"], |
| 324 | [have_libusb1_0="no"]) |
| 325 | if test "x$enable_libusb$have_libusb1_0" = "xyesno"; then |
| 326 | AC_MSG_ERROR([libusb support requested, but it was not found]) |
| 327 | fi |
| 328 | ;; |
| 329 | esac |
| 330 | else |
| 331 | have_libusb1_0="no" |
| 332 | fi |
| 333 | |
| 334 | # Define HAVE_LIBUSB_1_0 in config.h if we found libusb-1.0. |
| 335 | if test "x$have_libusb1_0" = "xno"; then |
| 336 | HW_BRYMEN_BM86X="no"; HW_FX2LAFW="no"; |
| 337 | HW_HANTEK_DSO="no"; HW_IKALOGIC_SCANALOGIC2="no"; |
| 338 | HW_KECHENG_KC_330B="no"; HW_LASCAR_EL_USB="no"; |
Bert Vermeulen | 0acdd79 | 2014-07-01 01:34:29 +0200 | [diff] [blame] | 339 | HW_SYSCLK_LWLA="no"; HW_TESTO="no"; HW_UNI_T_DMM="no"; |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 340 | HW_UNI_T_UT32X="no"; HW_VICTOR_DMM="no"; |
| 341 | HW_ZEROPLUS_LOGIC_CUBE="no"; HW_SALEAE_LOGIC16="no"; |
| 342 | else |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 343 | AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1], |
| 344 | [Specifies whether we have a libusb.h header.]) |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 345 | fi |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 346 | |
Uwe Hermann | 3fd1d0e | 2013-04-08 15:40:57 +0200 | [diff] [blame] | 347 | # USB + FX2 firmware helper code is only compiled in if libusb-1.0 was found. |
| 348 | AM_CONDITIONAL(NEED_USB, test "x$have_libusb1_0" != xno) |
| 349 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 350 | # libftdi is only needed for some hardware drivers. Disable them if not found. |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 351 | if test "x$enable_libftdi" != "xno"; then |
| 352 | PKG_CHECK_MODULES([libftdi], [libftdi >= 0.16], |
| 353 | [have_libftdi="yes"; LIB_CFLAGS="$LIB_CFLAGS $libftdi_CFLAGS"; |
| 354 | LIBS="$LIBS $libftdi_LIBS"; |
| 355 | SR_PKGLIBS="$SR_PKGLIBS libftdi"], |
Uwe Hermann | c78bcc6 | 2014-06-16 13:19:34 +0200 | [diff] [blame] | 356 | [PKG_CHECK_MODULES([libftdi1], [libftdi1 >= 1.0], |
Dan Horák | 9250635 | 2014-06-15 11:08:37 +0200 | [diff] [blame] | 357 | [LIB_CFLAGS="$LIB_CFLAGS $libftdi1_CFLAGS"; |
| 358 | LIBS="$LIBS $libftdi1_LIBS"; |
| 359 | SR_PKGLIBS="$SR_PKGLIBS libftdi1"], |
| 360 | [have_libftdi="no"])]) |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 361 | if test "x$enable_libftdi$have_libftdi" = "xyesno"; then |
| 362 | AC_MSG_ERROR([libftdi support requested, but it was not found]) |
| 363 | fi |
| 364 | else |
| 365 | have_libftdi="no" |
| 366 | fi |
| 367 | |
| 368 | if test "x$have_libftdi" = "xno"; then |
| 369 | HW_ASIX_SIGMA="no"; HW_CHRONOVU_LA="no"; HW_IKALOGIC_SCANAPLUS="no"; |
| 370 | fi |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 371 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 372 | # glibmm-2.4 is needed for the C++ bindings. |
| 373 | PKG_CHECK_MODULES([glibmm], [glibmm-2.4 >= 2.32.0], |
| 374 | [CXXFLAGS="$CXXFLAGS $glibmm_CFLAGS"; |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 375 | CXXLIBS="$CXXLIBS $glibmm_LIBS"], |
| 376 | [BINDINGS_CXX="no"; cxx_msg="glibmm required"]) |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 377 | |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 378 | # PyGObject is needed for the Python bindings. |
Uwe Hermann | 022a7fe | 2014-07-22 23:11:44 +0200 | [diff] [blame] | 379 | PKG_CHECK_MODULES([pygobject], [pygobject-3.0 >= 3.0.0], |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 380 | [CXXFLAGS="$CXXFLAGS $pygobject_CFLAGS"; |
Martin Ling | abc7146 | 2014-07-19 15:10:25 +0100 | [diff] [blame] | 381 | CXXLIBS="$CXXLIBS $pygobject_LIBS"; |
| 382 | PKG_CHECK_MODULES([pygobject_3_7_91], [pygobject-3.0 >= 3.7.91], |
| 383 | [pyg_flags_signed=0], [pyg_flags_signed=1]); |
| 384 | AC_DEFINE_UNQUOTED(PYGOBJECT_FLAGS_SIGNED, [$pyg_flags_signed], |
| 385 | [Whether last argument to pyg_flags_get_value() is signed])], |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 386 | [BINDINGS_PYTHON="no"; python_msg="Python pygobject module required"]) |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 387 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 388 | # The Check unit testing framework is optional. Disable if not found. |
Uwe Hermann | 79bb0e9 | 2013-03-07 09:37:42 +0100 | [diff] [blame] | 389 | PKG_CHECK_MODULES([check], [check >= 0.9.4], |
Mike Frysinger | 82bfb64 | 2014-06-13 22:44:39 -0400 | [diff] [blame] | 390 | [have_check="yes"], [have_check="no"]) |
Uwe Hermann | 79bb0e9 | 2013-03-07 09:37:42 +0100 | [diff] [blame] | 391 | AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes") |
| 392 | |
Martin Ling | 37fa80b | 2013-12-07 19:42:35 +0000 | [diff] [blame] | 393 | # The OLS driver uses serial port file descriptors directly, and therefore |
| 394 | # will not currently work on Windows. |
| 395 | case "$host" in |
| 396 | *mingw*) |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 397 | HW_OPENBENCH_LOGIC_SNIFFER="no" |
Matthias Heidbrink | d0a92ab | 2014-05-19 19:44:04 +0200 | [diff] [blame] | 398 | ;; |
Martin Ling | 37fa80b | 2013-12-07 19:42:35 +0000 | [diff] [blame] | 399 | esac |
| 400 | |
Uwe Hermann | 375340a | 2014-08-04 22:00:17 +0200 | [diff] [blame] | 401 | # The BeagleLogic driver needs sys/mman.h and sys/ioctl.h. Don't try to |
| 402 | # build it if these headers aren't available. |
| 403 | AC_CHECK_HEADERS([sys/mman.h sys/ioctl.h], [], [HW_BEAGLELOGIC="no"]) |
| 404 | |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 405 | AC_SUBST(SR_PKGLIBS) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 406 | |
Marcus Comstedt | 55e55a3 | 2014-08-14 23:04:06 +0200 | [diff] [blame] | 407 | CFLAGS="$CFLAGS -Iinclude/libsigrok -I${srcdir}/include/libsigrok $LIB_CFLAGS" |
Marcus Comstedt | 33c84e8 | 2014-08-14 23:07:45 +0200 | [diff] [blame^] | 408 | CXXFLAGS="$CXXFLAGS -Iinclude/libsigrok -I${srcdir}/include -Ibindings/cxx -Ibindings/cxx/include/libsigrok -I${srcdir}/bindings/cxx/include $LIB_CFLAGS" |
Martin Ling | 4f10853 | 2014-04-18 19:11:47 +0100 | [diff] [blame] | 409 | |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 410 | # Find Java compiler and JNI includes for Java bindings. |
| 411 | |
| 412 | AC_CHECK_PROG([HAVE_JAVAC], [javac], [yes], [no]) |
| 413 | |
| 414 | if test "x$HAVE_JAVAC" = "xyes"; then |
| 415 | AX_PROG_JAVAC |
| 416 | AX_JNI_INCLUDE_DIR |
| 417 | for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS; do |
| 418 | CXXFLAGS="$CXXFLAGS -I$JNI_INCLUDE_DIR" |
| 419 | done |
| 420 | else |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 421 | BINDINGS_JAVA="no"; java_msg="Java compiler required" |
| 422 | fi |
| 423 | |
| 424 | # Python and Java bindings depend on C++ bindings. |
| 425 | if test "x$BINDINGS_CXX" != "xyes"; then |
| 426 | BINDINGS_PYTHON="no"; python_msg="C++ bindings required" |
| 427 | BINDINGS_JAVA="no"; java_msg="C++ bindings required" |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 428 | fi |
| 429 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 430 | # Now set AM_CONDITIONALs and AC_DEFINEs for the enabled/disabled drivers. |
| 431 | |
| 432 | AM_CONDITIONAL(HW_AGILENT_DMM, test x$HW_AGILENT_DMM = xyes) |
| 433 | if test "x$HW_AGILENT_DMM" = "xyes"; then |
| 434 | AC_DEFINE(HAVE_HW_AGILENT_DMM, 1, [Agilent DMM support]) |
| 435 | fi |
| 436 | |
Aurelien Jacobs | 5e7a8e5 | 2013-12-01 01:13:44 +0100 | [diff] [blame] | 437 | AM_CONDITIONAL(HW_APPA_55II, test x$HW_APPA_55II = xyes) |
| 438 | if test "x$HW_APPA_55II" = "xyes"; then |
| 439 | AC_DEFINE(HAVE_HW_APPA_55II, 1, [APPA 55II support]) |
| 440 | fi |
| 441 | |
Uwe Hermann | 9e165e7 | 2013-05-08 19:33:30 +0200 | [diff] [blame] | 442 | AM_CONDITIONAL(HW_ASIX_SIGMA, test x$HW_ASIX_SIGMA = xyes) |
| 443 | if test "x$HW_ASIX_SIGMA" = "xyes"; then |
| 444 | AC_DEFINE(HAVE_HW_ASIX_SIGMA, 1, [ASIX SIGMA/SIGMA2 support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 445 | fi |
| 446 | |
Marc Schink | 1c18390 | 2014-01-11 13:55:26 +0100 | [diff] [blame] | 447 | AM_CONDITIONAL(HW_ATTEN_PPS3XXX, test x$HW_ATTEN_PPS3XXX = xyes) |
| 448 | if test "x$HW_ATTEN_PPS3XXX" = "xyes"; then |
Matthias Heidbrink | d0a92ab | 2014-05-19 19:44:04 +0200 | [diff] [blame] | 449 | AC_DEFINE(HAVE_HW_ATTEN_PPS3XXX, 1, [Atten PPS3xxx support]) |
Marc Schink | 1c18390 | 2014-01-11 13:55:26 +0100 | [diff] [blame] | 450 | fi |
| 451 | |
Kumar Abhishek | bb99379 | 2014-07-22 01:41:52 +0530 | [diff] [blame] | 452 | AM_CONDITIONAL(HW_BEAGLELOGIC, test x$HW_BEAGLELOGIC = xyes) |
| 453 | if test "x$HW_BEAGLELOGIC" = "xyes"; then |
| 454 | AC_DEFINE(HAVE_HW_BEAGLELOGIC, 1, [BeagleLogic support]) |
| 455 | fi |
| 456 | |
Uwe Hermann | 1b950bc | 2014-02-28 13:08:53 +0100 | [diff] [blame] | 457 | AM_CONDITIONAL(HW_BRYMEN_BM86X, test x$HW_BRYMEN_BM86X = xyes) |
| 458 | if test "x$HW_BRYMEN_BM86X" = "xyes"; then |
| 459 | AC_DEFINE(HAVE_HW_BRYMEN_BM86X, 1, [Brymen BM86X support]) |
| 460 | fi |
| 461 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 462 | AM_CONDITIONAL(HW_BRYMEN_DMM, test x$HW_BRYMEN_DMM = xyes) |
| 463 | if test "x$HW_BRYMEN_DMM" = "xyes"; then |
Uwe Hermann | e4fad80 | 2013-04-09 10:03:58 +0200 | [diff] [blame] | 464 | AC_DEFINE(HAVE_HW_BRYMEN_DMM, 1, [Brymen DMM support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 465 | fi |
| 466 | |
Uwe Hermann | 32be5b2 | 2013-06-21 15:18:33 +0200 | [diff] [blame] | 467 | AM_CONDITIONAL(HW_CEM_DT_885X, test x$HW_CEM_DT_885X = xyes) |
| 468 | if test "x$HW_CEM_DT_885X" = "xyes"; then |
| 469 | AC_DEFINE(HAVE_HW_CEM_DT_885X, 1, [CEM DT-885x support]) |
| 470 | fi |
| 471 | |
Uwe Hermann | 4433145 | 2013-07-19 09:35:48 +0200 | [diff] [blame] | 472 | AM_CONDITIONAL(HW_CENTER_3XX, test x$HW_CENTER_3XX = xyes) |
| 473 | if test "x$HW_CENTER_3XX" = "xyes"; then |
| 474 | AC_DEFINE(HAVE_HW_CENTER_3XX, 1, [Center 3xx support]) |
| 475 | fi |
| 476 | |
Uwe Hermann | 7b35671 | 2014-04-01 21:47:11 +0200 | [diff] [blame] | 477 | AM_CONDITIONAL(HW_CHRONOVU_LA, test x$HW_CHRONOVU_LA = xyes) |
| 478 | if test "x$HW_CHRONOVU_LA" = "xyes"; then |
| 479 | AC_DEFINE(HAVE_HW_CHRONOVU_LA, 1, [ChronoVu LA support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 480 | fi |
| 481 | |
| 482 | AM_CONDITIONAL(HW_COLEAD_SLM, test x$HW_COLEAD_SLM = xyes) |
| 483 | if test "x$HW_COLEAD_SLM" = "xyes"; then |
| 484 | AC_DEFINE(HAVE_HW_COLEAD_SLM, 1, [Colead SLM support]) |
| 485 | fi |
| 486 | |
Matthias Heidbrink | 823b4e5 | 2014-02-05 19:50:46 +0100 | [diff] [blame] | 487 | AM_CONDITIONAL(HW_CONRAD_DIGI_35_CPU, test x$HW_CONRAD_DIGI_35_CPU = xyes) |
| 488 | if test "x$HW_CONRAD_DIGI_35_CPU" = "xyes"; then |
| 489 | AC_DEFINE(HAVE_HW_CONRAD_DIGI_35_CPU, 1, [Conrad DIGI 35 CPU support]) |
| 490 | fi |
| 491 | |
Uwe Hermann | 9e165e7 | 2013-05-08 19:33:30 +0200 | [diff] [blame] | 492 | AM_CONDITIONAL(HW_DEMO, test x$HW_DEMO = xyes) |
| 493 | if test "x$HW_DEMO" = "xyes"; then |
| 494 | AC_DEFINE(HAVE_HW_DEMO, 1, [Demo driver support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 495 | fi |
| 496 | |
| 497 | AM_CONDITIONAL(HW_FLUKE_DMM, test x$HW_FLUKE_DMM = xyes) |
| 498 | if test "x$HW_FLUKE_DMM" = "xyes"; then |
| 499 | AC_DEFINE(HAVE_HW_FLUKE_DMM, 1, [Fluke DMM support]) |
| 500 | fi |
| 501 | |
Uwe Hermann | 9e165e7 | 2013-05-08 19:33:30 +0200 | [diff] [blame] | 502 | AM_CONDITIONAL(HW_FX2LAFW, test x$HW_FX2LAFW = xyes) |
| 503 | if test "x$HW_FX2LAFW" = "xyes"; then |
| 504 | AC_DEFINE(HAVE_HW_FX2LAFW, 1, [fx2lafw support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 505 | fi |
| 506 | |
Matthias Heidbrink | 7b4edcb | 2013-11-19 17:49:23 +0100 | [diff] [blame] | 507 | AM_CONDITIONAL(HW_GMC_MH_1X_2X, test x$HW_GMC_MH_1X_2X = xyes) |
| 508 | if test "x$HW_GMC_MH_1X_2X" = "xyes"; then |
| 509 | AC_DEFINE(HAVE_HW_GMC_MH_1X_2X, 1, [gmc-mh-1x-2x support]) |
| 510 | fi |
| 511 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 512 | AM_CONDITIONAL(HW_HANTEK_DSO, test x$HW_HANTEK_DSO = xyes) |
| 513 | if test "x$HW_HANTEK_DSO" = "xyes"; then |
| 514 | AC_DEFINE(HAVE_HW_HANTEK_DSO, 1, [Hantek DSO support]) |
| 515 | fi |
| 516 | |
Uwe Hermann | 582b3d2 | 2013-12-03 15:37:36 +0100 | [diff] [blame] | 517 | AM_CONDITIONAL(HW_HAMEG_HMO, test x$HW_HAMEG_HMO = xyes) |
| 518 | if test "x$HW_HAMEG_HMO" = "xyes"; then |
| 519 | AC_DEFINE(HAVE_HW_HAMEG_HMO, 1, [Hameg HMO support]) |
| 520 | fi |
| 521 | |
Uwe Hermann | 1f36a6c | 2013-06-21 15:11:36 +0200 | [diff] [blame] | 522 | AM_CONDITIONAL(HW_IKALOGIC_SCANALOGIC2, test x$HW_IKALOGIC_SCANALOGIC2 = xyes) |
| 523 | if test "x$HW_IKALOGIC_SCANALOGIC2" = "xyes"; then |
Uwe Hermann | ce95428 | 2013-08-07 00:22:14 +0200 | [diff] [blame] | 524 | AC_DEFINE(HAVE_HW_IKALOGIC_SCANALOGIC2, 1, [IKALOGIC Scanalogic-2 support]) |
Uwe Hermann | 1f36a6c | 2013-06-21 15:11:36 +0200 | [diff] [blame] | 525 | fi |
| 526 | |
Uwe Hermann | fdf4a1f | 2013-06-21 17:15:10 +0200 | [diff] [blame] | 527 | AM_CONDITIONAL(HW_IKALOGIC_SCANAPLUS, test x$HW_IKALOGIC_SCANAPLUS = xyes) |
| 528 | if test "x$HW_IKALOGIC_SCANAPLUS" = "xyes"; then |
Uwe Hermann | ce95428 | 2013-08-07 00:22:14 +0200 | [diff] [blame] | 529 | AC_DEFINE(HAVE_HW_IKALOGIC_SCANAPLUS, 1, [IKALOGIC ScanaPLUS support]) |
Uwe Hermann | fdf4a1f | 2013-06-21 17:15:10 +0200 | [diff] [blame] | 530 | fi |
| 531 | |
Bert Vermeulen | ed759a0 | 2013-06-20 21:31:31 +0200 | [diff] [blame] | 532 | AM_CONDITIONAL(HW_KECHENG_KC_330B, test x$HW_KECHENG_KC_330B = xyes) |
| 533 | if test "x$HW_KECHENG_KC_330B" = "xyes"; then |
| 534 | AC_DEFINE(HAVE_HW_KECHENG_KC_330B, 1, [Kecheng KC-330B support]) |
| 535 | fi |
| 536 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 537 | AM_CONDITIONAL(HW_LASCAR_EL_USB, test x$HW_LASCAR_EL_USB = xyes) |
| 538 | if test "x$HW_LASCAR_EL_USB" = "xyes"; then |
| 539 | AC_DEFINE(HAVE_HW_LASCAR_EL_USB, 1, [Lascar EL-USB support]) |
| 540 | fi |
| 541 | |
Uwe Hermann | 8f4e922 | 2014-06-23 00:31:22 +0200 | [diff] [blame] | 542 | AM_CONDITIONAL(HW_MANSON_HCS_3XXX, test x$HW_MANSON_HCS_3XXX = xyes) |
| 543 | if test "x$HW_MANSON_HCS_3XXX" = "xyes"; then |
| 544 | AC_DEFINE(HAVE_HW_MANSON_HCS_3XXX, 1, [Manson HCS-3xxx support]) |
| 545 | fi |
| 546 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 547 | AM_CONDITIONAL(HW_MIC_985XX, test x$HW_MIC_985XX = xyes) |
| 548 | if test "x$HW_MIC_985XX" = "xyes"; then |
| 549 | AC_DEFINE(HAVE_HW_MIC_985XX, 1, [MIC 985xx support]) |
| 550 | fi |
| 551 | |
Matthias Heidbrink | 41b7bd0 | 2014-05-19 19:23:30 +0200 | [diff] [blame] | 552 | AM_CONDITIONAL(HW_MOTECH_LPS_30X, test x$HW_MOTECH_LPS_30X = xyes) |
| 553 | if test "x$HW_MOTECH_LPS_30X" = "xyes"; then |
| 554 | AC_DEFINE(HAVE_HW_MOTECH_LPS_30X, 1, [motech-lps-30x support]) |
| 555 | fi |
| 556 | |
Matthias Heidbrink | bfd4877 | 2013-10-17 10:57:17 +0200 | [diff] [blame] | 557 | AM_CONDITIONAL(HW_NORMA_DMM, test x$HW_NORMA_DMM = xyes) |
| 558 | if test "x$HW_NORMA_DMM" = "xyes"; then |
Matthias Heidbrink | d0a92ab | 2014-05-19 19:44:04 +0200 | [diff] [blame] | 559 | AC_DEFINE(HAVE_HW_NORMA_DMM, 1, [Norma DMM support]) |
Matthias Heidbrink | bfd4877 | 2013-10-17 10:57:17 +0200 | [diff] [blame] | 560 | fi |
| 561 | |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 562 | AM_CONDITIONAL(HW_OPENBENCH_LOGIC_SNIFFER, test x$HW_OPENBENCH_LOGIC_SNIFFER = xyes) |
| 563 | if test "x$HW_OPENBENCH_LOGIC_SNIFFER" = "xyes"; then |
| 564 | AC_DEFINE(HAVE_HW_OPENBENCH_LOGIC_SNIFFER, 1, [OpenBench Logic Sniffer (OLS) support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 565 | fi |
| 566 | |
Martin Ling | 3086efd | 2013-10-31 17:31:39 +0000 | [diff] [blame] | 567 | AM_CONDITIONAL(HW_RIGOL_DS, test x$HW_RIGOL_DS = xyes) |
| 568 | if test "x$HW_RIGOL_DS" = "xyes"; then |
| 569 | AC_DEFINE(HAVE_HW_RIGOL_DS, 1, [Rigol DS support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 570 | fi |
| 571 | |
Uwe Hermann | 5724a20 | 2013-11-03 23:28:55 +0100 | [diff] [blame] | 572 | AM_CONDITIONAL(HW_SALEAE_LOGIC16, test x$HW_SALEAE_LOGIC16 = xyes) |
| 573 | if test "x$HW_SALEAE_LOGIC16" = "xyes"; then |
| 574 | AC_DEFINE(HAVE_HW_SALEAE_LOGIC16, 1, [Saleae Logic16 support]) |
| 575 | fi |
| 576 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 577 | AM_CONDITIONAL(HW_SERIAL_DMM, test x$HW_SERIAL_DMM = xyes) |
| 578 | if test "x$HW_SERIAL_DMM" = "xyes"; then |
| 579 | AC_DEFINE(HAVE_HW_SERIAL_DMM, 1, [Serial DMM support]) |
| 580 | fi |
| 581 | |
Uwe Hermann | 87283d9 | 2014-01-14 19:36:28 +0100 | [diff] [blame] | 582 | AM_CONDITIONAL(HW_SYSCLK_LWLA, test x$HW_SYSCLK_LWLA = xyes) |
| 583 | if test "x$HW_SYSCLK_LWLA" = "xyes"; then |
| 584 | AC_DEFINE(HAVE_HW_SYSCLK_LWLA, 1, [Sysclk LWLA support]) |
| 585 | fi |
| 586 | |
Uwe Hermann | 122d33d | 2013-11-03 23:28:03 +0100 | [diff] [blame] | 587 | AM_CONDITIONAL(HW_TELEINFO, test x$HW_TELEINFO = xyes) |
| 588 | if test "x$HW_TELEINFO" = "xyes"; then |
| 589 | AC_DEFINE(HAVE_HW_TELEINFO, 1, [Teleinfo support]) |
| 590 | fi |
| 591 | |
Bert Vermeulen | 0acdd79 | 2014-07-01 01:34:29 +0200 | [diff] [blame] | 592 | AM_CONDITIONAL(HW_TESTO, test x$HW_TESTO = xyes) |
| 593 | if test "x$HW_TESTO" = "xyes"; then |
| 594 | AC_DEFINE(HAVE_HW_TESTO, 1, [Testo support]) |
| 595 | fi |
| 596 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 597 | AM_CONDITIONAL(HW_TONDAJ_SL_814, test x$HW_TONDAJ_SL_814 = xyes) |
| 598 | if test "x$HW_TONDAJ_SL_814" = "xyes"; then |
| 599 | AC_DEFINE(HAVE_HW_TONDAJ_SL_814, 1, [Tondaj SL-814 support]) |
| 600 | fi |
| 601 | |
| 602 | AM_CONDITIONAL(HW_UNI_T_DMM, test x$HW_UNI_T_DMM = xyes) |
| 603 | if test "x$HW_UNI_T_DMM" = "xyes"; then |
| 604 | AC_DEFINE(HAVE_HW_UNI_T_DMM, 1, [UNI-T DMM support]) |
| 605 | fi |
| 606 | |
Bert Vermeulen | 3877dde | 2013-08-09 00:29:04 +0200 | [diff] [blame] | 607 | AM_CONDITIONAL(HW_UNI_T_UT32X, test x$HW_UNI_T_UT32X = xyes) |
| 608 | if test "x$HW_UNI_T_UT32X" = "xyes"; then |
| 609 | AC_DEFINE(HAVE_HW_UNI_T_UT32X, 1, [UNI-T UT32x support]) |
| 610 | fi |
| 611 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 612 | AM_CONDITIONAL(HW_VICTOR_DMM, test x$HW_VICTOR_DMM = xyes) |
| 613 | if test "x$HW_VICTOR_DMM" = "xyes"; then |
Uwe Hermann | e4fad80 | 2013-04-09 10:03:58 +0200 | [diff] [blame] | 614 | AC_DEFINE(HAVE_HW_VICTOR_DMM, 1, [Victor DMM support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 615 | fi |
| 616 | |
Uwe Hermann | 9e165e7 | 2013-05-08 19:33:30 +0200 | [diff] [blame] | 617 | AM_CONDITIONAL(HW_ZEROPLUS_LOGIC_CUBE, test x$HW_ZEROPLUS_LOGIC_CUBE = xyes) |
| 618 | if test "x$HW_ZEROPLUS_LOGIC_CUBE" = "xyes"; then |
| 619 | AC_DEFINE(HAVE_HW_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 620 | fi |
| 621 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 622 | AM_CONDITIONAL(BINDINGS_CXX, test x$BINDINGS_CXX = xyes) |
| 623 | |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 624 | AM_CONDITIONAL(BINDINGS_PYTHON, test x$BINDINGS_PYTHON = xyes) |
| 625 | |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 626 | AM_CONDITIONAL(BINDINGS_JAVA, test x$BINDINGS_JAVA = xyes) |
| 627 | |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 628 | # Checks for header files. |
Uwe Hermann | 375340a | 2014-08-04 22:00:17 +0200 | [diff] [blame] | 629 | # These are already implicitly checked: inttypes.h stdint.h stdlib.h string.h |
| 630 | # unistd.h memory.h strings.h dlfcn.h sys/types.h sys/stat.h. |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 631 | |
| 632 | # Checks for typedefs, structures, and compiler characteristics. |
Marcus Comstedt | 7b5daad | 2013-08-04 13:46:35 +0200 | [diff] [blame] | 633 | AC_C_BIGENDIAN |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 634 | |
Uwe Hermann | fb6f197 | 2012-05-30 00:00:33 +0200 | [diff] [blame] | 635 | AC_SUBST(FIRMWARE_DIR, "$datadir/sigrok-firmware") |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 636 | AC_SUBST(MAKEFLAGS, '--no-print-directory') |
| 637 | AC_SUBST(AM_LIBTOOLFLAGS, '--silent') |
| 638 | |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 639 | SR_PACKAGE_VERSION_MAJOR=sr_package_version_major |
| 640 | SR_PACKAGE_VERSION_MINOR=sr_package_version_minor |
| 641 | SR_PACKAGE_VERSION_MICRO=sr_package_version_micro |
| 642 | SR_PACKAGE_VERSION=sr_package_version |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 643 | |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 644 | AC_SUBST(SR_PACKAGE_VERSION_MAJOR) |
| 645 | AC_SUBST(SR_PACKAGE_VERSION_MINOR) |
| 646 | AC_SUBST(SR_PACKAGE_VERSION_MICRO) |
| 647 | AC_SUBST(SR_PACKAGE_VERSION) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 648 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 649 | AC_CONFIG_FILES([Makefile include/libsigrok/version.h libsigrok.pc |
| 650 | bindings/cxx/libsigrokxx.pc]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 651 | |
| 652 | AC_OUTPUT |
| 653 | |
| 654 | echo |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 655 | echo "libsigrok configuration summary:" |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 656 | echo |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 657 | echo " - Package version (major.minor.micro): $SR_PACKAGE_VERSION" |
| 658 | echo " - Library version (current:revision:age): $SR_LIB_VERSION" |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 659 | echo " - Prefix: $prefix" |
Uwe Hermann | 6bad848 | 2013-04-09 18:47:31 +0200 | [diff] [blame] | 660 | echo " - Building on: $build" |
| 661 | echo " - Building for: $host" |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 662 | echo |
| 663 | echo "Detected libraries:" |
| 664 | echo |
| 665 | |
| 666 | # Note: This only works for libs with pkg-config integration. |
Uwe Hermann | 271cdfd | 2014-07-22 23:15:11 +0200 | [diff] [blame] | 667 | for lib in "glib-2.0 >= 2.32.0" "libzip >= 0.10" "libserialport >= 0.1.0" "librevisa >= 0.0.20130812" "libusb-1.0 >= 1.0.16" "libftdi >= 0.16" "libftdi1 >= 1.0" "glibmm-2.4 >= 2.32.0" "pygobject-3.0 >= 3.0.0" "check >= 0.9.4"; do |
Uwe Hermann | 958326f | 2014-04-05 13:35:49 +0200 | [diff] [blame] | 668 | optional="OPTIONAL" |
| 669 | if test "x$lib" = "xglib-2.0 >= 2.32.0"; then optional="REQUIRED"; fi |
| 670 | if test "x$lib" = "xlibzip >= 0.10"; then optional="REQUIRED"; fi |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 671 | if `$PKG_CONFIG --exists $lib`; then |
| 672 | ver=`$PKG_CONFIG --modversion $lib` |
| 673 | answer="yes ($ver)" |
| 674 | else |
| 675 | answer="no" |
| 676 | fi |
Uwe Hermann | 958326f | 2014-04-05 13:35:49 +0200 | [diff] [blame] | 677 | echo " - ($optional) $lib: $answer" |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 678 | done |
| 679 | |
Bert Vermeulen | 43cd463 | 2014-07-22 18:17:34 +0200 | [diff] [blame] | 680 | eval echo -e "@Enabled hardware drivers:@@${driver_summary}" | tr @ \\n |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 681 | |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 682 | # Prepare final bindings report messages |
| 683 | final_cxx="" |
| 684 | final_python="" |
| 685 | final_java="" |
| 686 | if test "$enable_bindings" = "no"; then |
| 687 | final_cxx=" (disabled)" |
| 688 | final_python=" (disabled)" |
| 689 | final_java=" (disabled)" |
| 690 | else |
| 691 | if test "$enable_cxx" = "no"; then |
| 692 | final_cxx=" (disabled)" |
| 693 | elif test "$BINDINGS_CXX" = "no"; then |
| 694 | final_cxx=" ($cxx_msg)" |
| 695 | fi |
| 696 | if test "$enable_python" = "no"; then |
| 697 | final_python=" (disabled)" |
| 698 | elif test "$BINDINGS_PYTHON" = "no"; then |
| 699 | final_python=" ($python_msg)" |
| 700 | fi |
| 701 | if test "$enable_java" = "no"; then |
| 702 | final_java=" (disabled)" |
| 703 | elif test "$BINDINGS_JAVA" = "no"; then |
| 704 | final_java=" ($java_msg)" |
| 705 | fi |
| 706 | fi |
| 707 | |
Bert Vermeulen | 43cd463 | 2014-07-22 18:17:34 +0200 | [diff] [blame] | 708 | echo -e "Enabled language bindings:\n" |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 709 | echo " - C++............................. $BINDINGS_CXX$final_cxx" |
| 710 | echo " - Python.......................... $BINDINGS_PYTHON$final_python" |
| 711 | echo " - Java............................ $BINDINGS_JAVA$final_java" |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 712 | echo |