]> sigrok.org Git - libsigrok.git/blame_incremental - configure.ac
udev: Add Siglent SDS1104X-E VID/PID.
[libsigrok.git] / configure.ac
... / ...
CommitLineData
1##
2## This file is part of the libsigrok project.
3##
4## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
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
21# We require at least autoconf 2.63 (AC_INIT format changed there).
22AC_PREREQ([2.63])
23
24AC_INIT([libsigrok], [0.6.0],
25 [sigrok-devel@lists.sourceforge.net],
26 [libsigrok], [http://www.sigrok.org])
27AC_CONFIG_MACRO_DIR([m4])
28AC_CONFIG_AUX_DIR([autostuff])
29AC_CONFIG_HEADERS([config.h include/libsigrok/version.h])
30
31# We require at least automake 1.11 (needed for 'silent rules').
32AM_INIT_AUTOMAKE([1.11 -Wall -Werror no-define nostdinc subdir-objects check-news color-tests])
33AM_SILENT_RULES([yes])
34m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
35
36AC_CANONICAL_HOST
37
38# Checks for programs.
39AC_PROG_CC
40AC_PROG_CXX
41AC_PROG_INSTALL
42AC_PROG_LN_S
43
44# Required for per-target flags or subdir-objects with C sources.
45AM_PROG_CC_C_O
46
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
53# Get compiler versions.
54SR_PROG_VERSION([$CC], [sr_cc_version])
55SR_PROG_VERSION([$CXX], [sr_cxx_version])
56
57# Check for optional make features.
58SR_PROG_MAKE_ORDER_ONLY
59
60# Initialize libtool.
61LT_INIT
62
63# Set up the libsigrok version defines.
64SR_PKG_VERSION_SET([SR_PACKAGE_VERSION], [AC_PACKAGE_VERSION])
65
66# Library version for libsigrok (NOT the same as the package version).
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
70# Format: current:revision:age.
71SR_LIB_VERSION_SET([SR_LIB_VERSION], [4:0:0])
72
73AM_CONDITIONAL([WIN32], [test -z "${host_os##mingw*}" || test -z "${host_os##cygwin*}"])
74
75#############################
76## Optional dependencies ##
77#############################
78
79AC_LANG([C])
80
81# Initialize pkg-config.
82# We require at least 0.22, as "Requires.private" behaviour changed there.
83PKG_PROG_PKG_CONFIG([0.22])
84
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.
89# These are used to derive the compiler flags and for the "Requires.private"
90# field in the generated libsigrok.pc file.
91SR_VAR_OPT_PKG([SR_PKGLIBS], [sr_deps_avail])
92SR_PKGLIBS_TESTS=
93SR_PKGLIBS_CXX=
94SR_PKGLIBS_PYTHON=
95SR_PKGLIBS_RUBY=
96SR_EXTRA_LIBS=
97SR_EXTRA_CXX_LIBS=
98
99SR_ARG_OPT_PKG([libserialport], [LIBSERIALPORT], ,
100 [libserialport >= 0.1.1])
101
102SR_ARG_OPT_PKG([libftdi], [LIBFTDI], , [libftdi1 >= 1.0])
103
104# pkg-config file names: MinGW/MacOSX: hidapi; Linux: hidapi-hidraw/-libusb
105SR_ARG_OPT_PKG([libhidapi], [LIBHIDAPI], ,
106 [hidapi >= 0.8.0], [hidapi-hidraw >= 0.8.0], [hidapi-libusb >= 0.8.0])
107
108SR_ARG_OPT_PKG([libbluez], [LIBBLUEZ], , [bluez >= 4.0])
109
110# FreeBSD comes with an "integrated" libusb-1.0-style USB API.
111# This means libusb-1.0 is always available; no need to check for it.
112# On Windows, require the latest version we can get our hands on,
113# until the new generic event handling has seen an official release.
114AS_CASE([$host_os],
115 [freebsd*], [sr_libusb_req='libusb-1.0' sr_have_libusb=yes],
116 [mingw*], [sr_libusb_req='libusb-1.0 >= 1.0.20'],
117 [sr_libusb_req='libusb-1.0 >= 1.0.16'])
118
119SR_ARG_OPT_PKG([libusb], [LIBUSB_1_0], [NEED_USB],
120 [$sr_libusb_req])
121
122SR_ARG_OPT_PKG([librevisa], [LIBREVISA], [NEED_VISA],
123 [librevisa >= 0.0.20130412])
124
125SR_ARG_OPT_PKG([libgpib], [LIBGPIB], [NEED_GPIB],
126 [libgpib])
127
128SR_ARG_OPT_CHECK([libieee1284], [LIBIEEE1284],, [
129 sr_save_LIBS=$LIBS
130 LIBS="-lieee1284 $LIBS"
131 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <ieee1284.h>]],
132 [[(void) ieee1284_open(0, 0, 0);]])],
133 [sr_have_libieee1284=yes], [sr_have_libieee1284=no])
134 LIBS=$sr_save_LIBS
135])
136AS_IF([test "x$sr_have_libieee1284" = xyes],
137 [SR_PREPEND([SR_EXTRA_LIBS], [-lieee1284])])
138
139# See if any of the (potentially platform specific) libs are available
140# which provide some means of Bluetooth communication.
141AS_IF([test "x$sr_have_libbluez" = xyes],
142 sr_have_bluetooth=yes, sr_have_bluetooth=no)
143AS_IF([test "x$sr_have_bluetooth" = xyes],
144 [AC_DEFINE([HAVE_BLUETOOTH], [1], [Specifies whether Bluetooth communication is supported.])])
145
146AS_IF([test "x$sr_have_libserialport" = xyes -o "x$sr_have_libhidapi" = xyes -o "x$sr_have_bluetooth" = xyes],
147 sr_have_serial_comm=yes, sr_have_serial_comm=no)
148AS_IF([test "x$sr_have_serial_comm" = xyes],
149 [AC_DEFINE([HAVE_SERIAL_COMM], [1], [Specifies whether serial communication is supported.])])
150AS_IF([test "x$sr_have_serial_comm" = xyes],
151 [SR_APPEND([sr_deps_avail], [serial_comm])])
152AM_CONDITIONAL([NEED_SERIAL], [test "x$sr_have_serial_comm" = xyes])
153
154######################
155## Feature checks ##
156######################
157
158# The Check unit testing framework is optional. Disable if not found.
159SR_PKG_CHECK([check], [SR_PKGLIBS_TESTS], [check >= 0.9.4])
160AM_CONDITIONAL([HAVE_CHECK], [test "x$sr_have_check" = xyes])
161
162# Enable the C99 standard if possible, and enforce the use
163# of SR_API to explicitly mark all public API functions.
164SR_EXTRA_CFLAGS=
165SR_CHECK_COMPILE_FLAGS([SR_EXTRA_CFLAGS], [C99], [-std=c99 -c99 -AC99 -qlanglvl=extc99])
166SR_CHECK_COMPILE_FLAGS([SR_EXTRA_CFLAGS], [visibility], [-fvisibility=hidden])
167
168SR_ARG_ENABLE_WARNINGS([SR_WFLAGS], [-Wall], [-Wall -Wextra -Wmissing-prototypes])
169
170# Check host characteristics.
171AC_SYS_LARGEFILE
172AC_C_BIGENDIAN
173
174AC_CHECK_HEADERS([sys/mman.h], [SR_APPEND([sr_deps_avail], [sys_mman_h])])
175AC_CHECK_HEADERS([sys/ioctl.h], [SR_APPEND([sr_deps_avail], [sys_ioctl_h])])
176AC_CHECK_HEADERS([sys/timerfd.h], [SR_APPEND([sr_deps_avail], [sys_timerfd_h])])
177
178# We need to link against the Winsock2 library for SCPI over TCP.
179AS_CASE([$host_os], [mingw*], [SR_PREPEND([SR_EXTRA_LIBS], [-lws2_32])])
180
181# libm (the standard math library) is always needed.
182SR_SEARCH_LIBS([SR_EXTRA_LIBS], [pow], [m])
183
184# RPC is only needed for VXI support.
185AC_CACHE_CHECK([for RPC support], [sr_cv_have_rpc],
186 [AC_LINK_IFELSE([AC_LANG_PROGRAM(
187 [[#include <rpc/rpc.h>]m4_newline[CLIENT *rpc_test(void);]],
188 [[(void) clnt_create("", 0, 0, "");]])],
189 [sr_cv_have_rpc=yes], [sr_cv_have_rpc=no])])
190AS_IF([test "x$sr_cv_have_rpc" = xyes],
191 [AC_DEFINE([HAVE_RPC], [1], [Specifies whether we have RPC support.])])
192# VXI support is only compiled if RPC support was found.
193AM_CONDITIONAL([NEED_RPC], [test "x$sr_cv_have_rpc" = xyes])
194
195# Check for compiler support of 128 bit integers
196AC_CHECK_TYPES([__int128_t, __uint128_t], [], [], [])
197
198# Availability of bt_put_le16() depends on the bluez library version.
199AC_CACHE_CHECK([for bt_put_le16], [sr_cv_have_btputle16],
200 [AC_LINK_IFELSE([AC_LANG_PROGRAM(
201 [[#include <bluetooth/bluetooth.h>]],
202 [[bt_put_le16(0, (void *)0);]])],
203 [sr_cv_have_btputle16=yes], [sr_cv_have_btputle16=no])])
204AS_IF([test "x$sr_cv_have_btputle16" = xyes],
205 [AC_DEFINE([HAVE_BT_PUT_LE16], [1], [Specifies whether we have bt_put_le16().])])
206
207########################
208## Hardware drivers ##
209########################
210
211# Keep track of all drivers so we can list them at the end.
212SR_VAR_SUMMARY([sr_driver_summary])
213
214# Check whether the sr_deps_avail list contains all of the arguments.
215# Unavailable dependencies are collected in sr_deps_missing.
216sr_check_driver_deps() {
217 sr_deps_missing=
218 for sr_dep
219 do
220 AS_CASE([" $sr_deps_avail "], [*" $sr_dep "*],,
221 [SR_APPEND([sr_deps_missing], [', '], [$sr_dep])])
222 done
223 test -z "$sr_deps_missing" || return 1
224}
225
226AC_ARG_ENABLE([all-drivers],
227 [AS_HELP_STRING([--enable-all-drivers],
228 [enable all drivers by default [default=yes]])],
229 [], [enable_all_drivers=yes])
230
231## _SR_DRIVER(Device name, driver-name, var-name, [dependencies...])
232m4_define([_SR_DRIVER], [
233 AC_ARG_ENABLE([$2],
234 [AS_HELP_STRING([--enable-$2], [enable $1 support])],
235 [$3=$enableval], [$3=$enable_all_drivers])
236
237 AS_IF([test "x[$]$3" = xyes], [sr_hw_info=yes[]m4_ifval([$4], [
238 sr_check_driver_deps $4 \
239 || $3=no sr_hw_info="no (missing: $sr_deps_missing)"
240 ])], [sr_hw_info='no (disabled)'])
241 sr_driver_summary_append "$2" "$sr_hw_info"
242
243 AM_CONDITIONAL([$3], [test "x[$]$3" = xyes])
244 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.])])
245])
246
247## SR_DRIVER(Device name, driver-name, [dependencies...])
248m4_define([SR_DRIVER],
249 [_SR_DRIVER([$1], [$2], m4_expand([AS_TR_CPP([HW_$2])]), [$3])])
250
251SR_DRIVER([Agilent DMM], [agilent-dmm], [serial_comm])
252SR_DRIVER([Appa 55II], [appa-55ii], [serial_comm])
253SR_DRIVER([Arachnid Labs Re:load Pro], [arachnid-labs-re-load-pro], [serial_comm])
254SR_DRIVER([ASIX SIGMA/SIGMA2], [asix-sigma], [libftdi])
255SR_DRIVER([Atten PPS3xxx], [atten-pps3xxx], [serial_comm])
256SR_DRIVER([BayLibre ACME], [baylibre-acme], [sys_timerfd_h])
257SR_DRIVER([BeagleLogic], [beaglelogic], [sys_mman_h sys_ioctl_h])
258SR_DRIVER([Brymen DMM], [brymen-dmm], [serial_comm])
259SR_DRIVER([CEM DT-885x], [cem-dt-885x], [serial_comm])
260SR_DRIVER([Center 3xx], [center-3xx], [serial_comm])
261SR_DRIVER([ChronoVu LA], [chronovu-la], [libusb libftdi])
262SR_DRIVER([Colead SLM], [colead-slm], [serial_comm])
263SR_DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu], [serial_comm])
264SR_DRIVER([demo], [demo])
265SR_DRIVER([DreamSourceLab DSLogic], [dreamsourcelab-dslogic], [libusb])
266SR_DRIVER([Fluke 45], [fluke-45])
267SR_DRIVER([Fluke DMM], [fluke-dmm], [serial_comm])
268SR_DRIVER([FTDI LA], [ftdi-la], [libusb libftdi])
269SR_DRIVER([fx2lafw], [fx2lafw], [libusb])
270SR_DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x], [serial_comm])
271SR_DRIVER([GW Instek GDS-800], [gwinstek-gds-800], [serial_comm])
272SR_DRIVER([GW Instek GPD], [gwinstek-gpd], [serial_comm])
273SR_DRIVER([Hameg HMO], [hameg-hmo], [serial_comm])
274SR_DRIVER([Hantek 4032L], [hantek-4032l], [libusb])
275SR_DRIVER([Hantek 6xxx], [hantek-6xxx], [libusb])
276SR_DRIVER([Hantek DSO], [hantek-dso], [libusb])
277SR_DRIVER([HP 3457A], [hp-3457a])
278SR_DRIVER([HP 3478A], [hp-3478a], [libgpib])
279SR_DRIVER([Hung-Chang DSO-2100], [hung-chang-dso-2100], [libieee1284])
280SR_DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2], [libusb])
281SR_DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus], [libftdi])
282SR_DRIVER([IPDBG LA], [ipdbg-la])
283SR_DRIVER([Kecheng KC-330B], [kecheng-kc-330b], [libusb])
284SR_DRIVER([KERN scale], [kern-scale], [serial_comm])
285SR_DRIVER([Korad KAxxxxP], [korad-kaxxxxp], [serial_comm])
286SR_DRIVER([Lascar EL-USB], [lascar-el-usb], [libusb])
287SR_DRIVER([LeCroy LogicStudio], [lecroy-logicstudio], [libusb])
288SR_DRIVER([LeCroy X-Stream], [lecroy-xstream])
289SR_DRIVER([Manson HCS-3xxx], [manson-hcs-3xxx], [serial_comm])
290SR_DRIVER([maynuo-m97], [maynuo-m97])
291SR_DRIVER([MIC 985xx], [mic-985xx], [serial_comm])
292SR_DRIVER([Microchip PICkit2], [microchip-pickit2], [libusb])
293SR_DRIVER([Motech LPS 30x], [motech-lps-30x], [serial_comm])
294SR_DRIVER([Norma DMM], [norma-dmm], [serial_comm])
295SR_DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer], [serial_comm])
296SR_DRIVER([PCE PCE-322A], [pce-322a], [serial_comm])
297SR_DRIVER([Pipistrello-OLS], [pipistrello-ols], [libftdi])
298SR_DRIVER([RDTech DPSxxxx/DPHxxxx], [rdtech-dps], [serial_comm])
299SR_DRIVER([Rigol DS], [rigol-ds])
300SR_DRIVER([Rohde&Schwarz SME-0x], [rohde-schwarz-sme-0x], [serial_comm])
301SR_DRIVER([Saleae Logic16], [saleae-logic16], [libusb])
302SR_DRIVER([Saleae Logic Pro], [saleae-logic-pro], [libusb])
303SR_DRIVER([SCPI DMM], [scpi-dmm])
304SR_DRIVER([SCPI PPS], [scpi-pps])
305SR_DRIVER([serial DMM], [serial-dmm], [serial_comm])
306SR_DRIVER([serial LCR], [serial-lcr], [serial_comm])
307SR_DRIVER([Siglent SDS], [siglent-sds])
308SR_DRIVER([Sysclk LWLA], [sysclk-lwla], [libusb])
309SR_DRIVER([Sysclk SLA5032], [sysclk-sla5032], [libusb])
310SR_DRIVER([Teleinfo], [teleinfo], [serial_comm])
311SR_DRIVER([Testo], [testo], [libusb])
312SR_DRIVER([Tondaj SL-814], [tondaj-sl-814], [serial_comm])
313SR_DRIVER([UNI-T DMM], [uni-t-dmm], [libusb])
314SR_DRIVER([UNI-T UT32x], [uni-t-ut32x], [serial_comm])
315SR_DRIVER([Yokogawa DL/DLM], [yokogawa-dlm])
316SR_DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube], [libusb])
317SR_DRIVER([ZKETECH EBD-USB], [zketech-ebd-usb], [serial_comm])
318
319###############################
320## Language bindings setup ##
321###############################
322
323AC_LANG([C++])
324SR_ARG_ENABLE_WARNINGS([SR_WXXFLAGS], [-Wall], [-Wall -Wextra])
325
326AC_ARG_ENABLE([bindings],
327 [AS_HELP_STRING([--enable-bindings], [build language bindings [default=yes]])],
328 [], [enable_bindings=yes])
329
330AC_ARG_ENABLE([cxx],
331 [AS_HELP_STRING([--enable-cxx], [build C++ bindings [default=yes]])],
332 [], [enable_cxx=$enable_bindings])
333
334AC_ARG_ENABLE([python],
335 [AS_HELP_STRING([--enable-python], [build Python bindings [default=yes]])],
336 [], [enable_python=$enable_bindings])
337
338AC_ARG_ENABLE([ruby],
339 [AS_HELP_STRING([--enable-ruby], [build Ruby bindings [default=yes]])],
340 [], [enable_ruby=$enable_bindings])
341
342AC_ARG_ENABLE([java],
343 [AS_HELP_STRING([--enable-java], [build Java bindings [default=yes]])],
344 [], [enable_java=$enable_bindings])
345
346####################
347## C++ bindings ##
348####################
349
350sr_cxx_missing=
351
352# Check if the C++ compiler supports the C++11 standard.
353AX_CXX_COMPILE_STDCXX([11], [noext], [optional])
354AS_IF([test "x$HAVE_CXX11" != x1],
355 [SR_APPEND([sr_cxx_missing], [', '], ['C++11'])])
356
357# The C++ bindings need glibmm.
358SR_PKG_CHECK([glibmm], [SR_PKGLIBS_CXX], [glibmm-2.4 >= 2.32.0])
359AS_IF([test "x$sr_have_glibmm" != xyes],
360 [SR_APPEND([sr_cxx_missing], [', '], [glibmm])])
361
362# The C++ bindings use Doxygen to parse libsigrok symbols.
363AC_CHECK_PROG([HAVE_DOXYGEN], [doxygen], [yes], [no])
364AS_IF([test "x$HAVE_DOXYGEN" != xyes],
365 [SR_APPEND([sr_cxx_missing], [', '], [Doxygen])])
366
367# Link C++ code with gnustl_shared if it exists (Android)
368SR_SEARCH_LIBS([SR_EXTRA_CXX_LIBS], [__cxa_throw], [gnustl_shared])
369
370# Python is needed for the C++ bindings.
371AM_PATH_PYTHON([2.7],
372 [HAVE_PYTHON=yes],
373 [HAVE_PYTHON=no
374 SR_APPEND([sr_cxx_missing], [', '], [Python])])
375
376AS_IF([test -z "$sr_cxx_missing"],
377 [BINDINGS_CXX=$enable_cxx], [BINDINGS_CXX=no])
378AM_CONDITIONAL([BINDINGS_CXX], [test "x$BINDINGS_CXX" = xyes])
379
380# C++ bindings want stoi and stod.
381AM_COND_IF([BINDINGS_CXX], [
382 AC_CACHE_CHECK([for stoi and stod], [sr_cv_have_stoi_stod],
383 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string>]],
384 [[(void) std::stoi("1"); (void) std::stod("1.0");]])],
385 [sr_cv_have_stoi_stod=yes], [sr_cv_have_stoi_stod=no])])
386 AS_IF([test "x$sr_cv_have_stoi_stod" = xyes],
387 [AC_DEFINE([HAVE_STOI_STOD], [1],
388 [Specifies whether we have the stoi and stod functions.])])
389])
390
391#######################
392## Python bindings ##
393#######################
394
395AS_IF([test "x$BINDINGS_CXX" = xyes],
396 [sr_python_missing=],
397 [sr_python_missing='C++ bindings'])
398
399# Extract major and minor version number of the Python interpreter.
400sr_pymajor=${PYTHON_VERSION%%.*}
401sr_pyminor=${PYTHON_VERSION#*.}
402
403# The Python bindings need Python development files. Check for either
404# Python 3 or Python 2 headers depending on the interpreter version.
405SR_PKG_CHECK([python_dev], [SR_PKGLIBS_PYTHON],
406 [python = $PYTHON_VERSION],
407 [python$sr_pymajor = $PYTHON_VERSION],
408 [python$sr_pymajor$sr_pyminor = $PYTHON_VERSION],
409 [python-$PYTHON_VERSION = $PYTHON_VERSION])
410
411AS_IF([test "x$sr_have_python_dev" != xyes],
412 [SR_APPEND([sr_python_missing], [', '], [Headers])])
413
414# PyGObject is needed for the Python bindings.
415SR_PKG_CHECK([pygobject], [SR_PKGLIBS_PYTHON], [pygobject-3.0 >= 3.0.0])
416AS_IF([test "x$sr_have_pygobject" != xyes],
417 [SR_APPEND([sr_python_missing], [', '], [PyGObject])])
418
419PKG_CHECK_EXISTS([pygobject-3.0 < 3.7.91],
420 [AC_DEFINE([PYGOBJECT_FLAGS_SIGNED], [1],
421 [Whether last argument to pyg_flags_get_value() is signed.])])
422
423# The Python bindings need the setuptools and numpy Python modules.
424# We'll let it go through even if the AX macro wasn't found, as the
425# Python modules may still be there.
426m4_ifdef([AX_PYTHON_MODULE], [
427 AX_PYTHON_MODULE([setuptools])
428 AX_PYTHON_MODULE([numpy])
429], [
430 HAVE_PYMOD_SETUPTOOLS=yes
431 HAVE_PYMOD_NUMPY=yes
432 m4_warn([unsupported],
433 [Missing macro AX_PYTHON_MODULE: no check for setuptools and numpy])
434])
435AS_IF([test "x$HAVE_PYMOD_SETUPTOOLS" != xyes],
436 [SR_APPEND([sr_python_missing], [', '], [setuptools])])
437AS_IF([test "x$HAVE_PYMOD_NUMPY" != xyes],
438 [SR_APPEND([sr_python_missing], [', '], [numpy])])
439
440# The Python bindings use SWIG to generate code.
441AC_CHECK_PROGS([SWIG], [swig swig3.0 swig2.0])
442AS_IF([test "x$SWIG" != x],
443 AC_MSG_CHECKING([for $SWIG version])
444 [SWIG_VERSION=`$SWIG -version 2>&1 | sed -n 's/SWIG Version //p'`]
445 AC_MSG_RESULT([$SWIG_VERSION]))
446AS_IF([test "x$SWIG" = x],
447 [SR_APPEND([sr_python_missing], [', '], [SWIG])])
448
449AS_IF([test -z "$sr_python_missing"],
450 [BINDINGS_PYTHON=$enable_python], [BINDINGS_PYTHON=no])
451AM_CONDITIONAL([BINDINGS_PYTHON], [test "x$BINDINGS_PYTHON" = xyes])
452
453#####################
454## Ruby bindings ##
455#####################
456
457AS_IF([test "x$BINDINGS_CXX" = xyes],
458 [sr_ruby_missing=],
459 [sr_ruby_missing='C++ bindings'])
460
461AC_PATH_PROGS(RUBY, ["${RUBY-ruby}"], [])
462AS_IF([test "x$RUBY" != x],
463 AC_MSG_CHECKING([for Ruby version])
464 [RUBY_VERSION=`$RUBY -e 'puts RUBY_VERSION'`]
465 AC_MSG_RESULT([$RUBY_VERSION])
466 [RUBY_DLEXT=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG[["DLEXT"]]'`]
467 AC_SUBST(RUBY_DLEXT))
468
469AS_IF([test "x$RUBY" = x],
470 [SR_APPEND([sr_ruby_missing], [', '], [Ruby])])
471
472# Extract major and minor version number of the Ruby interpreter.
473sr_rbmajor=${RUBY_VERSION%%.*}
474sr_rbminor=${RUBY_VERSION#*.}
475sr_rbminor=${sr_rbminor%%.*}
476
477# The Ruby bindings need Ruby development files.
478SR_PKG_CHECK([ruby_dev], [SR_PKGLIBS_RUBY],
479 [ruby],
480 [ruby-$sr_rbmajor.$sr_rbminor])
481
482AS_IF([test "x$sr_have_ruby_dev" != xyes],
483 [SR_APPEND([sr_ruby_missing], [', '], [Headers])])
484
485# The Ruby bindings use SWIG >= 3.0.8 to generate code.
486AS_IF([test "x$SWIG" = x],
487 [SR_APPEND([sr_ruby_missing], [', '], [SWIG])],
488 [AS_VERSION_COMPARE($SWIG_VERSION, "3.0.8",
489 [SR_APPEND([sr_ruby_missing], [', '], ['SWIG >= 3.0.8'])])])
490
491AS_IF([test -z "$sr_ruby_missing"],
492 [BINDINGS_RUBY=$enable_ruby], [BINDINGS_RUBY=no])
493AM_CONDITIONAL([BINDINGS_RUBY], [test "x$BINDINGS_RUBY" = xyes])
494
495####################
496## Java bindings ##
497####################
498
499AS_IF([test "x$BINDINGS_CXX" = xyes],
500 [sr_java_missing=],
501 [sr_java_missing='C++ bindings'])
502
503# The Java bindings use SWIG to generate code.
504AS_IF([test "x$SWIG" = x],
505 [SR_APPEND([sr_java_missing], [', '], [SWIG])])
506
507# Find Java compiler and JNI includes for Java bindings.
508AC_CHECK_PROG([HAVE_JAVAC], [javac], [yes], [no])
509AS_IF([test "x$HAVE_JAVAC" = xno],
510 [SR_APPEND([sr_java_missing], [', '], [JavaC])])
511
512AC_ARG_WITH([jni-include-path],
513 [AS_HELP_STRING([[--with-jni-include-path=DIR-LIST (space-separated)]],
514 [specify JNI include directories [default=detect]])],
515 [JNI_INCLUDE_DIRS=" $withval"], [JNI_INCLUDE_DIRS=])
516
517JNI_CPPFLAGS=
518AS_IF([test "x$enable_java$HAVE_JAVAC" = xyesyes], [
519 AX_PROG_JAVAC
520 AS_IF([test -z "$JNI_INCLUDE_DIRS" && test "x$cross_compiling" != xyes], [
521 ## Work around the totally broken logic in AX_JNI_INCLUDE_DIR:
522 ## If we can find jni.h without any special search path, skip
523 ## the execution of the broken macro to increase our chances of
524 ## success.
525 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <jni.h>]], [])],,
526 [AX_JNI_INCLUDE_DIR])
527 ])
528])
529for sr_dir in $JNI_INCLUDE_DIRS
530do
531 SR_APPEND([JNI_CPPFLAGS], ["-I$sr_dir"])
532done
533AC_SUBST([JNI_CPPFLAGS])
534
535sr_save_cppflags=$CPPFLAGS
536SR_APPEND([CPPFLAGS], [$JNI_CPPFLAGS])
537AC_CHECK_HEADER([jni.h],,
538 [SR_APPEND([sr_java_missing], [', '], ['JNI headers'])])
539CPPFLAGS=$sr_save_cppflags
540
541AS_IF([test -z "$sr_java_missing"],
542 [BINDINGS_JAVA=$enable_java], [BINDINGS_JAVA=no])
543AM_CONDITIONAL([BINDINGS_JAVA], [test "x$BINDINGS_JAVA" = xyes])
544
545##############################
546## Finalize configuration ##
547##############################
548
549# Add mandatory dependencies to module list.
550SR_APPEND([SR_PKGLIBS], ['libzip >= 0.10'])
551AC_SUBST([SR_PKGLIBS])
552
553# Retrieve the compile and link flags for all modules combined.
554# Also, bail out at this point if any module dependency is not met.
555PKG_CHECK_MODULES([LIBSIGROK], [glib-2.0 >= 2.32.0 $SR_PKGLIBS])
556PKG_CHECK_MODULES([TESTS], [$SR_PKGLIBS_TESTS glib-2.0 $SR_PKGLIBS])
557
558# SR_PKGLIBS_CXX may be empty, so only invoke these checks when
559# the C++ bindings are enabled.
560AM_COND_IF([BINDINGS_CXX], [
561 PKG_CHECK_MODULES([LIBSIGROKCXX], [$SR_PKGLIBS_CXX])
562 PKG_CHECK_MODULES([PYSIGROK], [$SR_PKGLIBS_PYTHON $SR_PKGLIBS_CXX])
563 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)")])
564])
565
566# Check for specific libusb features, now that we know the CFLAGS.
567AC_LANG([C])
568sr_save_cflags=$CFLAGS
569sr_save_libs=$LIBS
570CFLAGS="$LIBSIGROK_CFLAGS $CFLAGS"
571LIBS="$LIBSIGROK_LIBS $LIBS"
572AC_CHECK_TYPES([libusb_os_handle],
573 [sr_have_libusb_os_handle=yes], [sr_have_libusb_os_handle=no],
574 [[#include <libusb.h>]])
575AC_CHECK_FUNCS([zip_discard])
576LIBS=$sr_save_libs
577CFLAGS=$sr_save_cflags
578
579AM_COND_IF([NEED_USB], [AS_CASE([$sr_have_libusb_os_handle:$host_os], [no:mingw*],
580 [AC_MSG_ERROR([Windows builds require the event-abstraction branch of libusb])])])
581
582sr_glib_version=`$PKG_CONFIG --modversion glib-2.0 2>&AS_MESSAGE_LOG_FD`
583sr_libzip_version=`$PKG_CONFIG --modversion libzip 2>&AS_MESSAGE_LOG_FD`
584
585AC_DEFINE_UNQUOTED([CONF_LIBZIP_VERSION], ["$sr_libzip_version"],
586 [Build-time version of libzip.])
587AC_DEFINE_UNQUOTED([CONF_HOST], ["$host"],
588 [The canonical host libsigrok will run on.])
589
590AC_CONFIG_FILES([Makefile libsigrok.pc bindings/cxx/libsigrokcxx.pc])
591
592AC_OUTPUT
593
594# Prepare bindings report messages.
595m4_define([SR_PREPARE_BINDING_REPORT], [
596 sr_report_$1=
597 test -z "$sr_$1_missing" || sr_report_$1=" (missing: $sr_$1_missing)"
598 test "x$enable_$1" = xyes || sr_report_$1=' (disabled)'
599])
600m4_map_args([SR_PREPARE_BINDING_REPORT], [cxx], [python], [ruby], [java])
601
602cat >&AS_MESSAGE_FD <<_EOF
603
604libsigrok configuration summary:
605 - Package version................. $SR_PACKAGE_VERSION
606 - Library ABI version............. $SR_LIB_VERSION
607 - Prefix.......................... $prefix
608 - Building on..................... $build
609 - Building for.................... $host
610 - Building shared / static........ $enable_shared / $enable_static
611
612Compile configuration:
613 - C compiler...................... $CC
614 - C compiler version.............. $sr_cc_version
615 - C compiler flags................ $CFLAGS
616 - Additional C compiler flags..... $SR_EXTRA_CFLAGS
617 - C compiler warnings............. $SR_WFLAGS
618 - C++ compiler.................... $CXX
619 - C++ compiler version............ $sr_cxx_version
620 - C++ compiler flags.............. $CXXFLAGS
621 - C++ compiler warnings........... $SR_WXXFLAGS
622 - Linker flags.................... $LDFLAGS
623
624Detected libraries (required):
625 - glib-2.0 >= 2.32.0.............. $sr_glib_version
626 - libzip >= 0.10.................. $sr_libzip_version
627
628Detected libraries (optional):
629$sr_pkglibs_summary
630Enabled hardware drivers:
631$sr_driver_summary
632Enabled serial communication transports:
633 - serial comm ................... $sr_have_serial_comm
634 - libserialport ................. $sr_have_libserialport
635 - hidapi ........................ $sr_have_libhidapi
636 - bluetooth ..................... $sr_have_bluetooth
637 - bluez ......................... $sr_have_libbluez
638
639Enabled SCPI backends:
640 - TCP............................. yes
641 - RPC............................. $sr_cv_have_rpc
642 - serial.......................... $sr_have_serial_comm
643 - VISA............................ $sr_have_librevisa
644 - GPIB............................ $sr_have_libgpib
645 - USBTMC.......................... $sr_have_libusb
646
647Enabled language bindings:
648 - C++............................. $BINDINGS_CXX$sr_report_cxx
649 - Python.......................... $BINDINGS_PYTHON$sr_report_python
650 - Ruby............................ $BINDINGS_RUBY$sr_report_ruby
651 - Java............................ $BINDINGS_JAVA$sr_report_java
652
653_EOF
654
655# Emit a warning if the C++ bindings are not being built.
656AM_COND_IF([BINDINGS_CXX], [], [
657cat >&AS_MESSAGE_FD <<_EOF
658===============================================================================
659WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
660===============================================================================
661=== ===
662=== The libsigrok C++ bindings are not being built since you ===
663=== are missing one or more dependencies (see above)! ===
664=== ===
665=== This means you won't be able to compile frontends that require ===
666=== the C++ bindings (such as PulseView)! You also won't be able to build ===
667=== other bindings and frontends using those (such as sigrok-meter)! ===
668=== ===
669===============================================================================
670WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
671===============================================================================
672
673_EOF
674])