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]) |
Janne Huttunen | b508919 | 2014-10-11 15:47:35 +0300 | [diff] [blame] | 117 | DRIVER([DER EE DE-5000], [deree-de5000]) |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 118 | DRIVER([demo], [demo]) |
| 119 | DRIVER([Fluke DMM], [fluke-dmm]) |
| 120 | DRIVER([fx2lafw], [fx2lafw]) |
| 121 | DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x]) |
| 122 | DRIVER([Hameg HMO], [hameg-hmo]) |
| 123 | DRIVER([Hantek DSO], [hantek-dso]) |
| 124 | DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2]) |
| 125 | DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus]) |
| 126 | DRIVER([Kecheng KC-330B], [kecheng-kc-330b]) |
| 127 | DRIVER([Lascar EL-USB], [lascar-el-usb]) |
| 128 | DRIVER([Manson HCS-3xxx], [manson-hcs-3xxx]) |
| 129 | DRIVER([MIC 985xx], [mic-985xx]) |
| 130 | DRIVER([Motech LPS 30x], [motech-lps-30x]) |
| 131 | DRIVER([Norma DMM], [norma-dmm]) |
| 132 | DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer]) |
magnuskarlsson | 4bd80e1 | 2014-05-10 15:44:13 -0700 | [diff] [blame] | 133 | DRIVER([Pipistrello-OLS], [pipistrello-ols]) |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 134 | DRIVER([Rigol DS], [rigol-ds]) |
| 135 | DRIVER([Saleae Logic16], [saleae-logic16]) |
Bert Vermeulen | ca1a7cb | 2014-08-31 17:20:39 +0200 | [diff] [blame] | 136 | DRIVER([SCPI PPS], [scpi-pps]) |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 137 | DRIVER([serial DMM], [serial-dmm]) |
| 138 | DRIVER([Sysclk LWLA], [sysclk-lwla]) |
| 139 | DRIVER([Teleinfo], [teleinfo]) |
| 140 | DRIVER([Testo], [testo]) |
| 141 | DRIVER([Tondaj SL-814], [tondaj-sl-814]) |
| 142 | DRIVER([UNI-T DMM], [uni-t-dmm]) |
| 143 | DRIVER([UNI-T UT32x], [uni-t-ut32x]) |
| 144 | DRIVER([Victor DMM], [victor-dmm]) |
Soeren Apel | 1076393 | 2014-08-25 13:09:42 +0200 | [diff] [blame] | 145 | DRIVER([Yokogawa DL/DLM], [yokogawa-dlm]) |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 146 | DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 147 | |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 148 | AC_ARG_ENABLE(libserialport, |
| 149 | AC_HELP_STRING([--disable-libserialport], |
| 150 | [disable libserialport support [default=detect]])) |
| 151 | |
| 152 | AC_ARG_ENABLE(libftdi, |
| 153 | AC_HELP_STRING([--disable-libftdi], |
| 154 | [disable libftdi support [default=detect]])) |
| 155 | |
| 156 | AC_ARG_ENABLE(libusb, |
| 157 | AC_HELP_STRING([--disable-libusb], |
| 158 | [disable libusb support [default=detect]])) |
| 159 | |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 160 | # Language binding '--enable' options: |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 161 | |
Bert Vermeulen | 6223fee | 2014-07-19 20:20:47 +0200 | [diff] [blame] | 162 | AC_ARG_ENABLE(bindings, |
| 163 | AC_HELP_STRING([--enable-bindings], |
| 164 | [build language bindings [default=yes]]), |
| 165 | [BINDINGS_ALL="$enableval"], [BINDINGS_ALL="yes"]) |
| 166 | |
| 167 | AC_ARG_ENABLE(cxx, |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 168 | AC_HELP_STRING([--enable-cxx], |
| 169 | [build C++ bindings [default=yes]]), |
Bert Vermeulen | 6223fee | 2014-07-19 20:20:47 +0200 | [diff] [blame] | 170 | [BINDINGS_CXX="$enableval"], [BINDINGS_CXX=$BINDINGS_ALL]) |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 171 | |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 172 | AC_ARG_ENABLE(python, |
| 173 | AC_HELP_STRING([--enable-python], |
| 174 | [build Python bindings [default=yes]]), |
Bert Vermeulen | 6223fee | 2014-07-19 20:20:47 +0200 | [diff] [blame] | 175 | [BINDINGS_PYTHON="$enableval"], [BINDINGS_PYTHON=$BINDINGS_ALL]) |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 176 | |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 177 | AC_ARG_ENABLE(java, |
| 178 | AC_HELP_STRING([--enable-java], |
| 179 | [build Java bindings [default=yes]]), |
Bert Vermeulen | 6223fee | 2014-07-19 20:20:47 +0200 | [diff] [blame] | 180 | [BINDINGS_JAVA="$enableval"], [BINDINGS_JAVA=$BINDINGS_ALL]) |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 181 | |
Marcus Comstedt | 3e27b17 | 2014-08-20 14:15:24 +0200 | [diff] [blame] | 182 | AC_ARG_WITH(jni-include-path, |
| 183 | AC_HELP_STRING([--with-jni-include-path=path], |
| 184 | [specify include path for JNI [default=autodetect]]), |
| 185 | [JNI_INCLUDE_DIRS="$withval"], [JNI_INCLUDE_DIRS=auto]) |
| 186 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 187 | # Check if the C++ compiler supports the C++11 standard. |
| 188 | |
Bert Vermeulen | f8158d5 | 2014-07-18 19:55:38 +0200 | [diff] [blame] | 189 | m4_ifdef([AX_CXX_COMPILE_STDCXX_11], [AX_CXX_COMPILE_STDCXX_11(,[optional])], |
| 190 | [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] | 191 | |
| 192 | if test "x$HAVE_CXX11" != "x1"; then |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 193 | BINDINGS_CXX="no"; cxx_msg="C++11 compiler required" |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 194 | fi |
| 195 | |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 196 | # The C++ bindings use Doxygen to parse libsigrok symbols. |
Martin Ling | 3532ed0 | 2014-08-01 17:18:09 +0100 | [diff] [blame] | 197 | AC_CHECK_PROG([HAVE_DOXYGEN], [doxygen], [yes]) |
| 198 | if test "x$HAVE_DOXYGEN" != "xyes"; then |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 199 | BINDINGS_CXX="no"; cxx_msg="Doxygen required" |
Bert Vermeulen | bcacb86 | 2014-07-18 21:12:31 +0200 | [diff] [blame] | 200 | fi |
| 201 | |
Bert Vermeulen | de44e11 | 2014-07-23 16:33:42 +0200 | [diff] [blame] | 202 | # Python is needed for the C++ bindings. |
Martin Ling | da89e23 | 2014-09-14 02:31:10 +0100 | [diff] [blame] | 203 | AM_PATH_PYTHON([2.7], [HAVE_PYTHON="yes"], |
| 204 | [HAVE_PYTHON="no"; BINDINGS_CXX="no"; cxx_msg="Python required"]) |
Bert Vermeulen | de44e11 | 2014-07-23 16:33:42 +0200 | [diff] [blame] | 205 | |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 206 | # The Python bindings need Python development files. |
Bert Vermeulen | 57d62c4 | 2014-07-23 12:45:41 +0200 | [diff] [blame] | 207 | PKG_CHECK_MODULES([python], [python >= 2.7], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 208 | [CXXFLAGS="$CXXFLAGS $python_CFLAGS"; |
| 209 | CXXLIBS="$CXXLIBS $python_LIBS"], |
Marcus Comstedt | 2ba308e | 2014-08-15 15:55:22 +0200 | [diff] [blame] | 210 | [PKG_CHECK_MODULES([python27], [python-2.7 >= 2.7], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 211 | [CXXFLAGS="$CXXFLAGS $python27_CFLAGS"; |
| 212 | CXXLIBS="$CXXLIBS $python27_LIBS"], |
Marcus Comstedt | 2ba308e | 2014-08-15 15:55:22 +0200 | [diff] [blame] | 213 | [BINDINGS_PYTHON="no"; python_msg="Python headers required"])]) |
Bert Vermeulen | bcacb86 | 2014-07-18 21:12:31 +0200 | [diff] [blame] | 214 | |
Bert Vermeulen | de44e11 | 2014-07-23 16:33:42 +0200 | [diff] [blame] | 215 | # The Python bindings need the setuptools Python module. |
Bert Vermeulen | 0afa91b | 2014-07-23 12:57:37 +0200 | [diff] [blame] | 216 | m4_ifdef([AX_PYTHON_MODULE], [AX_PYTHON_MODULE([setuptools])], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 217 | # We'll let it go through even if the macro wasn't found, the Python |
Bert Vermeulen | 0afa91b | 2014-07-23 12:57:37 +0200 | [diff] [blame] | 218 | # module may still be there. |
| 219 | [HAVE_PYTHON_SETUPTOOLS="yes"; |
| 220 | AC_MSG_NOTICE([Missing macro m4_toupper(aX_PYTHON_MODULE), no setuptools check])] |
| 221 | ) |
| 222 | if test "x$HAVE_PYMOD_SETUPTOOLS" != "xyes"; then |
Bert Vermeulen | de44e11 | 2014-07-23 16:33:42 +0200 | [diff] [blame] | 223 | BINDINGS_PYTHON="no"; python_msg="Python setuptools module required" |
Bert Vermeulen | 0afa91b | 2014-07-23 12:57:37 +0200 | [diff] [blame] | 224 | fi |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 225 | |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 226 | # The Python and Java bindings use SWIG to generate code. |
Bert Vermeulen | 0afa91b | 2014-07-23 12:57:37 +0200 | [diff] [blame] | 227 | AC_CHECK_PROG([HAVE_SWIG], [swig], [yes]) |
| 228 | if test "x$HAVE_SWIG" != "xyes"; then |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 229 | BINDINGS_PYTHON="no"; python_msg="SWIG required" |
| 230 | BINDINGS_JAVA="no"; java_msg="SWIG required" |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 231 | fi |
| 232 | |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 233 | # Checks for libraries. |
| 234 | |
Martin Ling | 1c6736a | 2013-12-06 02:26:58 +0000 | [diff] [blame] | 235 | case "$host" in |
| 236 | *mingw*) |
| 237 | # We need to link against the Winsock2 library for SCPI over TCP. |
| 238 | LIBS="$LIBS -lws2_32";; |
| 239 | esac |
| 240 | |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 241 | # This variable collects the pkg-config names of all detected libs. |
| 242 | # It is then used to construct the "Requires.private:" field in the |
| 243 | # libsigrok.pc file. |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 244 | SR_PKGLIBS="" |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 245 | |
Uwe Hermann | ee8ddd8 | 2013-05-10 20:59:42 +0200 | [diff] [blame] | 246 | # libm (the standard math library) is always needed. |
| 247 | AC_SEARCH_LIBS([pow], [m]) |
| 248 | |
Uwe Hermann | 7d4874c | 2014-01-30 17:02:34 +0100 | [diff] [blame] | 249 | # RPC is only needed for VXI support. |
Aurelien Jacobs | d5876cf | 2014-01-09 23:44:35 +0100 | [diff] [blame] | 250 | AC_MSG_CHECKING([for RPC support]) |
| 251 | AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <rpc/rpc.h>], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 252 | [CLIENT *rpc_test(void)], |
| 253 | [{ return clnt_create("", 0, 0, ""); }])], |
| 254 | [AC_MSG_RESULT([yes]); have_rpc=1], |
| 255 | [AC_MSG_RESULT([no]); have_rpc=0]) |
Aurelien Jacobs | d5876cf | 2014-01-09 23:44:35 +0100 | [diff] [blame] | 256 | # Define HAVE_RPC in config.h if we found RPC support. |
Uwe Hermann | 7d4874c | 2014-01-30 17:02:34 +0100 | [diff] [blame] | 257 | 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] | 258 | # VXI support is only compiled if RPC support was found. |
Uwe Hermann | 7d4874c | 2014-01-30 17:02:34 +0100 | [diff] [blame] | 259 | AM_CONDITIONAL(NEED_RPC, test "x$have_rpc" != "x0") |
Aurelien Jacobs | d5876cf | 2014-01-09 23:44:35 +0100 | [diff] [blame] | 260 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 261 | # libglib-2.0 is always needed. Abort if it's not found. |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 262 | # Note: glib-2.0 is part of the libsigrok API (hard pkg-config requirement). |
Bert Vermeulen | 818df9f | 2014-10-08 23:14:01 +0200 | [diff] [blame] | 263 | # We require at least 2.34.0 due to e.g. g_slist_deep_copy(). |
| 264 | AM_PATH_GLIB_2_0([2.34.0], |
Martin Ling | 4f10853 | 2014-04-18 19:11:47 +0100 | [diff] [blame] | 265 | [LIB_CFLAGS="$LIB_CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 266 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 267 | # libzip is always needed. Abort if it's not found. |
Uwe Hermann | 8819bf5 | 2013-10-16 18:10:29 +0200 | [diff] [blame] | 268 | PKG_CHECK_MODULES([libzip], [libzip >= 0.10], |
Martin Ling | 4f10853 | 2014-04-18 19:11:47 +0100 | [diff] [blame] | 269 | [LIB_CFLAGS="$LIB_CFLAGS $libzip_CFLAGS"; LIBS="$LIBS $libzip_LIBS"; |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 270 | SR_PKGLIBS="$SR_PKGLIBS libzip"]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 271 | |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 272 | # libserialport is only needed for some hardware drivers. Disable the |
| 273 | # respective drivers if it is not found. |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 274 | if test "x$enable_libserialport" != "xno"; then |
Bert Vermeulen | 81a6910 | 2014-08-20 23:39:27 +0200 | [diff] [blame] | 275 | PKG_CHECK_MODULES([libserialport], [libserialport >= 0.2.0], |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 276 | [have_libserialport="yes"; LIB_CFLAGS="$LIB_CFLAGS $libserialport_CFLAGS"; |
| 277 | LIBS="$LIBS $libserialport_LIBS"; |
| 278 | SR_PKGLIBS="$SR_PKGLIBS libserialport"], |
| 279 | [have_libserialport="no"]) |
| 280 | if test "x$enable_libserialport$have_libserialport" = "xyesno"; then |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 281 | AC_MSG_ERROR([libserialport support requested, but it was not found.]) |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 282 | fi |
| 283 | else |
| 284 | have_libserialport="no" |
| 285 | fi |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 286 | if test "x$have_libserialport" = "xno"; then |
| 287 | HW_AGILENT_DMM="no"; HW_APPA_55II="no"; |
Marc Schink | 1c18390 | 2014-01-11 13:55:26 +0100 | [diff] [blame] | 288 | 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] | 289 | HW_CENTER_3XX="no"; HW_COLEAD_SLM="no"; HW_CONRAD_DIGI_35_CPU="no"; |
Janne Huttunen | b508919 | 2014-10-11 15:47:35 +0300 | [diff] [blame] | 290 | HW_DEREE_DE5000="no"; HW_FLUKE_DMM="no"; HW_GMC_MH_1X_2X="no"; |
| 291 | HW_HAMEG_HMO="no"; HW_MANSON_HCS_3XXX="no"; HW_MIC_985XX="no"; |
| 292 | HW_MOTECH_LPS_30X="no"; HW_NORMA_DMM="no"; |
| 293 | HW_OPENBENCH_LOGIC_SNIFFER="no"; HW_SERIAL_DMM="no"; |
Bert Vermeulen | d4b3874 | 2014-07-10 17:26:22 +0200 | [diff] [blame] | 294 | HW_TELEINFO="no"; HW_TONDAJ_SL_814="no"; |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 295 | else |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 296 | # Define HAVE_LIBSERIALPORT in config.h if we found libserialport. |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 297 | AC_DEFINE_UNQUOTED(HAVE_LIBSERIALPORT, [1], |
| 298 | [Specifies whether we have libserialport.]) |
| 299 | fi |
| 300 | |
| 301 | # Serial port helper code is only compiled in if libserialport was found. |
| 302 | AM_CONDITIONAL(NEED_SERIAL, test "x$have_libserialport" != xno) |
Martin Ling | a9bce5a | 2013-10-27 15:51:24 +0000 | [diff] [blame] | 303 | |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 304 | # The VISA SCPI backend is only compiled in if librevisa was found. |
Martin Ling | 1fb2312 | 2014-02-01 10:01:05 +0000 | [diff] [blame] | 305 | PKG_CHECK_MODULES([librevisa], [librevisa >= 0.0.20130812], |
Martin Ling | 4f10853 | 2014-04-18 19:11:47 +0100 | [diff] [blame] | 306 | [have_librevisa="yes"; LIB_CFLAGS="$LIB_CFLAGS $librevisa_CFLAGS"; |
Martin Ling | 1fb2312 | 2014-02-01 10:01:05 +0000 | [diff] [blame] | 307 | LIBS="$LIBS $librevisa_LIBS"; |
Martin Ling | b84b7ee | 2014-02-02 16:21:33 -0800 | [diff] [blame] | 308 | SR_PKGLIBS="$SR_PKGLIBS librevisa"], |
| 309 | [have_librevisa="no"]) |
Martin Ling | 1fb2312 | 2014-02-01 10:01:05 +0000 | [diff] [blame] | 310 | AM_CONDITIONAL(NEED_VISA, test "x$have_librevisa" != xno) |
Martin Ling | 1fb2312 | 2014-02-01 10:01:05 +0000 | [diff] [blame] | 311 | if test "x$have_librevisa" != "xno"; then |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 312 | # Define HAVE_LIBREVISA in config.h if we found librevisa. |
Martin Ling | 1fb2312 | 2014-02-01 10:01:05 +0000 | [diff] [blame] | 313 | AC_DEFINE_UNQUOTED(HAVE_LIBREVISA, [1], |
| 314 | [Specifies whether we have librevisa.]) |
| 315 | fi |
| 316 | |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 317 | # The GPIB SCPI backend is only compiled in if libgpib is found. |
Bert Vermeulen | d6e63a2 | 2014-09-05 18:26:12 +0200 | [diff] [blame] | 318 | PKG_CHECK_MODULES([libgpib], [libgpib], |
| 319 | [have_libgpib="yes"; LIB_CFLAGS="$LIB_CFLAGS $libgpib_CFLAGS"; |
| 320 | LIBS="$LIBS $libgpib_LIBS"; |
| 321 | SR_PKGLIBS="$SR_PKGLIBS libgpib"], |
| 322 | [have_libgpib="no"]) |
Martin Ling | bb2a4ed | 2014-09-05 10:34:04 +0100 | [diff] [blame] | 323 | AM_CONDITIONAL(NEED_GPIB, test "x$have_libgpib" != xno) |
| 324 | if test "x$have_libgpib" != "xno"; then |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 325 | # Define HAVE_LIBGPIB in config.h if we found libgpib. |
Martin Ling | bb2a4ed | 2014-09-05 10:34:04 +0100 | [diff] [blame] | 326 | AC_DEFINE_UNQUOTED(HAVE_LIBGPIB, [1], |
| 327 | [Specifies whether we have libgpib.]) |
| 328 | fi |
| 329 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 330 | # libusb-1.0 is only needed for some hardware drivers. Disable the respective |
| 331 | # drivers if it is not found. |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 332 | if test "x$enable_libusb" != "xno"; then |
| 333 | case "$host" in |
| 334 | *freebsd*) |
| 335 | # FreeBSD comes with an "integrated" libusb-1.0-style USB API. |
| 336 | # This means libusb-1.0 is always available, no need to check for it, |
| 337 | # and no need to (potentially) disable any drivers if it's not found. |
| 338 | have_libusb1_0="yes" |
| 339 | ;; |
| 340 | *) |
| 341 | PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.16], |
| 342 | [have_libusb1_0="yes"; LIB_CFLAGS="$LIB_CFLAGS $libusb_CFLAGS"; |
| 343 | LIBS="$LIBS $libusb_LIBS"; |
| 344 | SR_PKGLIBS="$SR_PKGLIBS libusb-1.0"], |
| 345 | [have_libusb1_0="no"]) |
| 346 | if test "x$enable_libusb$have_libusb1_0" = "xyesno"; then |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 347 | AC_MSG_ERROR([libusb support requested, but it was not found.]) |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 348 | fi |
| 349 | ;; |
| 350 | esac |
| 351 | else |
| 352 | have_libusb1_0="no" |
| 353 | fi |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 354 | if test "x$have_libusb1_0" = "xno"; then |
| 355 | HW_BRYMEN_BM86X="no"; HW_FX2LAFW="no"; |
| 356 | HW_HANTEK_DSO="no"; HW_IKALOGIC_SCANALOGIC2="no"; |
| 357 | HW_KECHENG_KC_330B="no"; HW_LASCAR_EL_USB="no"; |
Bert Vermeulen | 0acdd79 | 2014-07-01 01:34:29 +0200 | [diff] [blame] | 358 | HW_SYSCLK_LWLA="no"; HW_TESTO="no"; HW_UNI_T_DMM="no"; |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 359 | HW_UNI_T_UT32X="no"; HW_VICTOR_DMM="no"; |
| 360 | HW_ZEROPLUS_LOGIC_CUBE="no"; HW_SALEAE_LOGIC16="no"; |
| 361 | else |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 362 | # Define HAVE_LIBUSB_1_0 in config.h if we found libusb-1.0. |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 363 | AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 364 | [Specifies whether we have libusb-1.0.]) |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 365 | fi |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 366 | |
Uwe Hermann | 3fd1d0e | 2013-04-08 15:40:57 +0200 | [diff] [blame] | 367 | # USB + FX2 firmware helper code is only compiled in if libusb-1.0 was found. |
| 368 | AM_CONDITIONAL(NEED_USB, test "x$have_libusb1_0" != xno) |
| 369 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 370 | # 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] | 371 | if test "x$enable_libftdi" != "xno"; then |
| 372 | PKG_CHECK_MODULES([libftdi], [libftdi >= 0.16], |
| 373 | [have_libftdi="yes"; LIB_CFLAGS="$LIB_CFLAGS $libftdi_CFLAGS"; |
| 374 | LIBS="$LIBS $libftdi_LIBS"; |
| 375 | SR_PKGLIBS="$SR_PKGLIBS libftdi"], |
Uwe Hermann | c78bcc6 | 2014-06-16 13:19:34 +0200 | [diff] [blame] | 376 | [PKG_CHECK_MODULES([libftdi1], [libftdi1 >= 1.0], |
Dan Horák | 9250635 | 2014-06-15 11:08:37 +0200 | [diff] [blame] | 377 | [LIB_CFLAGS="$LIB_CFLAGS $libftdi1_CFLAGS"; |
| 378 | LIBS="$LIBS $libftdi1_LIBS"; |
| 379 | SR_PKGLIBS="$SR_PKGLIBS libftdi1"], |
| 380 | [have_libftdi="no"])]) |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 381 | if test "x$enable_libftdi$have_libftdi" = "xyesno"; then |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 382 | AC_MSG_ERROR([libftdi support requested, but it was not found.]) |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 383 | fi |
| 384 | else |
| 385 | have_libftdi="no" |
| 386 | fi |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 387 | if test "x$have_libftdi" = "xno"; then |
| 388 | HW_ASIX_SIGMA="no"; HW_CHRONOVU_LA="no"; HW_IKALOGIC_SCANAPLUS="no"; |
magnuskarlsson | 4bd80e1 | 2014-05-10 15:44:13 -0700 | [diff] [blame] | 389 | HW_PIPISTRELLO_OLS="no"; |
Mike Frysinger | a473799 | 2014-06-13 22:44:38 -0400 | [diff] [blame] | 390 | fi |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 391 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 392 | # glibmm-2.4 is needed for the C++ bindings. |
| 393 | PKG_CHECK_MODULES([glibmm], [glibmm-2.4 >= 2.32.0], |
| 394 | [CXXFLAGS="$CXXFLAGS $glibmm_CFLAGS"; |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 395 | CXXLIBS="$CXXLIBS $glibmm_LIBS"], |
| 396 | [BINDINGS_CXX="no"; cxx_msg="glibmm required"]) |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 397 | |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 398 | # C++ bindings want stoi and stod. |
Marcus Comstedt | d92de05 | 2014-08-31 10:56:00 +0200 | [diff] [blame] | 399 | if test "x$BINDINGS_CXX" == "xyes"; then |
| 400 | AC_LANG_PUSH([C++]) |
| 401 | AC_MSG_CHECKING([for stoi and stod]) |
| 402 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <string>], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 403 | [{ return std::stoi("1") + std::stod("1.0"); }])], |
| 404 | [AC_MSG_RESULT([yes]); |
Marcus Comstedt | d92de05 | 2014-08-31 10:56:00 +0200 | [diff] [blame] | 405 | AC_DEFINE_UNQUOTED(HAVE_STOI_STOD, [1], |
| 406 | [Specifies whether we have the stoi and stod functions.])], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 407 | [AC_MSG_RESULT([no])]) |
Marcus Comstedt | d92de05 | 2014-08-31 10:56:00 +0200 | [diff] [blame] | 408 | AC_LANG_POP([C++]) |
| 409 | fi |
| 410 | |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 411 | # PyGObject is needed for the Python bindings. |
Uwe Hermann | 022a7fe | 2014-07-22 23:11:44 +0200 | [diff] [blame] | 412 | PKG_CHECK_MODULES([pygobject], [pygobject-3.0 >= 3.0.0], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 413 | [CXXFLAGS="$CXXFLAGS $pygobject_CFLAGS"; |
| 414 | CXXLIBS="$CXXLIBS $pygobject_LIBS"; |
Martin Ling | abc7146 | 2014-07-19 15:10:25 +0100 | [diff] [blame] | 415 | PKG_CHECK_MODULES([pygobject_3_7_91], [pygobject-3.0 >= 3.7.91], |
| 416 | [pyg_flags_signed=0], [pyg_flags_signed=1]); |
| 417 | AC_DEFINE_UNQUOTED(PYGOBJECT_FLAGS_SIGNED, [$pyg_flags_signed], |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 418 | [Whether last argument to pyg_flags_get_value() is signed.])], |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 419 | [BINDINGS_PYTHON="no"; python_msg="Python pygobject module required"]) |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 420 | |
Uwe Hermann | aba6926 | 2013-04-08 14:46:13 +0200 | [diff] [blame] | 421 | # The Check unit testing framework is optional. Disable if not found. |
Uwe Hermann | 79bb0e9 | 2013-03-07 09:37:42 +0100 | [diff] [blame] | 422 | PKG_CHECK_MODULES([check], [check >= 0.9.4], |
Mike Frysinger | 82bfb64 | 2014-06-13 22:44:39 -0400 | [diff] [blame] | 423 | [have_check="yes"], [have_check="no"]) |
Uwe Hermann | 79bb0e9 | 2013-03-07 09:37:42 +0100 | [diff] [blame] | 424 | AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes") |
| 425 | |
Uwe Hermann | 375340a | 2014-08-04 22:00:17 +0200 | [diff] [blame] | 426 | # The BeagleLogic driver needs sys/mman.h and sys/ioctl.h. Don't try to |
| 427 | # build it if these headers aren't available. |
| 428 | AC_CHECK_HEADERS([sys/mman.h sys/ioctl.h], [], [HW_BEAGLELOGIC="no"]) |
| 429 | |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 430 | AC_SUBST(SR_PKGLIBS) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 431 | |
Marcus Comstedt | 55e55a3 | 2014-08-14 23:04:06 +0200 | [diff] [blame] | 432 | CFLAGS="$CFLAGS -Iinclude/libsigrok -I${srcdir}/include/libsigrok $LIB_CFLAGS" |
Marcus Comstedt | 33c84e8 | 2014-08-14 23:07:45 +0200 | [diff] [blame] | 433 | 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] | 434 | |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 435 | # Find Java compiler and JNI includes for Java bindings. |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 436 | AC_CHECK_PROG([HAVE_JAVAC], [javac], [yes], [no]) |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 437 | if test "x$HAVE_JAVAC" = "xyes"; then |
| 438 | AX_PROG_JAVAC |
Marcus Comstedt | 3e27b17 | 2014-08-20 14:15:24 +0200 | [diff] [blame] | 439 | if test "x$JNI_INCLUDE_DIRS" = "xauto"; then |
| 440 | if test "x$cross_compiling" = "xyes"; then |
| 441 | JNI_INCLUDE_DIRS= |
| 442 | else |
| 443 | AX_JNI_INCLUDE_DIR |
| 444 | fi |
| 445 | fi |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 446 | for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS; do |
| 447 | CXXFLAGS="$CXXFLAGS -I$JNI_INCLUDE_DIR" |
| 448 | done |
Marcus Comstedt | 3e27b17 | 2014-08-20 14:15:24 +0200 | [diff] [blame] | 449 | AC_LANG_PUSH([C++]) |
| 450 | AC_CHECK_HEADERS([jni.h], [], [BINDINGS_JAVA="no"; java_msg="Java JNI headers required"]) |
| 451 | AC_LANG_POP([C++]) |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 452 | else |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 453 | BINDINGS_JAVA="no"; java_msg="Java compiler required" |
| 454 | fi |
| 455 | |
| 456 | # Python and Java bindings depend on C++ bindings. |
| 457 | if test "x$BINDINGS_CXX" != "xyes"; then |
| 458 | BINDINGS_PYTHON="no"; python_msg="C++ bindings required" |
| 459 | BINDINGS_JAVA="no"; java_msg="C++ bindings required" |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 460 | fi |
| 461 | |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 462 | # Now set AM_CONDITIONALs and AC_DEFINEs for the enabled/disabled drivers. |
| 463 | |
Uwe Hermann | 0d14e30 | 2014-09-08 23:23:51 +0200 | [diff] [blame] | 464 | AC_DEFUN([DRIVER2], [ |
| 465 | AM_CONDITIONAL($1, test "x$2" = "xyes") |
| 466 | if test "x$2" = "xyes"; then AC_DEFINE($3, 1, [.]) fi |
| 467 | ]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 468 | |
Uwe Hermann | 0d14e30 | 2014-09-08 23:23:51 +0200 | [diff] [blame] | 469 | DRIVER2([HW_AGILENT_DMM], [$HW_AGILENT_DMM], [HAVE_HW_AGILENT_DMM]) |
| 470 | DRIVER2([HW_APPA_55II], [$HW_APPA_55II], [HAVE_HW_APPA_55II]) |
| 471 | DRIVER2([HW_ASIX_SIGMA], [$HW_ASIX_SIGMA], [HAVE_HW_ASIX_SIGMA]) |
| 472 | DRIVER2([HW_ATTEN_PPS3XXX], [$HW_ATTEN_PPS3XXX], [HAVE_HW_ATTEN_PPS3XXX]) |
| 473 | DRIVER2([HW_BEAGLELOGIC], [$HW_BEAGLELOGIC], [HAVE_HW_BEAGLELOGIC]) |
| 474 | DRIVER2([HW_BRYMEN_BM86X], [$HW_BRYMEN_BM86X], [HAVE_HW_BRYMEN_BM86X]) |
| 475 | DRIVER2([HW_BRYMEN_DMM], [$HW_BRYMEN_DMM], [HAVE_HW_BRYMEN_DMM]) |
| 476 | DRIVER2([HW_CEM_DT_885X], [$HW_CEM_DT_885X], [HAVE_HW_CEM_DT_885X]) |
| 477 | DRIVER2([HW_CENTER_3XX], [$HW_CENTER_3XX], [HAVE_HW_CENTER_3XX]) |
| 478 | DRIVER2([HW_CHRONOVU_LA], [$HW_CHRONOVU_LA], [HAVE_HW_CHRONOVU_LA]) |
| 479 | DRIVER2([HW_COLEAD_SLM], [$HW_COLEAD_SLM], [HAVE_HW_COLEAD_SLM]) |
| 480 | DRIVER2([HW_CONRAD_DIGI_35_CPU], [$HW_CONRAD_DIGI_35_CPU], [HAVE_HW_CONRAD_DIGI_35_CPU]) |
| 481 | DRIVER2([HW_DEMO], [$HW_DEMO], [HAVE_HW_DEMO]) |
Janne Huttunen | b508919 | 2014-10-11 15:47:35 +0300 | [diff] [blame] | 482 | DRIVER2([HW_DEREE_DE5000], [$HW_DEREE_DE5000], [HAVE_HW_DEREE_DE5000]) |
Uwe Hermann | 0d14e30 | 2014-09-08 23:23:51 +0200 | [diff] [blame] | 483 | DRIVER2([HW_FLUKE_DMM], [$HW_FLUKE_DMM], [HAVE_HW_FLUKE_DMM]) |
| 484 | DRIVER2([HW_FX2LAFW], [$HW_FX2LAFW], [HAVE_HW_FX2LAFW]) |
| 485 | DRIVER2([HW_GMC_MH_1X_2X], [$HW_GMC_MH_1X_2X], [HAVE_HW_GMC_MH_1X_2X]) |
| 486 | DRIVER2([HW_HAMEG_HMO], [$HW_HAMEG_HMO], [HAVE_HW_HAMEG_HMO]) |
| 487 | DRIVER2([HW_HANTEK_DSO], [$HW_HANTEK_DSO], [HAVE_HW_HANTEK_DSO]) |
| 488 | DRIVER2([HW_IKALOGIC_SCANALOGIC2], [$HW_IKALOGIC_SCANALOGIC2], [HAVE_HW_IKALOGIC_SCANALOGIC2]) |
| 489 | DRIVER2([HW_IKALOGIC_SCANAPLUS], [$HW_IKALOGIC_SCANAPLUS], [HAVE_HW_IKALOGIC_SCANAPLUS]) |
| 490 | DRIVER2([HW_KECHENG_KC_330B], [$HW_KECHENG_KC_330B], [HAVE_HW_KECHENG_KC_330B]) |
| 491 | DRIVER2([HW_LASCAR_EL_USB], [$HW_LASCAR_EL_USB], [HAVE_HW_LASCAR_EL_USB]) |
| 492 | DRIVER2([HW_MANSON_HCS_3XXX], [$HW_MANSON_HCS_3XXX], [HAVE_HW_MANSON_HCS_3XXX]) |
| 493 | DRIVER2([HW_MIC_985XX], [$HW_MIC_985XX], [HAVE_HW_MIC_985XX]) |
| 494 | DRIVER2([HW_MOTECH_LPS_30X], [$HW_MOTECH_LPS_30X], [HAVE_HW_MOTECH_LPS_30X]) |
| 495 | DRIVER2([HW_NORMA_DMM], [$HW_NORMA_DMM], [HAVE_HW_NORMA_DMM]) |
| 496 | DRIVER2([HW_OPENBENCH_LOGIC_SNIFFER], [$HW_OPENBENCH_LOGIC_SNIFFER], [HAVE_HW_OPENBENCH_LOGIC_SNIFFER]) |
| 497 | DRIVER2([HW_PIPISTRELLO_OLS], [$HW_PIPISTRELLO_OLS], [HAVE_HW_PIPISTRELLO_OLS]) |
| 498 | DRIVER2([HW_RIGOL_DS], [$HW_RIGOL_DS], [HAVE_HW_RIGOL_DS]) |
| 499 | DRIVER2([HW_SALEAE_LOGIC16], [$HW_SALEAE_LOGIC16], [HAVE_HW_SALEAE_LOGIC16]) |
| 500 | DRIVER2([HW_SCPI_PPS], [$HW_SCPI_PPS], [HAVE_HW_SCPI_PPS]) |
| 501 | DRIVER2([HW_SERIAL_DMM], [$HW_SERIAL_DMM], [HAVE_HW_SERIAL_DMM]) |
| 502 | DRIVER2([HW_SYSCLK_LWLA], [$HW_SYSCLK_LWLA], [HAVE_HW_SYSCLK_LWLA]) |
| 503 | DRIVER2([HW_TELEINFO], [$HW_TELEINFO], [HAVE_HW_TELEINFO]) |
| 504 | DRIVER2([HW_TESTO], [$HW_TESTO], [HAVE_HW_TESTO]) |
| 505 | DRIVER2([HW_TONDAJ_SL_814], [$HW_TONDAJ_SL_814], [HAVE_HW_TONDAJ_SL_814]) |
| 506 | DRIVER2([HW_UNI_T_DMM], [$HW_UNI_T_DMM], [HAVE_HW_UNI_T_DMM]) |
| 507 | DRIVER2([HW_UNI_T_UT32X], [$HW_UNI_T_UT32X], [HAVE_HW_UNI_T_UT32X]) |
| 508 | DRIVER2([HW_VICTOR_DMM], [$HW_VICTOR_DMM], [HAVE_HW_VICTOR_DMM]) |
| 509 | DRIVER2([HW_YOKOGAWA_DLM], [$HW_YOKOGAWA_DLM], [HAVE_HW_YOKOGAWA_DLM]) |
| 510 | DRIVER2([HW_ZEROPLUS_LOGIC_CUBE], [$HW_ZEROPLUS_LOGIC_CUBE], [HAVE_HW_ZEROPLUS_LOGIC_CUBE]) |
Uwe Hermann | ae4c3d0 | 2013-04-09 12:32:30 +0200 | [diff] [blame] | 511 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 512 | AM_CONDITIONAL(BINDINGS_CXX, test x$BINDINGS_CXX = xyes) |
| 513 | |
Martin Ling | f774095 | 2014-07-17 18:45:29 +0100 | [diff] [blame] | 514 | AM_CONDITIONAL(BINDINGS_PYTHON, test x$BINDINGS_PYTHON = xyes) |
| 515 | |
Martin Ling | 9fcf4d0 | 2014-04-27 09:48:18 +0100 | [diff] [blame] | 516 | AM_CONDITIONAL(BINDINGS_JAVA, test x$BINDINGS_JAVA = xyes) |
| 517 | |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 518 | # Checks for header files. |
Uwe Hermann | 375340a | 2014-08-04 22:00:17 +0200 | [diff] [blame] | 519 | # These are already implicitly checked: inttypes.h stdint.h stdlib.h string.h |
| 520 | # 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] | 521 | |
| 522 | # Checks for typedefs, structures, and compiler characteristics. |
Marcus Comstedt | 7b5daad | 2013-08-04 13:46:35 +0200 | [diff] [blame] | 523 | AC_C_BIGENDIAN |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 524 | |
Uwe Hermann | fb6f197 | 2012-05-30 00:00:33 +0200 | [diff] [blame] | 525 | AC_SUBST(FIRMWARE_DIR, "$datadir/sigrok-firmware") |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 526 | AC_SUBST(MAKEFLAGS, '--no-print-directory') |
| 527 | AC_SUBST(AM_LIBTOOLFLAGS, '--silent') |
| 528 | |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 529 | SR_PACKAGE_VERSION_MAJOR=sr_package_version_major |
| 530 | SR_PACKAGE_VERSION_MINOR=sr_package_version_minor |
| 531 | SR_PACKAGE_VERSION_MICRO=sr_package_version_micro |
| 532 | SR_PACKAGE_VERSION=sr_package_version |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 533 | |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 534 | AC_SUBST(SR_PACKAGE_VERSION_MAJOR) |
| 535 | AC_SUBST(SR_PACKAGE_VERSION_MINOR) |
| 536 | AC_SUBST(SR_PACKAGE_VERSION_MICRO) |
| 537 | AC_SUBST(SR_PACKAGE_VERSION) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 538 | |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 539 | AC_CONFIG_FILES([Makefile include/libsigrok/version.h libsigrok.pc |
| 540 | bindings/cxx/libsigrokxx.pc]) |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 541 | |
| 542 | AC_OUTPUT |
| 543 | |
| 544 | echo |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 545 | echo "libsigrok configuration summary:" |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 546 | echo |
Uwe Hermann | 6dddd90 | 2012-03-31 11:28:24 +0200 | [diff] [blame] | 547 | echo " - Package version (major.minor.micro): $SR_PACKAGE_VERSION" |
| 548 | echo " - Library version (current:revision:age): $SR_LIB_VERSION" |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 549 | echo " - Prefix: $prefix" |
Uwe Hermann | 6bad848 | 2013-04-09 18:47:31 +0200 | [diff] [blame] | 550 | echo " - Building on: $build" |
| 551 | echo " - Building for: $host" |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 552 | echo |
| 553 | echo "Detected libraries:" |
| 554 | echo |
| 555 | |
| 556 | # Note: This only works for libs with pkg-config integration. |
Bert Vermeulen | 818df9f | 2014-10-08 23:14:01 +0200 | [diff] [blame] | 557 | for lib in "glib-2.0 >= 2.34.0" "libzip >= 0.10" "libserialport >= 0.2.0" \ |
Bert Vermeulen | d6e63a2 | 2014-09-05 18:26:12 +0200 | [diff] [blame] | 558 | "librevisa >= 0.0.20130812" "libusb-1.0 >= 1.0.16" "libftdi >= 0.16" \ |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 559 | "libftdi1 >= 1.0" "libgpib" "glibmm-2.4 >= 2.32.0" \ |
| 560 | "pygobject-3.0 >= 3.0.0" "check >= 0.9.4" |
Bert Vermeulen | d6e63a2 | 2014-09-05 18:26:12 +0200 | [diff] [blame] | 561 | do |
Uwe Hermann | 958326f | 2014-04-05 13:35:49 +0200 | [diff] [blame] | 562 | optional="OPTIONAL" |
Bert Vermeulen | 818df9f | 2014-10-08 23:14:01 +0200 | [diff] [blame] | 563 | if test "x$lib" = "xglib-2.0 >= 2.34.0"; then optional="REQUIRED"; fi |
Uwe Hermann | 958326f | 2014-04-05 13:35:49 +0200 | [diff] [blame] | 564 | if test "x$lib" = "xlibzip >= 0.10"; then optional="REQUIRED"; fi |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 565 | if `$PKG_CONFIG --exists $lib`; then |
| 566 | ver=`$PKG_CONFIG --modversion $lib` |
| 567 | answer="yes ($ver)" |
| 568 | else |
| 569 | answer="no" |
| 570 | fi |
Uwe Hermann | 958326f | 2014-04-05 13:35:49 +0200 | [diff] [blame] | 571 | echo " - ($optional) $lib: $answer" |
Uwe Hermann | 45aed07 | 2012-01-04 00:49:21 +0100 | [diff] [blame] | 572 | done |
| 573 | |
Bert Vermeulen | 43cd463 | 2014-07-22 18:17:34 +0200 | [diff] [blame] | 574 | eval echo -e "@Enabled hardware drivers:@@${driver_summary}" | tr @ \\n |
Uwe Hermann | 826938d | 2011-12-30 10:42:39 +0100 | [diff] [blame] | 575 | |
Uwe Hermann | 62ea3ef | 2014-09-08 22:30:53 +0200 | [diff] [blame] | 576 | # Prepare final bindings report messages. |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 577 | final_cxx="" |
| 578 | final_python="" |
| 579 | final_java="" |
| 580 | if test "$enable_bindings" = "no"; then |
| 581 | final_cxx=" (disabled)" |
| 582 | final_python=" (disabled)" |
| 583 | final_java=" (disabled)" |
| 584 | else |
| 585 | if test "$enable_cxx" = "no"; then |
| 586 | final_cxx=" (disabled)" |
| 587 | elif test "$BINDINGS_CXX" = "no"; then |
| 588 | final_cxx=" ($cxx_msg)" |
| 589 | fi |
| 590 | if test "$enable_python" = "no"; then |
| 591 | final_python=" (disabled)" |
| 592 | elif test "$BINDINGS_PYTHON" = "no"; then |
| 593 | final_python=" ($python_msg)" |
| 594 | fi |
| 595 | if test "$enable_java" = "no"; then |
| 596 | final_java=" (disabled)" |
| 597 | elif test "$BINDINGS_JAVA" = "no"; then |
| 598 | final_java=" ($java_msg)" |
| 599 | fi |
| 600 | fi |
| 601 | |
Uwe Hermann | a0ca437 | 2014-09-08 22:58:14 +0200 | [diff] [blame] | 602 | echo "Enabled SCPI backends:" |
| 603 | echo " - TCP............................. yes" |
| 604 | if test "x$have_rpc" = "x0"; then |
| 605 | echo " - RPC............................. no" |
| 606 | else |
| 607 | echo " - RPC............................. yes" |
| 608 | fi |
| 609 | echo " - serial.......................... $have_libserialport" |
| 610 | echo " - VISA............................ $have_librevisa" |
| 611 | echo " - GPIB............................ $have_libgpib" |
| 612 | echo " - USBTMC.......................... $have_libusb1_0" |
| 613 | echo |
| 614 | |
| 615 | echo "Enabled language bindings:" |
Bert Vermeulen | 1029d38 | 2014-07-23 14:36:11 +0200 | [diff] [blame] | 616 | echo " - C++............................. $BINDINGS_CXX$final_cxx" |
| 617 | echo " - Python.......................... $BINDINGS_PYTHON$final_python" |
| 618 | echo " - Java............................ $BINDINGS_JAVA$final_java" |
Martin Ling | c23c865 | 2014-07-17 18:39:49 +0100 | [diff] [blame] | 619 | echo |