]> sigrok.org Git - libsigrok.git/blame - configure.ac
configure: Enable largefile support on 32-bit systems
[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
24138539 24AC_INIT([libsigrok], [0.4.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
6dddd902
UH
36AH_TOP([#ifndef SR_CONFIG_H
37#define SR_CONFIG_H /* To stop multiple inclusions. */])
38AH_BOTTOM([#endif /* SR_CONFIG_H */])
826938d8 39
826938d8 40# Checks for programs.
826938d8 41AC_PROG_CC
c23c8659 42AC_PROG_CXX
826938d8
UH
43AC_PROG_INSTALL
44AC_PROG_LN_S
45
bb203cde
UH
46# Required for per-target flags or subdir-objects with C sources.
47AM_PROG_CC_C_O
48
826938d8
UH
49# Initialize libtool.
50LT_INIT
51
24138539
DE
52# Set up the libsigrok version defines.
53SR_PKG_VERSION_SET([SR_PACKAGE_VERSION], [AC_PACKAGE_VERSION])
b2478a23 54
3af71f0d 55# Library version for libsigrok (NOT the same as the package version).
826938d8
UH
56# Carefully read the libtool docs before updating these numbers!
57# The algorithm for determining which number to change (and how) is nontrivial!
58# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
24138539 59SR_LIB_VERSION_SET([SR_LIB_VERSION], [2:0:0])
826938d8 60
1f61c22f
DE
61#############################
62## Optional dependencies ##
63#############################
de44e114 64
1f61c22f
DE
65# Initialize pkg-config.
66# We require at least 0.22, as "Requires.private" behaviour changed there.
67PKG_PROG_PKG_CONFIG([0.22])
bcacb863 68
1bb196e4
DE
69# Keep track of all checked modules so we can list them at the end.
70SR_PKG_CHECK_SUMMARY([sr_pkglibs_summary])
71
72# Collect the pkg-config module names of all dependencies in SR_PKGLIBS.
1f61c22f
DE
73# These are used to derive the compiler flags and for the "Requires.private"
74# field in the generated libsigrok.pc file.
1bb196e4 75SR_VAR_OPT_PKG([SR_PKGLIBS], [sr_deps_avail])
65489c1a 76SR_PKGLIBS_TESTS=
1f61c22f
DE
77SR_PKGLIBS_CXX=
78SR_PKGLIBS_PYTHON=
79
2cbde151 80SR_ARG_OPT_PKG([libserialport], [LIBSERIALPORT], [NEED_SERIAL],
1f61c22f 81 [libserialport >= 0.1.1])
1f61c22f 82
2cbde151 83SR_ARG_OPT_PKG([libftdi], [LIBFTDI],,
0ab8386a 84 [libftdi1 >= 1.0], [libftdi >= 0.16])
1f61c22f
DE
85
86# FreeBSD comes with an "integrated" libusb-1.0-style USB API.
87# This means libusb-1.0 is always available; no need to check for it.
88AS_CASE([$host], [*freebsd*], [sr_have_libusb=yes])
89
2cbde151 90SR_ARG_OPT_PKG([libusb], [LIBUSB_1_0], [NEED_USB],
1f61c22f 91 [libusb-1.0 >= 1.0.16])
c23c8659 92
2cbde151 93SR_ARG_OPT_PKG([librevisa], [LIBREVISA], [NEED_VISA],
1f61c22f 94 [librevisa >= 0.0.20130412])
d92de05a 95
2cbde151 96SR_ARG_OPT_PKG([libgpib], [LIBGPIB], [NEED_GPIB],
1f61c22f
DE
97 [libgpib])
98
99######################
100## Feature checks ##
101######################
f7740954 102
aba69262 103# The Check unit testing framework is optional. Disable if not found.
65489c1a 104SR_PKG_CHECK([check], [SR_PKGLIBS_TESTS], [check >= 0.9.4])
1f61c22f
DE
105AM_CONDITIONAL([HAVE_CHECK], [test "x$sr_have_check" = xyes])
106
107AC_LANG([C])
b84a7331 108
e662d9e8 109# Enable the C99 standard if possible, and enforce the use
b84a7331
DE
110# of SR_API to explicitly mark all public API functions.
111SR_EXTRA_CFLAGS=
e662d9e8 112SR_CHECK_COMPILE_FLAGS([SR_EXTRA_CFLAGS], [C99], [-std=c99 -c99 -AC99 -qlanglvl=extc99])
b84a7331
DE
113SR_CHECK_COMPILE_FLAGS([SR_EXTRA_CFLAGS], [visibility], [-fvisibility=hidden])
114
4cf2f34f 115SR_ARG_ENABLE_WARNINGS([SR_WFLAGS], [-Wall], [-Wall -Wextra -Wmissing-prototypes])
1f61c22f
DE
116
117# Check host characteristics.
bbb3996c 118AC_SYS_LARGEFILE
1f61c22f 119AC_C_BIGENDIAN
79bb0e97 120
1bb196e4
DE
121AC_CHECK_HEADERS([sys/mman.h], [SR_APPEND([sr_deps_avail], [sys_mman_h])])
122AC_CHECK_HEADERS([sys/ioctl.h], [SR_APPEND([sr_deps_avail], [sys_ioctl_h])])
123AC_CHECK_HEADERS([sys/timerfd.h], [SR_APPEND([sr_deps_avail], [sys_timerfd_h])])
1f61c22f 124
bc8ff24d
DE
125# We need to link against the Winsock2 library for SCPI over TCP.
126AS_CASE([$host], [*-mingw*], [SR_EXTRA_LIBS='-lws2_32'], [SR_EXTRA_LIBS=])
127
128# libm (the standard math library) is always needed.
129SR_SEARCH_LIBS([SR_EXTRA_LIBS], [pow], [m])
130
1f61c22f
DE
131# RPC is only needed for VXI support.
132AC_CACHE_CHECK([for RPC support], [sr_cv_have_rpc],
133 [AC_LINK_IFELSE([AC_LANG_PROGRAM(
134 [[#include <rpc/rpc.h>]m4_newline[CLIENT *rpc_test(void);]],
135 [[(void) clnt_create("", 0, 0, "");]])],
136 [sr_cv_have_rpc=yes], [sr_cv_have_rpc=no])])
137AS_IF([test "x$sr_cv_have_rpc" = xyes],
138 [AC_DEFINE([HAVE_RPC], [1], [Specifies whether we have RPC support.])])
139# VXI support is only compiled if RPC support was found.
140AM_CONDITIONAL([NEED_RPC], [test "x$sr_cv_have_rpc" = xyes])
141
d37c7109
DE
142########################
143## Hardware drivers ##
144########################
145
146# Keep track of all drivers so we can list them at the end.
1bb196e4 147SR_VAR_SUMMARY([sr_driver_summary])
d37c7109
DE
148
149# Check whether the sr_deps_avail list contains all of the arguments.
150# Unavailable dependencies are collected in sr_deps_missing.
151sr_check_driver_deps() {
152 sr_deps_missing=
153 for sr_dep
154 do
155 AS_CASE([" $sr_deps_avail "], [*" $sr_dep "*],,
26b67f11 156 [SR_APPEND([sr_deps_missing], [', '], [$sr_dep])])
d37c7109 157 done
4ed3d9b6 158 test -z "$sr_deps_missing" || return 1
d37c7109
DE
159}
160
161AC_ARG_ENABLE([all-drivers],
162 [AS_HELP_STRING([--enable-all-drivers],
163 [enable all drivers by default [default=yes]])],
164 [], [enable_all_drivers=yes])
165
166## _SR_DRIVER(Device name, driver-name, var-name, [dependencies...])
167m4_define([_SR_DRIVER], [
b8b727e4 168 AC_ARG_ENABLE([$2],
d37c7109
DE
169 [AS_HELP_STRING([--enable-$2], [enable $1 support])],
170 [$3=$enableval], [$3=$enable_all_drivers])
171
172 AS_IF([test "x[$]$3" = xyes], [sr_hw_info=yes[]m4_ifval([$4], [
4ed3d9b6
DE
173 sr_check_driver_deps $4 \
174 || $3=no sr_hw_info="no (missing: $sr_deps_missing)"
d37c7109 175 ])], [sr_hw_info='no (disabled)'])
1bb196e4 176 sr_driver_summary_append "$2" "$sr_hw_info"
d37c7109
DE
177
178 AM_CONDITIONAL([$3], [test "x[$]$3" = xyes])
179 AM_COND_IF([$3], [AC_DEFINE([HAVE_$3], [1], [Whether to support $1 device.])])
180])
181
182## SR_DRIVER(Device name, driver-name, [dependencies...])
183m4_define([SR_DRIVER],
184 [_SR_DRIVER([$1], [$2], m4_expand([AS_TR_CPP([HW_$2])]), [$3])])
185
186SR_DRIVER([Agilent DMM], [agilent-dmm], [libserialport])
187SR_DRIVER([Appa 55II], [appa-55ii], [libserialport])
188SR_DRIVER([ASIX SIGMA/SIGMA2], [asix-sigma], [libftdi])
189SR_DRIVER([Atten PPS3xxx], [atten-pps3xxx], [libserialport])
190SR_DRIVER([BayLibre ACME], [baylibre-acme], [sys_timerfd_h])
191SR_DRIVER([BeagleLogic], [beaglelogic], [sys_mman_h sys_ioctl_h])
192SR_DRIVER([Brymen BM86x], [brymen-bm86x], [libusb])
193SR_DRIVER([Brymen DMM], [brymen-dmm], [libserialport])
194SR_DRIVER([CEM DT-885x], [cem-dt-885x], [libserialport])
195SR_DRIVER([Center 3xx], [center-3xx], [libserialport])
196SR_DRIVER([ChronoVu LA], [chronovu-la], [libftdi])
197SR_DRIVER([Colead SLM], [colead-slm], [libserialport])
198SR_DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu], [libserialport])
199SR_DRIVER([DER EE DE-5000], [deree-de5000], [libserialport])
200SR_DRIVER([demo], [demo])
201SR_DRIVER([Fluke DMM], [fluke-dmm], [libserialport])
202SR_DRIVER([fx2lafw], [fx2lafw], [libusb])
203SR_DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x], [libserialport])
204SR_DRIVER([Hameg HMO], [hameg-hmo], [libserialport])
205SR_DRIVER([Hantek DSO], [hantek-dso], [libusb])
206SR_DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2], [libusb])
207SR_DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus], [libftdi])
208SR_DRIVER([Kecheng KC-330B], [kecheng-kc-330b], [libusb])
8006cdc5 209SR_DRIVER([KERN scale], [kern-scale], [libserialport])
d37c7109
DE
210SR_DRIVER([Lascar EL-USB], [lascar-el-usb], [libusb])
211SR_DRIVER([Manson HCS-3xxx], [manson-hcs-3xxx], [libserialport])
212SR_DRIVER([maynuo-m97], [maynuo-m97])
213SR_DRIVER([MIC 985xx], [mic-985xx], [libserialport])
214SR_DRIVER([Motech LPS 30x], [motech-lps-30x], [libserialport])
215SR_DRIVER([Norma DMM], [norma-dmm], [libserialport])
216SR_DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer], [libserialport])
217SR_DRIVER([Pipistrello-OLS], [pipistrello-ols], [libftdi])
218SR_DRIVER([Rigol DS], [rigol-ds])
219SR_DRIVER([Saleae Logic16], [saleae-logic16], [libusb])
220SR_DRIVER([SCPI PPS], [scpi-pps])
221SR_DRIVER([serial DMM], [serial-dmm], [libserialport])
222SR_DRIVER([Sysclk LWLA], [sysclk-lwla], [libusb])
223SR_DRIVER([Teleinfo], [teleinfo], [libserialport])
224SR_DRIVER([Testo], [testo], [libusb])
225SR_DRIVER([Tondaj SL-814], [tondaj-sl-814], [libserialport])
226SR_DRIVER([UNI-T DMM], [uni-t-dmm], [libusb])
227SR_DRIVER([UNI-T UT32x], [uni-t-ut32x], [libusb])
228SR_DRIVER([Victor DMM], [victor-dmm], [libusb])
229SR_DRIVER([Yokogawa DL/DLM], [yokogawa-dlm])
230SR_DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube], [libusb])
1f61c22f
DE
231
232###############################
233## Language bindings setup ##
234###############################
235
d37c7109 236AC_LANG([C++])
4cf2f34f 237SR_ARG_ENABLE_WARNINGS([SR_WXXFLAGS], [-Wall], [-Wall -Wextra])
d37c7109 238
1f61c22f
DE
239AC_ARG_ENABLE([bindings],
240 [AS_HELP_STRING([--enable-bindings], [build language bindings [default=yes]])],
241 [], [enable_bindings=yes])
176c7219 242
1f61c22f
DE
243AC_ARG_ENABLE([cxx],
244 [AS_HELP_STRING([--enable-cxx], [build C++ bindings [default=yes]])],
245 [], [enable_cxx=$enable_bindings])
a0b277ba 246
1f61c22f
DE
247AC_ARG_ENABLE([python],
248 [AS_HELP_STRING([--enable-python], [build Python bindings [default=yes]])],
249 [], [enable_python=$enable_bindings])
826938d8 250
1f61c22f
DE
251AC_ARG_ENABLE([java],
252 [AS_HELP_STRING([--enable-java], [build Java bindings [default=yes]])],
253 [], [enable_java=$enable_bindings])
254
255####################
256## C++ bindings ##
257####################
258
259sr_cxx_missing=
260
261# Check if the C++ compiler supports the C++11 standard.
e662d9e8 262AX_CXX_COMPILE_STDCXX_11([noext], [optional])
26b67f11
DE
263AS_IF([test "x$HAVE_CXX11" != x1],
264 [SR_APPEND([sr_cxx_missing], [', '], ['C++11'])])
1f61c22f
DE
265
266# The C++ bindings need glibmm.
267SR_PKG_CHECK([glibmm], [SR_PKGLIBS_CXX], [glibmm-2.4 >= 2.32.0])
26b67f11
DE
268AS_IF([test "x$sr_have_glibmm" != xyes],
269 [SR_APPEND([sr_cxx_missing], [', '], [glibmm])])
1f61c22f
DE
270
271# The C++ bindings use Doxygen to parse libsigrok symbols.
272AC_CHECK_PROG([HAVE_DOXYGEN], [doxygen], [yes], [no])
26b67f11
DE
273AS_IF([test "x$HAVE_DOXYGEN" != xyes],
274 [SR_APPEND([sr_cxx_missing], [', '], [Doxygen])])
1f61c22f
DE
275
276# Python is needed for the C++ bindings.
277AM_PATH_PYTHON([2.7],
278 [HAVE_PYTHON=yes],
26b67f11
DE
279 [HAVE_PYTHON=no
280 SR_APPEND([sr_cxx_missing], [', '], [Python])])
1f61c22f
DE
281
282AS_IF([test -z "$sr_cxx_missing"],
283 [BINDINGS_CXX=$enable_cxx], [BINDINGS_CXX=no])
284AM_CONDITIONAL([BINDINGS_CXX], [test "x$BINDINGS_CXX" = xyes])
285
286# C++ bindings want stoi and stod.
287AM_COND_IF([BINDINGS_CXX], [
288 AC_CACHE_CHECK([for stoi and stod], [sr_cv_have_stoi_stod],
289 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string>]],
290 [[(void) std::stoi("1"); (void) std::stod("1.0");]])],
291 [sr_cv_have_stoi_stod=yes], [sr_cv_have_stoi_stod=no])])
292 AS_IF([test "x$sr_cv_have_stoi_stod" = xyes],
293 [AC_DEFINE([HAVE_STOI_STOD], [1],
294 [Specifies whether we have the stoi and stod functions.])])
295])
296
297#######################
298## Python bindings ##
299#######################
300
26b67f11
DE
301AS_IF([test "x$BINDINGS_CXX" = xyes],
302 [sr_python_missing=],
303 [sr_python_missing='C++ bindings'])
1f61c22f
DE
304
305# The Python bindings need Python development files.
306SR_PKG_CHECK([python_dev], [SR_PKGLIBS_PYTHON],
307 [python >= 2.7], [python2 >= 2.7], [python27 >= 2.7])
26b67f11
DE
308AS_IF([test "x$sr_have_python_dev" != xyes],
309 [SR_APPEND([sr_python_missing], [', '], [Headers])])
1f61c22f
DE
310
311# PyGObject is needed for the Python bindings.
312SR_PKG_CHECK([pygobject], [SR_PKGLIBS_PYTHON], [pygobject-3.0 >= 3.0.0])
26b67f11
DE
313AS_IF([test "x$sr_have_pygobject" != xyes],
314 [SR_APPEND([sr_python_missing], [', '], [PyGObject])])
1f61c22f
DE
315
316PKG_CHECK_EXISTS([pygobject-3.0 < 3.7.91],
317 [AC_DEFINE([PYGOBJECT_FLAGS_SIGNED], [1],
318 [Whether last argument to pyg_flags_get_value() is signed.])])
319
320# The Python bindings need the setuptools Python module.
321# We'll let it go through even if the AX macro wasn't found,
322# as the Python module may still be there.
323HAVE_PYMOD_SETUPTOOLS=yes
324m4_ifdef([AX_PYTHON_MODULE],
325 [AX_PYTHON_MODULE([setuptools])],
cb4d28ef 326 [m4_warn([unsupported], [Missing macro AX_PYTHON_MODULE: no setuptools check])])
26b67f11
DE
327AS_IF([test "x$HAVE_PYMOD_SETUPTOOLS" != xyes],
328 [SR_APPEND([sr_python_missing], [', '], [setuptools])])
1f61c22f
DE
329
330# The Python bindings use SWIG to generate code.
0ab8386a 331AC_CHECK_PROGS([SWIG], [swig swig3.0 swig2.0])
26b67f11
DE
332AS_IF([test "x$SWIG" = x],
333 [SR_APPEND([sr_python_missing], [', '], [SWIG])])
1f61c22f
DE
334
335AS_IF([test -z "$sr_python_missing"],
336 [BINDINGS_PYTHON=$enable_python], [BINDINGS_PYTHON=no])
337AM_CONDITIONAL([BINDINGS_PYTHON], [test "x$BINDINGS_PYTHON" = xyes])
338
339####################
340## Java bindings ##
341####################
342
26b67f11
DE
343AS_IF([test "x$BINDINGS_CXX" = xyes],
344 [sr_java_missing=],
345 [sr_java_missing='C++ bindings'])
1f61c22f
DE
346
347# The Java bindings use SWIG to generate code.
26b67f11
DE
348AS_IF([test "x$SWIG" = x],
349 [SR_APPEND([sr_java_missing], [', '], [SWIG])])
4f10853e 350
9fcf4d0b 351# Find Java compiler and JNI includes for Java bindings.
9fcf4d0b 352AC_CHECK_PROG([HAVE_JAVAC], [javac], [yes], [no])
26b67f11
DE
353AS_IF([test "x$HAVE_JAVAC" = xno],
354 [SR_APPEND([sr_java_missing], [', '], [JavaC])])
1f61c22f
DE
355
356AC_ARG_WITH([jni-include-path],
357 [AS_HELP_STRING([[--with-jni-include-path=DIR-LIST (space-separated)]],
358 [specify JNI include directories [default=detect]])],
359 [JNI_INCLUDE_DIRS=" $withval"], [JNI_INCLUDE_DIRS=])
360
361JNI_CPPFLAGS=
362AS_IF([test "x$enable_java$HAVE_JAVAC" = xyesyes], [
9fcf4d0b 363 AX_PROG_JAVAC
1f61c22f
DE
364 AS_IF([test -z "$JNI_INCLUDE_DIRS" && test "x$cross_compiling" != xyes], [
365 ## Work around the totally broken logic in AX_JNI_INCLUDE_DIR:
366 ## If we can find jni.h without any special search path, skip
367 ## the execution of the broken macro to increase our chances of
368 ## success.
369 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <jni.h>]], [])],,
370 [AX_JNI_INCLUDE_DIR])
371 ])
372])
373for sr_dir in $JNI_INCLUDE_DIRS
374do
26b67f11 375 SR_APPEND([JNI_CPPFLAGS], ["-I$sr_dir"])
1f61c22f
DE
376done
377AC_SUBST([JNI_CPPFLAGS])
378
379sr_save_cppflags=$CPPFLAGS
26b67f11
DE
380SR_APPEND([CPPFLAGS], [$JNI_CPPFLAGS])
381AC_CHECK_HEADER([jni.h],,
382 [SR_APPEND([sr_java_missing], [', '], ['JNI headers'])])
1f61c22f
DE
383CPPFLAGS=$sr_save_cppflags
384
385AS_IF([test -z "$sr_java_missing"],
386 [BINDINGS_JAVA=$enable_java], [BINDINGS_JAVA=no])
387AM_CONDITIONAL([BINDINGS_JAVA], [test "x$BINDINGS_JAVA" = xyes])
388
389##############################
390## Finalize configuration ##
391##############################
392
393# Add mandatory dependencies to module list.
26b67f11 394SR_APPEND([SR_PKGLIBS], ['libzip >= 0.10'])
1f61c22f
DE
395AC_SUBST([SR_PKGLIBS])
396
397# Retrieve the compile and link flags for all modules combined.
398# Also, bail out at this point if any module dependency is not met.
399PKG_CHECK_MODULES([LIBSIGROK], [glib-2.0 >= 2.32.0 $SR_PKGLIBS])
65489c1a 400PKG_CHECK_MODULES([TESTS], [$SR_PKGLIBS_TESTS glib-2.0 $SR_PKGLIBS])
1f61c22f 401
da0763d0
DE
402# SR_PKGLIBS_CXX may be empty, so only invoke these checks when
403# the C++ bindings are enabled.
404AM_COND_IF([BINDINGS_CXX], [
405 PKG_CHECK_MODULES([LIBSIGROKCXX], [$SR_PKGLIBS_CXX])
406 PKG_CHECK_MODULES([PYSIGROK], [$SR_PKGLIBS_PYTHON $SR_PKGLIBS_CXX])
407])
1f61c22f
DE
408sr_glib_version=`$PKG_CONFIG --modversion glib-2.0 2>&AS_MESSAGE_LOG_FD`
409sr_libzip_version=`$PKG_CONFIG --modversion libzip 2>&AS_MESSAGE_LOG_FD`
410
2cbde151
DE
411AC_DEFINE_UNQUOTED([CONF_LIBZIP_VERSION], ["$sr_libzip_version"],
412 [Build-time version of libzip.])
413AC_DEFINE_UNQUOTED([CONF_HOST], ["$host"],
414 [The canonical host libsigrok will run on.])
1f61c22f 415
b2478a23 416AC_CONFIG_FILES([Makefile libsigrok.pc bindings/cxx/libsigrokcxx.pc])
826938d8
UH
417
418AC_OUTPUT
419
1f61c22f 420# Prepare bindings report messages.
d37c7109
DE
421m4_define([SR_PREPARE_BINDING_REPORT], [
422 sr_report_$1=
26b67f11 423 test -z "$sr_$1_missing" || sr_report_$1=" (missing: $sr_$1_missing)"
d37c7109 424 test "x$enable_$1" = xyes || sr_report_$1=' (disabled)'
1f61c22f 425])
d37c7109 426m4_map_args([SR_PREPARE_BINDING_REPORT], [cxx], [python], [java])
45aed072 427
1f61c22f
DE
428cat >&AS_MESSAGE_FD <<_EOF
429
430libsigrok configuration summary:
431 - Package version................. $SR_PACKAGE_VERSION
432 - Library ABI version............. $SR_LIB_VERSION
433 - Prefix.......................... $prefix
434 - Building on..................... $build
435 - Building for.................... $host
b84a7331 436 - Additional C compiler flags..... $SR_EXTRA_CFLAGS
4cf2f34f
DE
437 - C compiler warnings............. $SR_WFLAGS
438 - C++ compiler warnings........... $SR_WXXFLAGS
1f61c22f
DE
439
440Detected libraries (required):
965d6889
UH
441 - glib-2.0 >= 2.32.0.............. $sr_glib_version
442 - libzip >= 0.10.................. $sr_libzip_version
1f61c22f
DE
443
444Detected libraries (optional):
445$sr_pkglibs_summary
c5f179a9 446Enabled hardware drivers:
d37c7109 447$sr_driver_summary
1f61c22f
DE
448Enabled SCPI backends:
449 - TCP............................. yes
450 - RPC............................. $sr_cv_have_rpc
451 - serial.......................... $sr_have_libserialport
452 - VISA............................ $sr_have_librevisa
453 - GPIB............................ $sr_have_libgpib
454 - USBTMC.......................... $sr_have_libusb
455
456Enabled language bindings:
457 - C++............................. $BINDINGS_CXX$sr_report_cxx
458 - Python.......................... $BINDINGS_PYTHON$sr_report_python
459 - Java............................ $BINDINGS_JAVA$sr_report_java
826938d8 460
1f61c22f 461_EOF