]> sigrok.org Git - libsigrok.git/blame - configure.ac
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / configure.ac
CommitLineData
826938d8 1##
50985c20 2## This file is part of the libsigrok project.
826938d8 3##
c73d2ea4 4## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
d375b3c3 5## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
826938d8
UH
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
ef7228ba
UH
21# We require at least autoconf 2.63 (AC_INIT format changed there).
22AC_PREREQ([2.63])
826938d8 23
33b20ce8 24AC_INIT([libsigrok], [0.6.0],
7f289d14 25 [sigrok-devel@lists.sourceforge.net],
db8ae7b9 26 [libsigrok], [http://www.sigrok.org])
ea1d5351 27AC_CONFIG_MACRO_DIR([m4])
d8521c93 28AC_CONFIG_AUX_DIR([autostuff])
24138539 29AC_CONFIG_HEADERS([config.h include/libsigrok/version.h])
826938d8 30
ef7228ba 31# We require at least automake 1.11 (needed for 'silent rules').
9ac018d0 32AM_INIT_AUTOMAKE([1.11 -Wall -Werror no-define nostdinc subdir-objects check-news color-tests])
bbb3996c 33AM_SILENT_RULES([yes])
432e5e95 34m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
826938d8 35
bcc3694f
DE
36AC_CANONICAL_HOST
37
826938d8 38# Checks for programs.
826938d8 39AC_PROG_CC
c23c8659 40AC_PROG_CXX
826938d8
UH
41AC_PROG_INSTALL
42AC_PROG_LN_S
43
bb203cde
UH
44# Required for per-target flags or subdir-objects with C sources.
45AM_PROG_CC_C_O
46
56c8705e
DE
47# Set the standard the C library headers should conform to.
48AH_VERBATIM([_POSIX_C_SOURCE], [/* The targeted POSIX standard. */
49#ifndef _POSIX_C_SOURCE
50# define _POSIX_C_SOURCE 200112L
51#endif])
52
4512ccd3
DE
53# Get compiler versions.
54SR_PROG_VERSION([$CC], [sr_cc_version])
55SR_PROG_VERSION([$CXX], [sr_cxx_version])
56
3841c4c5 57# Check for optional make features.
5b9e9bba
DE
58SR_PROG_MAKE_ORDER_ONLY
59
826938d8
UH
60# Initialize libtool.
61LT_INIT
62
24138539
DE
63# Set up the libsigrok version defines.
64SR_PKG_VERSION_SET([SR_PACKAGE_VERSION], [AC_PACKAGE_VERSION])
b2478a23 65
3af71f0d 66# Library version for libsigrok (NOT the same as the package version).
826938d8
UH
67# Carefully read the libtool docs before updating these numbers!
68# The algorithm for determining which number to change (and how) is nontrivial!
69# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
89c82260 70# Format: current:revision:age.
9b355aa1 71SR_LIB_VERSION_SET([SR_LIB_VERSION], [4:0:0])
826938d8 72
655b116c
DE
73AM_CONDITIONAL([WIN32], [test -z "${host_os##mingw*}" || test -z "${host_os##cygwin*}"])
74
1f61c22f
DE
75#############################
76## Optional dependencies ##
77#############################
de44e114 78
8c2024e0
DE
79AC_LANG([C])
80
1f61c22f
DE
81# Initialize pkg-config.
82# We require at least 0.22, as "Requires.private" behaviour changed there.
83PKG_PROG_PKG_CONFIG([0.22])
bcacb863 84
1bb196e4
DE
85# Keep track of all checked modules so we can list them at the end.
86SR_PKG_CHECK_SUMMARY([sr_pkglibs_summary])
87
88# Collect the pkg-config module names of all dependencies in SR_PKGLIBS.
1f61c22f
DE
89# These are used to derive the compiler flags and for the "Requires.private"
90# field in the generated libsigrok.pc file.
1bb196e4 91SR_VAR_OPT_PKG([SR_PKGLIBS], [sr_deps_avail])
65489c1a 92SR_PKGLIBS_TESTS=
1f61c22f
DE
93SR_PKGLIBS_CXX=
94SR_PKGLIBS_PYTHON=
27d44cf6 95SR_PKGLIBS_RUBY=
8c2024e0 96SR_EXTRA_LIBS=
9d8f363d 97SR_EXTRA_CXX_LIBS=
1f61c22f 98
e4c9ea56
GS
99SR_ARG_OPT_PKG([zlib], [ZLIB], , [zlib])
100AM_CONDITIONAL([HAVE_ZLIB], [test "x$sr_have_zlib" = xyes])
101AM_COND_IF([HAVE_ZLIB], [
102 SR_APPEND([sr_deps_avail], [crc32 zlib])
103 SR_PREPEND([SR_EXTRA_LIBS], [-lz])
104])
105
106AM_CONDITIONAL([HAVE_INPUT_STF], [test "x$sr_have_zlib" = xyes])
107AM_COND_IF([HAVE_INPUT_STF], [
108 AC_DEFINE([HAVE_INPUT_STF], [1], [Is the STF input module supported?])
109])
110
1df81f4b 111SR_ARG_OPT_PKG([libserialport], [LIBSERIALPORT], ,
1f61c22f 112 [libserialport >= 0.1.1])
1f61c22f 113
689749b7 114SR_ARG_OPT_PKG([libftdi], [LIBFTDI], , [libftdi1 >= 1.0])
1f61c22f 115
aa29b255 116# pkg-config file names: MinGW/MacOSX: hidapi; Linux: hidapi-hidraw/-libusb
4417074c
GS
117SR_ARG_OPT_PKG([libhidapi], [LIBHIDAPI], ,
118 [hidapi >= 0.8.0], [hidapi-hidraw >= 0.8.0], [hidapi-libusb >= 0.8.0])
119
aa29b255 120SR_ARG_OPT_PKG([libbluez], [LIBBLUEZ], , [bluez >= 4.0])
f085705f 121
cae33a58
AS
122SR_ARG_OPT_PKG([libnettle], [LIBNETTLE], , [nettle])
123
1f61c22f
DE
124# FreeBSD comes with an "integrated" libusb-1.0-style USB API.
125# This means libusb-1.0 is always available; no need to check for it.
c1adbb1e
DE
126# On Windows, require the latest version we can get our hands on,
127# until the new generic event handling has seen an official release.
128AS_CASE([$host_os],
129 [freebsd*], [sr_libusb_req='libusb-1.0' sr_have_libusb=yes],
130 [mingw*], [sr_libusb_req='libusb-1.0 >= 1.0.20'],
131 [sr_libusb_req='libusb-1.0 >= 1.0.16'])
1f61c22f 132
2cbde151 133SR_ARG_OPT_PKG([libusb], [LIBUSB_1_0], [NEED_USB],
c1adbb1e 134 [$sr_libusb_req])
c23c8659 135
2cbde151 136SR_ARG_OPT_PKG([librevisa], [LIBREVISA], [NEED_VISA],
1f61c22f 137 [librevisa >= 0.0.20130412])
d92de05a 138
2cbde151 139SR_ARG_OPT_PKG([libgpib], [LIBGPIB], [NEED_GPIB],
1f61c22f
DE
140 [libgpib])
141
8c2024e0
DE
142SR_ARG_OPT_CHECK([libieee1284], [LIBIEEE1284],, [
143 sr_save_LIBS=$LIBS
144 LIBS="-lieee1284 $LIBS"
145 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <ieee1284.h>]],
146 [[(void) ieee1284_open(0, 0, 0);]])],
147 [sr_have_libieee1284=yes], [sr_have_libieee1284=no])
39cf2004 148 LIBS=$sr_save_LIBS
8c2024e0
DE
149])
150AS_IF([test "x$sr_have_libieee1284" = xyes],
151 [SR_PREPEND([SR_EXTRA_LIBS], [-lieee1284])])
152
ebcd1aba
DH
153SR_ARG_OPT_PKG([libgio], [LIBGIO], , [gio-2.0 >= 2.24.0])
154
f085705f
GS
155# See if any of the (potentially platform specific) libs are available
156# which provide some means of Bluetooth communication.
157AS_IF([test "x$sr_have_libbluez" = xyes],
158 sr_have_bluetooth=yes, sr_have_bluetooth=no)
159AS_IF([test "x$sr_have_bluetooth" = xyes],
160 [AC_DEFINE([HAVE_BLUETOOTH], [1], [Specifies whether Bluetooth communication is supported.])])
ebcd1aba
DH
161AS_IF([test "x$sr_have_bluetooth" = xyes],
162 [SR_APPEND([sr_deps_avail], [bluetooth_comm])])
f085705f
GS
163
164AS_IF([test "x$sr_have_libserialport" = xyes -o "x$sr_have_libhidapi" = xyes -o "x$sr_have_bluetooth" = xyes],
1df81f4b
GS
165 sr_have_serial_comm=yes, sr_have_serial_comm=no)
166AS_IF([test "x$sr_have_serial_comm" = xyes],
167 [AC_DEFINE([HAVE_SERIAL_COMM], [1], [Specifies whether serial communication is supported.])])
168AS_IF([test "x$sr_have_serial_comm" = xyes],
169 [SR_APPEND([sr_deps_avail], [serial_comm])])
170AM_CONDITIONAL([NEED_SERIAL], [test "x$sr_have_serial_comm" = xyes])
171
1f61c22f
DE
172######################
173## Feature checks ##
174######################
f7740954 175
aba69262 176# The Check unit testing framework is optional. Disable if not found.
65489c1a 177SR_PKG_CHECK([check], [SR_PKGLIBS_TESTS], [check >= 0.9.4])
1f61c22f
DE
178AM_CONDITIONAL([HAVE_CHECK], [test "x$sr_have_check" = xyes])
179
e662d9e8 180# Enable the C99 standard if possible, and enforce the use
b84a7331
DE
181# of SR_API to explicitly mark all public API functions.
182SR_EXTRA_CFLAGS=
e662d9e8 183SR_CHECK_COMPILE_FLAGS([SR_EXTRA_CFLAGS], [C99], [-std=c99 -c99 -AC99 -qlanglvl=extc99])
b84a7331
DE
184SR_CHECK_COMPILE_FLAGS([SR_EXTRA_CFLAGS], [visibility], [-fvisibility=hidden])
185
4cf2f34f 186SR_ARG_ENABLE_WARNINGS([SR_WFLAGS], [-Wall], [-Wall -Wextra -Wmissing-prototypes])
1f61c22f
DE
187
188# Check host characteristics.
bbb3996c 189AC_SYS_LARGEFILE
1f61c22f 190AC_C_BIGENDIAN
79bb0e97 191
1bb196e4
DE
192AC_CHECK_HEADERS([sys/mman.h], [SR_APPEND([sr_deps_avail], [sys_mman_h])])
193AC_CHECK_HEADERS([sys/ioctl.h], [SR_APPEND([sr_deps_avail], [sys_ioctl_h])])
194AC_CHECK_HEADERS([sys/timerfd.h], [SR_APPEND([sr_deps_avail], [sys_timerfd_h])])
1f61c22f 195
bc8ff24d 196# We need to link against the Winsock2 library for SCPI over TCP.
8c2024e0 197AS_CASE([$host_os], [mingw*], [SR_PREPEND([SR_EXTRA_LIBS], [-lws2_32])])
bc8ff24d
DE
198
199# libm (the standard math library) is always needed.
200SR_SEARCH_LIBS([SR_EXTRA_LIBS], [pow], [m])
201
1f61c22f 202# RPC is only needed for VXI support.
a3fe36d0 203AC_CACHE_CHECK([for SunRPC support], [sr_cv_have_sunrpc],
1f61c22f
DE
204 [AC_LINK_IFELSE([AC_LANG_PROGRAM(
205 [[#include <rpc/rpc.h>]m4_newline[CLIENT *rpc_test(void);]],
206 [[(void) clnt_create("", 0, 0, "");]])],
a3fe36d0
SA
207 [RPC_CFLAGS=""; RPC_LIBS=""; sr_cv_have_sunrpc=yes],
208 [sr_cv_have_sunrpc=no])])
209PKG_CHECK_MODULES([TIRPC],
210 [libtirpc],
211 [RPC_CFLAGS=$TIRPC_CFLAGS; SR_PREPEND([SR_EXTRA_LIBS], [$TIRPC_LIBS]); sr_cv_have_tirpc=yes],
212 [sr_cv_have_tirpc=no])
213AS_IF([test "x$sr_cv_have_sunrpc" = xyes -o "x$sr_cv_have_tirpc" = xyes],
214 [sr_cv_have_rpc=yes], [sr_cv_have_rpc=no])
215
216AC_SUBST(RPC_CFLAGS)
217AC_SUBST(RPC_LIBS)
218
1f61c22f 219AS_IF([test "x$sr_cv_have_rpc" = xyes],
a3fe36d0
SA
220 [AC_DEFINE([HAVE_RPC], [1], [Specifies whether we have RPC support (either by SunRPC or libtirpc).])])
221
1f61c22f
DE
222# VXI support is only compiled if RPC support was found.
223AM_CONDITIONAL([NEED_RPC], [test "x$sr_cv_have_rpc" = xyes])
224
e9869966
SB
225# Check for compiler support of 128 bit integers
226AC_CHECK_TYPES([__int128_t, __uint128_t], [], [], [])
227
8c542453
GS
228AC_CACHE_CHECK([for poll], [sr_cv_have_poll],
229 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <poll.h>]],
230 [[(void) poll(0, 0, -1);]])],
231 [sr_cv_have_poll=yes], [sr_cv_have_poll=no])])
232AS_IF([test "x$sr_cv_have_poll" = xyes],
233 [AC_DEFINE([HAVE_POLL], [1],
234 [Specifies whether we have the poll(2) function.])])
235AC_CACHE_CHECK([for select], [sr_cv_have_select],
236 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/select.h>]],
237 [[(void) select(0, 0, 0, 0, 0);]])],
238 [sr_cv_have_select=yes], [sr_cv_have_select=no])])
239AS_IF([test "x$sr_cv_have_select" = xyes],
240 [AC_DEFINE([HAVE_SELECT], [1],
241 [Specifies whether we have the select(2) function.])])
b9cd0c6a
GS
242
243#######################
244## miniLZO related ##
245#######################
246# These were taken from the README.LZO file in the miniLZO archive.
247
248AC_CHECK_TYPE(ptrdiff_t,long)
249AC_TYPE_SIZE_T
250AC_CHECK_SIZEOF(short)
251AC_CHECK_SIZEOF(int)
252AC_CHECK_SIZEOF(long)
253AC_CHECK_SIZEOF(long long)
254AC_CHECK_SIZEOF(__int64)
255AC_CHECK_SIZEOF(void *)
256AC_CHECK_SIZEOF(size_t)
257AC_CHECK_SIZEOF(ptrdiff_t)
258
259AC_C_CONST
260
261AC_CHECK_FUNCS(memcmp memcpy memmove memset)
262
d37c7109
DE
263########################
264## Hardware drivers ##
265########################
266
267# Keep track of all drivers so we can list them at the end.
1bb196e4 268SR_VAR_SUMMARY([sr_driver_summary])
d37c7109
DE
269
270# Check whether the sr_deps_avail list contains all of the arguments.
271# Unavailable dependencies are collected in sr_deps_missing.
272sr_check_driver_deps() {
273 sr_deps_missing=
274 for sr_dep
275 do
276 AS_CASE([" $sr_deps_avail "], [*" $sr_dep "*],,
26b67f11 277 [SR_APPEND([sr_deps_missing], [', '], [$sr_dep])])
d37c7109 278 done
4ed3d9b6 279 test -z "$sr_deps_missing" || return 1
d37c7109
DE
280}
281
282AC_ARG_ENABLE([all-drivers],
283 [AS_HELP_STRING([--enable-all-drivers],
284 [enable all drivers by default [default=yes]])],
285 [], [enable_all_drivers=yes])
286
287## _SR_DRIVER(Device name, driver-name, var-name, [dependencies...])
288m4_define([_SR_DRIVER], [
b8b727e4 289 AC_ARG_ENABLE([$2],
d37c7109
DE
290 [AS_HELP_STRING([--enable-$2], [enable $1 support])],
291 [$3=$enableval], [$3=$enable_all_drivers])
292
293 AS_IF([test "x[$]$3" = xyes], [sr_hw_info=yes[]m4_ifval([$4], [
4ed3d9b6
DE
294 sr_check_driver_deps $4 \
295 || $3=no sr_hw_info="no (missing: $sr_deps_missing)"
d37c7109 296 ])], [sr_hw_info='no (disabled)'])
1bb196e4 297 sr_driver_summary_append "$2" "$sr_hw_info"
d37c7109
DE
298
299 AM_CONDITIONAL([$3], [test "x[$]$3" = xyes])
bf85ea21 300 AM_COND_IF([$3], [AC_DEFINE([HAVE_$3], [1], [Whether to support $1 device.]) AC_DEFINE([HAVE_DRIVERS], [1], [Whether at least one driver is enabled.])])
d37c7109
DE
301])
302
303## SR_DRIVER(Device name, driver-name, [dependencies...])
304m4_define([SR_DRIVER],
305 [_SR_DRIVER([$1], [$2], m4_expand([AS_TR_CPP([HW_$2])]), [$3])])
306
bb15350e
GS
307SR_DRIVER([Agilent DMM], [agilent-dmm], [serial_comm])
308SR_DRIVER([Appa 55II], [appa-55ii], [serial_comm])
309SR_DRIVER([Arachnid Labs Re:load Pro], [arachnid-labs-re-load-pro], [serial_comm])
d37c7109 310SR_DRIVER([ASIX SIGMA/SIGMA2], [asix-sigma], [libftdi])
13f6da67 311SR_DRIVER([ASIX OMEGA RTM CLI], [asix-omega-rtm-cli])
a5800e90 312SR_DRIVER([Atorch], [atorch], [serial_comm])
bb15350e 313SR_DRIVER([Atten PPS3xxx], [atten-pps3xxx], [serial_comm])
d37c7109
DE
314SR_DRIVER([BayLibre ACME], [baylibre-acme], [sys_timerfd_h])
315SR_DRIVER([BeagleLogic], [beaglelogic], [sys_mman_h sys_ioctl_h])
bb15350e
GS
316SR_DRIVER([CEM DT-885x], [cem-dt-885x], [serial_comm])
317SR_DRIVER([Center 3xx], [center-3xx], [serial_comm])
382bea82 318SR_DRIVER([ChronoVu LA], [chronovu-la], [libusb libftdi])
bb15350e
GS
319SR_DRIVER([Colead SLM], [colead-slm], [serial_comm])
320SR_DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu], [serial_comm])
321f85fb 321SR_DRIVER([dcttech usbrelay], [dcttech-usbrelay], [libhidapi])
d37c7109 322SR_DRIVER([demo], [demo])
8712c783 323SR_DRIVER([Devantech ETH008], [devantech-eth008], [serial_comm])
44b46d70 324SR_DRIVER([DreamSourceLab DSLogic], [dreamsourcelab-dslogic], [libusb])
e756c595 325SR_DRIVER([Fluke 45], [fluke-45])
bb15350e 326SR_DRIVER([Fluke DMM], [fluke-dmm], [serial_comm])
f2273382 327SR_DRIVER([FTDI LA], [ftdi-la], [libusb libftdi])
d37c7109 328SR_DRIVER([fx2lafw], [fx2lafw], [libusb])
bb15350e 329SR_DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x], [serial_comm])
208fcedc 330SR_DRIVER([Great Scott Gadgets GreatFET One], [greatfet], [libusb])
bb15350e
GS
331SR_DRIVER([GW Instek GDS-800], [gwinstek-gds-800], [serial_comm])
332SR_DRIVER([GW Instek GPD], [gwinstek-gpd], [serial_comm])
672a5e8f 333SR_DRIVER([Hameg HMO], [hameg-hmo])
5089a143 334SR_DRIVER([Hantek 4032L], [hantek-4032l], [libusb])
f2a66a8e 335SR_DRIVER([Hantek 6xxx], [hantek-6xxx], [libusb])
d37c7109 336SR_DRIVER([Hantek DSO], [hantek-dso], [libusb])
00b2a092 337SR_DRIVER([HP 3457A], [hp-3457a])
d2c1730a 338SR_DRIVER([HP 3478A], [hp-3478a], [libgpib])
12e7abe2 339SR_DRIVER([hp-59306a], [hp-59306a])
96e05afa 340SR_DRIVER([Hung-Chang DSO-2100], [hung-chang-dso-2100], [libieee1284])
cefdd911 341SR_DRIVER([ICStation USBRelay], [icstation-usbrelay], [serial_comm])
d37c7109
DE
342SR_DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2], [libusb])
343SR_DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus], [libftdi])
8a9788e2 344SR_DRIVER([IPDBG LA], [ipdbg-la])
f21b6983 345SR_DRIVER([ITECH IT8500], [itech-it8500], [serial_comm])
18baeeed 346SR_DRIVER([JUNTEK JDS6600], [juntek-jds6600], [serial_comm])
d37c7109 347SR_DRIVER([Kecheng KC-330B], [kecheng-kc-330b], [libusb])
bb15350e 348SR_DRIVER([KERN scale], [kern-scale], [serial_comm])
f2cd2deb 349SR_DRIVER([Kingst LA2016], [kingst-la2016], [libusb])
bb15350e 350SR_DRIVER([Korad KAxxxxP], [korad-kaxxxxp], [serial_comm])
d37c7109 351SR_DRIVER([Lascar EL-USB], [lascar-el-usb], [libusb])
c7b17bcb 352SR_DRIVER([LeCroy LogicStudio], [lecroy-logicstudio], [libusb])
bb08570f 353SR_DRIVER([LeCroy X-Stream], [lecroy-xstream])
bb15350e 354SR_DRIVER([Manson HCS-3xxx], [manson-hcs-3xxx], [serial_comm])
9b1101d6 355SR_DRIVER([Mastech MS6514], [mastech-ms6514], [serial_comm])
d37c7109 356SR_DRIVER([maynuo-m97], [maynuo-m97])
bb15350e 357SR_DRIVER([MIC 985xx], [mic-985xx], [serial_comm])
a5c0259c 358SR_DRIVER([Microchip PICkit2], [microchip-pickit2], [libusb])
ebcd1aba 359SR_DRIVER([Mooshimeter DMM], [mooshimeter-dmm], [bluetooth_comm libgio])
bb15350e
GS
360SR_DRIVER([Motech LPS 30x], [motech-lps-30x], [serial_comm])
361SR_DRIVER([Norma DMM], [norma-dmm], [serial_comm])
362SR_DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer], [serial_comm])
363SR_DRIVER([PCE PCE-322A], [pce-322a], [serial_comm])
d37c7109 364SR_DRIVER([Pipistrello-OLS], [pipistrello-ols], [libftdi])
585cda0f 365SR_DRIVER([RaspberryPI PICO], [raspberrypi-pico], [serial_comm])
bb15350e 366SR_DRIVER([RDTech DPSxxxx/DPHxxxx], [rdtech-dps], [serial_comm])
8b607a24 367SR_DRIVER([RDTech UMXX], [rdtech-um], [serial_comm])
cae33a58 368SR_DRIVER([RDTech TCXX], [rdtech-tc], [serial_comm libnettle])
d37c7109 369SR_DRIVER([Rigol DS], [rigol-ds])
068db0fb 370SR_DRIVER([Rigol DG], [rigol-dg])
bb15350e 371SR_DRIVER([Rohde&Schwarz SME-0x], [rohde-schwarz-sme-0x], [serial_comm])
d37c7109 372SR_DRIVER([Saleae Logic16], [saleae-logic16], [libusb])
b6189f7c 373SR_DRIVER([Saleae Logic Pro], [saleae-logic-pro], [libusb])
7a396ff5 374SR_DRIVER([SCPI DMM], [scpi-dmm])
d37c7109 375SR_DRIVER([SCPI PPS], [scpi-pps])
bb15350e
GS
376SR_DRIVER([serial DMM], [serial-dmm], [serial_comm])
377SR_DRIVER([serial LCR], [serial-lcr], [serial_comm])
89f5fab9 378SR_DRIVER([Siglent SDS], [siglent-sds])
d37c7109 379SR_DRIVER([Sysclk LWLA], [sysclk-lwla], [libusb])
8da8c826 380SR_DRIVER([Sysclk SLA5032], [sysclk-sla5032], [libusb])
bb15350e 381SR_DRIVER([Teleinfo], [teleinfo], [serial_comm])
d37c7109 382SR_DRIVER([Testo], [testo], [libusb])
bb15350e 383SR_DRIVER([Tondaj SL-814], [tondaj-sl-814], [serial_comm])
d37c7109 384SR_DRIVER([UNI-T DMM], [uni-t-dmm], [libusb])
ebc51109 385SR_DRIVER([UNI-T UT181A], [uni-t-ut181a], [serial_comm])
164c5ae5 386SR_DRIVER([UNI-T UT32x], [uni-t-ut32x], [serial_comm])
d37c7109
DE
387SR_DRIVER([Yokogawa DL/DLM], [yokogawa-dlm])
388SR_DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube], [libusb])
bb15350e 389SR_DRIVER([ZKETECH EBD-USB], [zketech-ebd-usb], [serial_comm])
1f61c22f
DE
390
391###############################
392## Language bindings setup ##
393###############################
394
d37c7109 395AC_LANG([C++])
4cf2f34f 396SR_ARG_ENABLE_WARNINGS([SR_WXXFLAGS], [-Wall], [-Wall -Wextra])
d37c7109 397
1f61c22f
DE
398AC_ARG_ENABLE([bindings],
399 [AS_HELP_STRING([--enable-bindings], [build language bindings [default=yes]])],
400 [], [enable_bindings=yes])
176c7219 401
1f61c22f
DE
402AC_ARG_ENABLE([cxx],
403 [AS_HELP_STRING([--enable-cxx], [build C++ bindings [default=yes]])],
404 [], [enable_cxx=$enable_bindings])
a0b277ba 405
1f61c22f
DE
406AC_ARG_ENABLE([python],
407 [AS_HELP_STRING([--enable-python], [build Python bindings [default=yes]])],
408 [], [enable_python=$enable_bindings])
826938d8 409
27d44cf6 410AC_ARG_ENABLE([ruby],
856433b2
UH
411 [AS_HELP_STRING([--enable-ruby], [build Ruby bindings [default=yes]])],
412 [], [enable_ruby=$enable_bindings])
27d44cf6 413
1f61c22f
DE
414AC_ARG_ENABLE([java],
415 [AS_HELP_STRING([--enable-java], [build Java bindings [default=yes]])],
416 [], [enable_java=$enable_bindings])
417
418####################
419## C++ bindings ##
420####################
421
422sr_cxx_missing=
423
cbcc060d
GS
424# Check if the C++ compiler supports at least the C++11 standard.
425# Get the highest of the available C++17/C++14/C++11 standards.
426# This transparently amends CXXFLAGS to pick the detected standard.
427HAVE_MODERN_CXX=
428AS_IF([test "x$HAVE_MODERN_CXX" = x],
429 [AX_CXX_COMPILE_STDCXX([17], [noext], [optional])])
430AS_IF([test "x$HAVE_CXX17" = x1],
431 [HAVE_MODERN_CXX=yes])
432AS_IF([test "x$HAVE_MODERN_CXX" = x],
433 [AX_CXX_COMPILE_STDCXX([14], [noext], [optional])])
434AS_IF([test "x$HAVE_CXX14" = x1],
435 [HAVE_MODERN_CXX=yes])
436AS_IF([test "x$HAVE_MODERN_CXX" = x],
437 [AX_CXX_COMPILE_STDCXX([11], [noext], [optional])])
438AS_IF([test "x$HAVE_CXX11" = x1],
439 [HAVE_MODERN_CXX=yes])
440AS_IF([test "x$HAVE_MODERN_CXX" = x],
26b67f11 441 [SR_APPEND([sr_cxx_missing], [', '], ['C++11'])])
1f61c22f
DE
442
443# The C++ bindings need glibmm.
ee9e086f
GS
444# Prefer glibmm-2.4 for backwards compatibility.
445# Accept glibmm-2.68 when glibmm-2.4 is not available.
446sr_have_glibmm=no
26b67f11 447AS_IF([test "x$sr_have_glibmm" != xyes],
ee9e086f
GS
448 [SR_PKG_CHECK([glibmm24], [SR_PKGLIBS_CXX], [glibmm-2.4 >= 2.32.0])])
449AS_IF([test "x$sr_have_glibmm24" = xyes],
14bf3f27 450 [SR_APPEND([SR_GLIBMM_REQUIRES], ['glibmm-2.4 >= 2.32.0'])
ee9e086f
GS
451 sr_have_glibmm=yes])
452AS_IF([test "x$sr_have_glibmm" != xyes],
453 [SR_PKG_CHECK([glibmm268], [SR_PKGLIBS_CXX], [glibmm-2.68 >= 2.68.0])])
454AS_IF([test "x$sr_have_glibmm268" = xyes],
14bf3f27 455 [SR_APPEND([SR_GLIBMM_REQUIRES], ['glibmm-2.68 >= 2.68.0'])
ee9e086f
GS
456 sr_have_glibmm=yes])
457AS_IF([test "x$sr_have_glibmm" = xyes],
458 [AC_SUBST(SR_GLIBMM_REQUIRES)],
26b67f11 459 [SR_APPEND([sr_cxx_missing], [', '], [glibmm])])
1f61c22f
DE
460
461# The C++ bindings use Doxygen to parse libsigrok symbols.
462AC_CHECK_PROG([HAVE_DOXYGEN], [doxygen], [yes], [no])
26b67f11
DE
463AS_IF([test "x$HAVE_DOXYGEN" != xyes],
464 [SR_APPEND([sr_cxx_missing], [', '], [Doxygen])])
1f61c22f 465
9d8f363d
MC
466# Link C++ code with gnustl_shared if it exists (Android)
467SR_SEARCH_LIBS([SR_EXTRA_CXX_LIBS], [__cxa_throw], [gnustl_shared])
468
1f61c22f
DE
469# Python is needed for the C++ bindings.
470AM_PATH_PYTHON([2.7],
471 [HAVE_PYTHON=yes],
26b67f11
DE
472 [HAVE_PYTHON=no
473 SR_APPEND([sr_cxx_missing], [', '], [Python])])
1f61c22f
DE
474
475AS_IF([test -z "$sr_cxx_missing"],
476 [BINDINGS_CXX=$enable_cxx], [BINDINGS_CXX=no])
477AM_CONDITIONAL([BINDINGS_CXX], [test "x$BINDINGS_CXX" = xyes])
478
479# C++ bindings want stoi and stod.
480AM_COND_IF([BINDINGS_CXX], [
481 AC_CACHE_CHECK([for stoi and stod], [sr_cv_have_stoi_stod],
482 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string>]],
483 [[(void) std::stoi("1"); (void) std::stod("1.0");]])],
484 [sr_cv_have_stoi_stod=yes], [sr_cv_have_stoi_stod=no])])
485 AS_IF([test "x$sr_cv_have_stoi_stod" = xyes],
486 [AC_DEFINE([HAVE_STOI_STOD], [1],
487 [Specifies whether we have the stoi and stod functions.])])
f806de18
GS
488 # In theory std::stoul() should have identical availability
489 # as std::stoi() and std::stod() have. All of them are C++11.
490 # But we play it safe here, and check support individually.
491 AC_CACHE_CHECK([for stoul], [sr_cv_have_stoul],
492 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string>]],
493 [[(void) std::stoul("1");]])],
494 [sr_cv_have_stoul=yes], [sr_cv_have_stoul=no])])
495 AS_IF([test "x$sr_cv_have_stoul" = xyes],
496 [AC_DEFINE([HAVE_STOUL], [1],
497 [Specifies whether we have the std::stoul function.])])
1f61c22f
DE
498])
499
500#######################
501## Python bindings ##
502#######################
503
26b67f11
DE
504AS_IF([test "x$BINDINGS_CXX" = xyes],
505 [sr_python_missing=],
506 [sr_python_missing='C++ bindings'])
1f61c22f 507
3d869132
DE
508# Extract major and minor version number of the Python interpreter.
509sr_pymajor=${PYTHON_VERSION%%.*}
510sr_pyminor=${PYTHON_VERSION#*.}
511
512# The Python bindings need Python development files. Check for either
513# Python 3 or Python 2 headers depending on the interpreter version.
1f61c22f 514SR_PKG_CHECK([python_dev], [SR_PKGLIBS_PYTHON],
3d869132
DE
515 [python = $PYTHON_VERSION],
516 [python$sr_pymajor = $PYTHON_VERSION],
517 [python$sr_pymajor$sr_pyminor = $PYTHON_VERSION],
518 [python-$PYTHON_VERSION = $PYTHON_VERSION])
519
26b67f11
DE
520AS_IF([test "x$sr_have_python_dev" != xyes],
521 [SR_APPEND([sr_python_missing], [', '], [Headers])])
1f61c22f
DE
522
523# PyGObject is needed for the Python bindings.
524SR_PKG_CHECK([pygobject], [SR_PKGLIBS_PYTHON], [pygobject-3.0 >= 3.0.0])
26b67f11
DE
525AS_IF([test "x$sr_have_pygobject" != xyes],
526 [SR_APPEND([sr_python_missing], [', '], [PyGObject])])
1f61c22f
DE
527
528PKG_CHECK_EXISTS([pygobject-3.0 < 3.7.91],
529 [AC_DEFINE([PYGOBJECT_FLAGS_SIGNED], [1],
530 [Whether last argument to pyg_flags_get_value() is signed.])])
531
eb2373f1
DE
532# The Python bindings need the setuptools and numpy Python modules.
533# We'll let it go through even if the AX macro wasn't found, as the
534# Python modules may still be there.
535m4_ifdef([AX_PYTHON_MODULE], [
536 AX_PYTHON_MODULE([setuptools])
537 AX_PYTHON_MODULE([numpy])
538], [
539 HAVE_PYMOD_SETUPTOOLS=yes
540 HAVE_PYMOD_NUMPY=yes
541 m4_warn([unsupported],
542 [Missing macro AX_PYTHON_MODULE: no check for setuptools and numpy])
543])
26b67f11
DE
544AS_IF([test "x$HAVE_PYMOD_SETUPTOOLS" != xyes],
545 [SR_APPEND([sr_python_missing], [', '], [setuptools])])
eb2373f1
DE
546AS_IF([test "x$HAVE_PYMOD_NUMPY" != xyes],
547 [SR_APPEND([sr_python_missing], [', '], [numpy])])
1f61c22f
DE
548
549# The Python bindings use SWIG to generate code.
c9901879 550AC_CHECK_PROGS([SWIG], [swig swig4.0 swig3.0 swig2.0])
e469259a
AJ
551AS_IF([test "x$SWIG" != x],
552 AC_MSG_CHECKING([for $SWIG version])
27272a70 553 [SWIG_VERSION=`$SWIG -version 2>&1 | sed -n 's/SWIG Version //p'`]
e469259a 554 AC_MSG_RESULT([$SWIG_VERSION]))
26b67f11
DE
555AS_IF([test "x$SWIG" = x],
556 [SR_APPEND([sr_python_missing], [', '], [SWIG])])
1f61c22f
DE
557
558AS_IF([test -z "$sr_python_missing"],
559 [BINDINGS_PYTHON=$enable_python], [BINDINGS_PYTHON=no])
560AM_CONDITIONAL([BINDINGS_PYTHON], [test "x$BINDINGS_PYTHON" = xyes])
561
27d44cf6
AJ
562#####################
563## Ruby bindings ##
564#####################
565
566AS_IF([test "x$BINDINGS_CXX" = xyes],
567 [sr_ruby_missing=],
568 [sr_ruby_missing='C++ bindings'])
569
e9227902
AJ
570AC_PATH_PROGS(RUBY, ["${RUBY-ruby}"], [])
571AS_IF([test "x$RUBY" != x],
572 AC_MSG_CHECKING([for Ruby version])
573 [RUBY_VERSION=`$RUBY -e 'puts RUBY_VERSION'`]
574 AC_MSG_RESULT([$RUBY_VERSION])
575 [RUBY_DLEXT=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG[["DLEXT"]]'`]
576 AC_SUBST(RUBY_DLEXT))
27d44cf6
AJ
577
578AS_IF([test "x$RUBY" = x],
e9227902 579 [SR_APPEND([sr_ruby_missing], [', '], [Ruby])])
27d44cf6
AJ
580
581# Extract major and minor version number of the Ruby interpreter.
582sr_rbmajor=${RUBY_VERSION%%.*}
583sr_rbminor=${RUBY_VERSION#*.}
584sr_rbminor=${sr_rbminor%%.*}
585
586# The Ruby bindings need Ruby development files.
587SR_PKG_CHECK([ruby_dev], [SR_PKGLIBS_RUBY],
339d12df
UH
588 [ruby >= 2.5.0],
589 [ruby-$sr_rbmajor.$sr_rbminor >= 2.5.0])
27d44cf6
AJ
590
591AS_IF([test "x$sr_have_ruby_dev" != xyes],
592 [SR_APPEND([sr_ruby_missing], [', '], [Headers])])
593
e469259a 594# The Ruby bindings use SWIG >= 3.0.8 to generate code.
27d44cf6 595AS_IF([test "x$SWIG" = x],
e469259a
AJ
596 [SR_APPEND([sr_ruby_missing], [', '], [SWIG])],
597 [AS_VERSION_COMPARE($SWIG_VERSION, "3.0.8",
598 [SR_APPEND([sr_ruby_missing], [', '], ['SWIG >= 3.0.8'])])])
27d44cf6
AJ
599
600AS_IF([test -z "$sr_ruby_missing"],
601 [BINDINGS_RUBY=$enable_ruby], [BINDINGS_RUBY=no])
602AM_CONDITIONAL([BINDINGS_RUBY], [test "x$BINDINGS_RUBY" = xyes])
27d44cf6 603
1f61c22f
DE
604####################
605## Java bindings ##
606####################
607
26b67f11
DE
608AS_IF([test "x$BINDINGS_CXX" = xyes],
609 [sr_java_missing=],
610 [sr_java_missing='C++ bindings'])
1f61c22f
DE
611
612# The Java bindings use SWIG to generate code.
26b67f11
DE
613AS_IF([test "x$SWIG" = x],
614 [SR_APPEND([sr_java_missing], [', '], [SWIG])])
4f10853e 615
9fcf4d0b 616# Find Java compiler and JNI includes for Java bindings.
9fcf4d0b 617AC_CHECK_PROG([HAVE_JAVAC], [javac], [yes], [no])
26b67f11
DE
618AS_IF([test "x$HAVE_JAVAC" = xno],
619 [SR_APPEND([sr_java_missing], [', '], [JavaC])])
1f61c22f
DE
620
621AC_ARG_WITH([jni-include-path],
622 [AS_HELP_STRING([[--with-jni-include-path=DIR-LIST (space-separated)]],
623 [specify JNI include directories [default=detect]])],
624 [JNI_INCLUDE_DIRS=" $withval"], [JNI_INCLUDE_DIRS=])
625
626JNI_CPPFLAGS=
627AS_IF([test "x$enable_java$HAVE_JAVAC" = xyesyes], [
9fcf4d0b 628 AX_PROG_JAVAC
1f61c22f
DE
629 AS_IF([test -z "$JNI_INCLUDE_DIRS" && test "x$cross_compiling" != xyes], [
630 ## Work around the totally broken logic in AX_JNI_INCLUDE_DIR:
631 ## If we can find jni.h without any special search path, skip
632 ## the execution of the broken macro to increase our chances of
633 ## success.
634 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <jni.h>]], [])],,
635 [AX_JNI_INCLUDE_DIR])
636 ])
637])
638for sr_dir in $JNI_INCLUDE_DIRS
639do
26b67f11 640 SR_APPEND([JNI_CPPFLAGS], ["-I$sr_dir"])
1f61c22f
DE
641done
642AC_SUBST([JNI_CPPFLAGS])
643
644sr_save_cppflags=$CPPFLAGS
26b67f11
DE
645SR_APPEND([CPPFLAGS], [$JNI_CPPFLAGS])
646AC_CHECK_HEADER([jni.h],,
647 [SR_APPEND([sr_java_missing], [', '], ['JNI headers'])])
1f61c22f
DE
648CPPFLAGS=$sr_save_cppflags
649
650AS_IF([test -z "$sr_java_missing"],
651 [BINDINGS_JAVA=$enable_java], [BINDINGS_JAVA=no])
652AM_CONDITIONAL([BINDINGS_JAVA], [test "x$BINDINGS_JAVA" = xyes])
653
654##############################
655## Finalize configuration ##
656##############################
657
658# Add mandatory dependencies to module list.
a6dc3dac 659SR_APPEND([SR_PKGLIBS], ['libzip >= 0.10'])
1f61c22f
DE
660AC_SUBST([SR_PKGLIBS])
661
662# Retrieve the compile and link flags for all modules combined.
663# Also, bail out at this point if any module dependency is not met.
664PKG_CHECK_MODULES([LIBSIGROK], [glib-2.0 >= 2.32.0 $SR_PKGLIBS])
65489c1a 665PKG_CHECK_MODULES([TESTS], [$SR_PKGLIBS_TESTS glib-2.0 $SR_PKGLIBS])
1f61c22f 666
da0763d0
DE
667# SR_PKGLIBS_CXX may be empty, so only invoke these checks when
668# the C++ bindings are enabled.
669AM_COND_IF([BINDINGS_CXX], [
670 PKG_CHECK_MODULES([LIBSIGROKCXX], [$SR_PKGLIBS_CXX])
671 PKG_CHECK_MODULES([PYSIGROK], [$SR_PKGLIBS_PYTHON $SR_PKGLIBS_CXX])
27d44cf6 672 PKG_CHECK_MODULES([RBSIGROK], [$SR_PKGLIBS_RUBY $SR_PKGLIBS_CXX], [AC_SUBST(RBSIGROK_EXTDIR, "lib/$($PKG_CONFIG --variable=sitearch $SR_PKGLIBS_RUBY)/$($PKG_CONFIG --variable=RUBY_BASE_NAME $SR_PKGLIBS_RUBY)/vendor_ruby/$($PKG_CONFIG --variable=ruby_version $SR_PKGLIBS_RUBY)")])
da0763d0 673])
c1adbb1e
DE
674
675# Check for specific libusb features, now that we know the CFLAGS.
e1a712ca 676# Also check for version dependent libftdi features.
c1adbb1e
DE
677AC_LANG([C])
678sr_save_cflags=$CFLAGS
a6dc3dac 679sr_save_libs=$LIBS
c1adbb1e 680CFLAGS="$LIBSIGROK_CFLAGS $CFLAGS"
a6dc3dac 681LIBS="$LIBSIGROK_LIBS $LIBS"
c1adbb1e
DE
682AC_CHECK_TYPES([libusb_os_handle],
683 [sr_have_libusb_os_handle=yes], [sr_have_libusb_os_handle=no],
684 [[#include <libusb.h>]])
a6dc3dac 685AC_CHECK_FUNCS([zip_discard])
e1a712ca 686AC_CHECK_FUNCS([ftdi_tciflush ftdi_tcoflush ftdi_tcioflush])
a6dc3dac 687LIBS=$sr_save_libs
c1adbb1e 688CFLAGS=$sr_save_cflags
a6dc3dac 689
1f61c22f
DE
690sr_glib_version=`$PKG_CONFIG --modversion glib-2.0 2>&AS_MESSAGE_LOG_FD`
691sr_libzip_version=`$PKG_CONFIG --modversion libzip 2>&AS_MESSAGE_LOG_FD`
e4c9ea56 692sr_zlib_version=`$PKG_CONFIG --modversion zlib 2>&AS_MESSAGE_LOG_FD`
1f61c22f 693
2cbde151
DE
694AC_DEFINE_UNQUOTED([CONF_LIBZIP_VERSION], ["$sr_libzip_version"],
695 [Build-time version of libzip.])
e4c9ea56
GS
696AC_DEFINE_UNQUOTED([CONF_ZLIB_VERSION], ["$sr_zlib_version"],
697 [Build-time version of zlib.])
2cbde151
DE
698AC_DEFINE_UNQUOTED([CONF_HOST], ["$host"],
699 [The canonical host libsigrok will run on.])
1f61c22f 700
b2478a23 701AC_CONFIG_FILES([Makefile libsigrok.pc bindings/cxx/libsigrokcxx.pc])
826938d8
UH
702
703AC_OUTPUT
704
1f61c22f 705# Prepare bindings report messages.
d37c7109
DE
706m4_define([SR_PREPARE_BINDING_REPORT], [
707 sr_report_$1=
26b67f11 708 test -z "$sr_$1_missing" || sr_report_$1=" (missing: $sr_$1_missing)"
d37c7109 709 test "x$enable_$1" = xyes || sr_report_$1=' (disabled)'
1f61c22f 710])
27d44cf6 711m4_map_args([SR_PREPARE_BINDING_REPORT], [cxx], [python], [ruby], [java])
45aed072 712
1f61c22f
DE
713cat >&AS_MESSAGE_FD <<_EOF
714
715libsigrok configuration summary:
716 - Package version................. $SR_PACKAGE_VERSION
5bce22ac 717 - Version string suffix .......... $SR_PACKAGE_VERSION_STRING_SUFFIX
1f61c22f
DE
718 - Library ABI version............. $SR_LIB_VERSION
719 - Prefix.......................... $prefix
720 - Building on..................... $build
721 - Building for.................... $host
54d8d22a 722 - Building shared / static........ $enable_shared / $enable_static
4512ccd3
DE
723
724Compile configuration:
6aa7fcf1 725 - C compiler...................... $CC
4512ccd3 726 - C compiler version.............. $sr_cc_version
6aa7fcf1 727 - C compiler flags................ $CFLAGS
b84a7331 728 - Additional C compiler flags..... $SR_EXTRA_CFLAGS
4cf2f34f 729 - C compiler warnings............. $SR_WFLAGS
6aa7fcf1 730 - C++ compiler.................... $CXX
4512ccd3 731 - C++ compiler version............ $sr_cxx_version
6aa7fcf1 732 - C++ compiler flags.............. $CXXFLAGS
4cf2f34f 733 - C++ compiler warnings........... $SR_WXXFLAGS
f5066b2b 734 - Linker flags.................... $LDFLAGS
1f61c22f
DE
735
736Detected libraries (required):
965d6889 737 - glib-2.0 >= 2.32.0.............. $sr_glib_version
a6dc3dac 738 - libzip >= 0.10.................. $sr_libzip_version
1f61c22f
DE
739
740Detected libraries (optional):
741$sr_pkglibs_summary
c5f179a9 742Enabled hardware drivers:
d37c7109 743$sr_driver_summary
1df81f4b
GS
744Enabled serial communication transports:
745 - serial comm ................... $sr_have_serial_comm
746 - libserialport ................. $sr_have_libserialport
4417074c 747 - hidapi ........................ $sr_have_libhidapi
f085705f
GS
748 - bluetooth ..................... $sr_have_bluetooth
749 - bluez ......................... $sr_have_libbluez
1df81f4b 750
1f61c22f
DE
751Enabled SCPI backends:
752 - TCP............................. yes
a3fe36d0
SA
753 - SunRPC ......................... $sr_cv_have_sunrpc
754 - TI-RPC ......................... $sr_cv_have_tirpc
1f61c22f 755 - RPC............................. $sr_cv_have_rpc
1df81f4b 756 - serial.......................... $sr_have_serial_comm
1f61c22f
DE
757 - VISA............................ $sr_have_librevisa
758 - GPIB............................ $sr_have_libgpib
759 - USBTMC.......................... $sr_have_libusb
760
761Enabled language bindings:
762 - C++............................. $BINDINGS_CXX$sr_report_cxx
763 - Python.......................... $BINDINGS_PYTHON$sr_report_python
27d44cf6 764 - Ruby............................ $BINDINGS_RUBY$sr_report_ruby
1f61c22f 765 - Java............................ $BINDINGS_JAVA$sr_report_java
826938d8 766
1f61c22f 767_EOF
9bf09301
UH
768
769# Emit a warning if the C++ bindings are not being built.
770AM_COND_IF([BINDINGS_CXX], [], [
771cat >&AS_MESSAGE_FD <<_EOF
772===============================================================================
773WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
774===============================================================================
775=== ===
776=== The libsigrok C++ bindings are not being built since you ===
777=== are missing one or more dependencies (see above)! ===
778=== ===
779=== This means you won't be able to compile frontends that require ===
780=== the C++ bindings (such as PulseView)! You also won't be able to build ===
781=== other bindings and frontends using those (such as sigrok-meter)! ===
782=== ===
783===============================================================================
784WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
785===============================================================================
786
787_EOF
788])