]> sigrok.org Git - libsigrok.git/blame - configure.ac
configure.ac: Whitespace, cosmetics, sorting, etc.
[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
3af71f0d 24# libsigrok package version number (NOT the same as shared lib version!).
6dddd902 25m4_define([sr_package_version_major], [0])
4133caab
UH
26m4_define([sr_package_version_minor], [3])
27m4_define([sr_package_version_micro], [0])
6dddd902 28m4_define([sr_package_version], [sr_package_version_major.sr_package_version_minor.sr_package_version_micro])
826938d8 29
6dddd902 30AC_INIT([libsigrok], [sr_package_version], [sigrok-devel@lists.sourceforge.net],
db8ae7b9 31 [libsigrok], [http://www.sigrok.org])
826938d8 32AC_CONFIG_HEADER([config.h])
d8521c93
UH
33AC_CONFIG_MACRO_DIR([autostuff])
34AC_CONFIG_AUX_DIR([autostuff])
826938d8 35
ef7228ba 36# We require at least automake 1.11 (needed for 'silent rules').
67bd8055 37AM_INIT_AUTOMAKE([1.11 -Wall -Werror subdir-objects check-news color-tests])
826938d8 38m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
432e5e95 39m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
826938d8 40
6dddd902
UH
41AH_TOP([#ifndef SR_CONFIG_H
42#define SR_CONFIG_H /* To stop multiple inclusions. */])
43AH_BOTTOM([#endif /* SR_CONFIG_H */])
826938d8 44
1a081ca6
UH
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.
4f10853e
ML
47COMMON_FLAGS="$CFLAGS -Wall -Wextra -fvisibility=hidden"
48CFLAGS="$COMMON_FLAGS -Wmissing-prototypes"
c23c8659 49CXXFLAGS="-std=c++11 $COMMON_FLAGS"
826938d8
UH
50
51# Checks for programs.
826938d8
UH
52AC_PROG_CC
53AC_PROG_CPP
c23c8659 54AC_PROG_CXX
826938d8
UH
55AC_PROG_INSTALL
56AC_PROG_LN_S
57
bb203cde
UH
58# Required for per-target flags or subdir-objects with C sources.
59AM_PROG_CC_C_O
60
826938d8
UH
61# Initialize libtool.
62LT_INIT
63
64# Initialize pkg-config.
65# We require at least 0.22, as "Requires.private" behaviour changed there.
66PKG_PROG_PKG_CONFIG([0.22])
67
3af71f0d 68# Library version for libsigrok (NOT the same as the package version).
826938d8
UH
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
85ca913c
UH
72SR_LIB_VERSION_CURRENT=2
73SR_LIB_VERSION_REVISION=0
6dddd902
UH
74SR_LIB_VERSION_AGE=0
75SR_LIB_VERSION="$SR_LIB_VERSION_CURRENT:$SR_LIB_VERSION_REVISION:$SR_LIB_VERSION_AGE"
76SR_LIB_LDFLAGS="-version-info $SR_LIB_VERSION"
77AC_SUBST(SR_LIB_VERSION_CURRENT)
78AC_SUBST(SR_LIB_VERSION_REVISION)
79AC_SUBST(SR_LIB_VERSION_AGE)
80AC_SUBST(SR_LIB_VERSION)
81AC_SUBST(SR_LIB_LDFLAGS)
826938d8 82
dbf2482e
BV
83AC_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
d4b38748
BV
88# Usage: DRIVER([Device name], [driver-name])
89# An optional third argument [no] disables that driver.
90m4_define([driverize], [m4_tolower(m4_bpatsubst([$1], [[^0-9a-zA-Z-]+], [-]))])
91m4_define([upperize], [m4_toupper(m4_bpatsubst([$1], [[^0-9a-zA-Z_]+], [_]))])
92AC_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])
43cd4637
BV
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]))}@"
d4b38748
BV
103])
104
105DRIVER([Agilent DMM], [agilent-dmm])
106DRIVER([Appa 55II], [appa-55ii])
107DRIVER([ASIX SIGMA/SIGMA2], [asix-sigma])
108DRIVER([Atten PPS3xxx], [atten-pps3xxx])
bb993797 109DRIVER([BeagleLogic], [beaglelogic])
d4b38748
BV
110DRIVER([Brymen BM86x], [brymen-bm86x])
111DRIVER([Brymen DMM], [brymen-dmm])
112DRIVER([CEM DT-885x], [cem-dt-885x])
113DRIVER([Center 3xx], [center-3xx])
114DRIVER([ChronoVu LA], [chronovu-la])
115DRIVER([Colead SLM], [colead-slm])
116DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu])
117DRIVER([demo], [demo])
118DRIVER([Fluke DMM], [fluke-dmm])
119DRIVER([fx2lafw], [fx2lafw])
120DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x])
121DRIVER([Hameg HMO], [hameg-hmo])
122DRIVER([Hantek DSO], [hantek-dso])
123DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2])
124DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus])
125DRIVER([Kecheng KC-330B], [kecheng-kc-330b])
126DRIVER([Lascar EL-USB], [lascar-el-usb])
127DRIVER([Manson HCS-3xxx], [manson-hcs-3xxx])
128DRIVER([MIC 985xx], [mic-985xx])
129DRIVER([Motech LPS 30x], [motech-lps-30x])
130DRIVER([Norma DMM], [norma-dmm])
131DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer])
4bd80e12 132DRIVER([Pipistrello-OLS], [pipistrello-ols])
d4b38748
BV
133DRIVER([Rigol DS], [rigol-ds])
134DRIVER([Saleae Logic16], [saleae-logic16])
ca1a7cb5 135DRIVER([SCPI PPS], [scpi-pps])
d4b38748
BV
136DRIVER([serial DMM], [serial-dmm])
137DRIVER([Sysclk LWLA], [sysclk-lwla])
138DRIVER([Teleinfo], [teleinfo])
139DRIVER([Testo], [testo])
140DRIVER([Tondaj SL-814], [tondaj-sl-814])
141DRIVER([UNI-T DMM], [uni-t-dmm])
142DRIVER([UNI-T UT32x], [uni-t-ut32x])
143DRIVER([Victor DMM], [victor-dmm])
10763937 144DRIVER([Yokogawa DL/DLM], [yokogawa-dlm])
d4b38748 145DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube])
826938d8 146
a4737997
MF
147AC_ARG_ENABLE(libserialport,
148 AC_HELP_STRING([--disable-libserialport],
149 [disable libserialport support [default=detect]]))
150
151AC_ARG_ENABLE(libftdi,
152 AC_HELP_STRING([--disable-libftdi],
153 [disable libftdi support [default=detect]]))
154
155AC_ARG_ENABLE(libusb,
156 AC_HELP_STRING([--disable-libusb],
157 [disable libusb support [default=detect]]))
158
62ea3ef5 159# Language binding '--enable' options:
c23c8659 160
6223feeb
BV
161AC_ARG_ENABLE(bindings,
162 AC_HELP_STRING([--enable-bindings],
163 [build language bindings [default=yes]]),
164 [BINDINGS_ALL="$enableval"], [BINDINGS_ALL="yes"])
165
166AC_ARG_ENABLE(cxx,
c23c8659
ML
167 AC_HELP_STRING([--enable-cxx],
168 [build C++ bindings [default=yes]]),
6223feeb 169 [BINDINGS_CXX="$enableval"], [BINDINGS_CXX=$BINDINGS_ALL])
c23c8659 170
f7740954
ML
171AC_ARG_ENABLE(python,
172 AC_HELP_STRING([--enable-python],
173 [build Python bindings [default=yes]]),
6223feeb 174 [BINDINGS_PYTHON="$enableval"], [BINDINGS_PYTHON=$BINDINGS_ALL])
f7740954 175
9fcf4d0b
ML
176AC_ARG_ENABLE(java,
177 AC_HELP_STRING([--enable-java],
178 [build Java bindings [default=yes]]),
6223feeb 179 [BINDINGS_JAVA="$enableval"], [BINDINGS_JAVA=$BINDINGS_ALL])
9fcf4d0b 180
3e27b177
MC
181AC_ARG_WITH(jni-include-path,
182 AC_HELP_STRING([--with-jni-include-path=path],
183 [specify include path for JNI [default=autodetect]]),
184 [JNI_INCLUDE_DIRS="$withval"], [JNI_INCLUDE_DIRS=auto])
185
c23c8659
ML
186# Check if the C++ compiler supports the C++11 standard.
187
f8158d56
BV
188m4_ifdef([AX_CXX_COMPILE_STDCXX_11], [AX_CXX_COMPILE_STDCXX_11(,[optional])],
189 [AC_MSG_NOTICE([Missing macro m4_toupper(aX_CXX_COMPILE_STDCXX_11), no C++11 check])])
c23c8659
ML
190
191if test "x$HAVE_CXX11" != "x1"; then
1029d384 192 BINDINGS_CXX="no"; cxx_msg="C++11 compiler required"
c23c8659
ML
193fi
194
62ea3ef5 195# The C++ bindings use Doxygen to parse libsigrok symbols.
3532ed01
ML
196AC_CHECK_PROG([HAVE_DOXYGEN], [doxygen], [yes])
197if test "x$HAVE_DOXYGEN" != "xyes"; then
62ea3ef5 198 BINDINGS_CXX="no"; cxx_msg="Doxygen required"
bcacb863
BV
199fi
200
de44e114
BV
201# Python is needed for the C++ bindings.
202AC_CHECK_PROG([HAVE_PYTHON], [python], [yes])
203if test "x$HAVE_PYTHON" != "xyes"; then
204 BINDINGS_CXX="no"; cxx_msg="Python required"
205fi
206
62ea3ef5 207# The Python bindings need Python development files.
57d62c4c 208PKG_CHECK_MODULES([python], [python >= 2.7],
62ea3ef5
UH
209 [CXXFLAGS="$CXXFLAGS $python_CFLAGS";
210 CXXLIBS="$CXXLIBS $python_LIBS"],
2ba308ec 211[PKG_CHECK_MODULES([python27], [python-2.7 >= 2.7],
62ea3ef5
UH
212 [CXXFLAGS="$CXXFLAGS $python27_CFLAGS";
213 CXXLIBS="$CXXLIBS $python27_LIBS"],
2ba308ec 214 [BINDINGS_PYTHON="no"; python_msg="Python headers required"])])
bcacb863 215
de44e114 216# The Python bindings need the setuptools Python module.
0afa91b7 217m4_ifdef([AX_PYTHON_MODULE], [AX_PYTHON_MODULE([setuptools])],
62ea3ef5 218 # We'll let it go through even if the macro wasn't found, the Python
0afa91b7
BV
219 # module may still be there.
220 [HAVE_PYTHON_SETUPTOOLS="yes";
221 AC_MSG_NOTICE([Missing macro m4_toupper(aX_PYTHON_MODULE), no setuptools check])]
222)
223if test "x$HAVE_PYMOD_SETUPTOOLS" != "xyes"; then
de44e114 224 BINDINGS_PYTHON="no"; python_msg="Python setuptools module required"
0afa91b7 225fi
f7740954 226
62ea3ef5 227# The Python and Java bindings use SWIG to generate code.
0afa91b7
BV
228AC_CHECK_PROG([HAVE_SWIG], [swig], [yes])
229if test "x$HAVE_SWIG" != "xyes"; then
62ea3ef5
UH
230 BINDINGS_PYTHON="no"; python_msg="SWIG required"
231 BINDINGS_JAVA="no"; java_msg="SWIG required"
f7740954
ML
232fi
233
826938d8
UH
234# Checks for libraries.
235
1c6736ab
ML
236case "$host" in
237*mingw*)
238 # We need to link against the Winsock2 library for SCPI over TCP.
239 LIBS="$LIBS -lws2_32";;
240esac
241
826938d8
UH
242# This variable collects the pkg-config names of all detected libs.
243# It is then used to construct the "Requires.private:" field in the
244# libsigrok.pc file.
6dddd902 245SR_PKGLIBS=""
826938d8 246
ee8ddd8f
UH
247# libm (the standard math library) is always needed.
248AC_SEARCH_LIBS([pow], [m])
249
7d4874c1 250# RPC is only needed for VXI support.
d5876cfb
AJ
251AC_MSG_CHECKING([for RPC support])
252AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <rpc/rpc.h>],
62ea3ef5
UH
253 [CLIENT *rpc_test(void)],
254 [{ return clnt_create("", 0, 0, ""); }])],
255 [AC_MSG_RESULT([yes]); have_rpc=1],
256 [AC_MSG_RESULT([no]); have_rpc=0])
d5876cfb 257# Define HAVE_RPC in config.h if we found RPC support.
7d4874c1 258AC_DEFINE_UNQUOTED(HAVE_RPC, [$have_rpc], [Specifies whether we have RPC support.])
d5876cfb 259# VXI support is only compiled if RPC support was found.
7d4874c1 260AM_CONDITIONAL(NEED_RPC, test "x$have_rpc" != "x0")
d5876cfb 261
aba69262 262# libglib-2.0 is always needed. Abort if it's not found.
826938d8 263# Note: glib-2.0 is part of the libsigrok API (hard pkg-config requirement).
406569dd
UH
264# We require at least 2.32.0 due to e.g. g_variant_new_fixed_array().
265AM_PATH_GLIB_2_0([2.32.0],
4f10853e 266 [LIB_CFLAGS="$LIB_CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
826938d8 267
aba69262 268# libzip is always needed. Abort if it's not found.
8819bf5a 269PKG_CHECK_MODULES([libzip], [libzip >= 0.10],
4f10853e 270 [LIB_CFLAGS="$LIB_CFLAGS $libzip_CFLAGS"; LIBS="$LIBS $libzip_LIBS";
6dddd902 271 SR_PKGLIBS="$SR_PKGLIBS libzip"])
826938d8 272
c4f2dfd0
UH
273# libserialport is only needed for some hardware drivers. Disable the
274# respective drivers if it is not found.
a4737997 275if test "x$enable_libserialport" != "xno"; then
81a69107 276 PKG_CHECK_MODULES([libserialport], [libserialport >= 0.2.0],
a4737997
MF
277 [have_libserialport="yes"; LIB_CFLAGS="$LIB_CFLAGS $libserialport_CFLAGS";
278 LIBS="$LIBS $libserialport_LIBS";
279 SR_PKGLIBS="$SR_PKGLIBS libserialport"],
280 [have_libserialport="no"])
281 if test "x$enable_libserialport$have_libserialport" = "xyesno"; then
62ea3ef5 282 AC_MSG_ERROR([libserialport support requested, but it was not found.])
a4737997
MF
283 fi
284else
285 have_libserialport="no"
286fi
a4737997
MF
287if test "x$have_libserialport" = "xno"; then
288 HW_AGILENT_DMM="no"; HW_APPA_55II="no";
1c183900 289 HW_ATTEN_PPS3XXX="no"; HW_BRYMEN_DMM="no"; HW_CEM_DT_885X="no";
823b4e58 290 HW_CENTER_3XX="no"; HW_COLEAD_SLM="no"; HW_CONRAD_DIGI_35_CPU="no";
8c21897f 291 HW_FLUKE_DMM="no"; HW_GMC_MH_1X_2X="no"; HW_HAMEG_HMO="no";
adeae78f 292 HW_MANSON_HCS_3XXX="no"; HW_MIC_985XX="no"; HW_MOTECH_LPS_30X="no";
d4b38748
BV
293 HW_NORMA_DMM="no"; HW_OPENBENCH_LOGIC_SNIFFER="no"; HW_SERIAL_DMM="no";
294 HW_TELEINFO="no"; HW_TONDAJ_SL_814="no";
a4737997 295else
62ea3ef5 296 # Define HAVE_LIBSERIALPORT in config.h if we found libserialport.
c4f2dfd0
UH
297 AC_DEFINE_UNQUOTED(HAVE_LIBSERIALPORT, [1],
298 [Specifies whether we have libserialport.])
299fi
300
301# Serial port helper code is only compiled in if libserialport was found.
302AM_CONDITIONAL(NEED_SERIAL, test "x$have_libserialport" != xno)
a9bce5a5 303
62ea3ef5 304# The VISA SCPI backend is only compiled in if librevisa was found.
1fb2312f 305PKG_CHECK_MODULES([librevisa], [librevisa >= 0.0.20130812],
4f10853e 306 [have_librevisa="yes"; LIB_CFLAGS="$LIB_CFLAGS $librevisa_CFLAGS";
1fb2312f 307 LIBS="$LIBS $librevisa_LIBS";
b84b7ee7
ML
308 SR_PKGLIBS="$SR_PKGLIBS librevisa"],
309 [have_librevisa="no"])
1fb2312f 310AM_CONDITIONAL(NEED_VISA, test "x$have_librevisa" != xno)
1fb2312f 311if test "x$have_librevisa" != "xno"; then
62ea3ef5 312 # Define HAVE_LIBREVISA in config.h if we found librevisa.
1fb2312f
ML
313 AC_DEFINE_UNQUOTED(HAVE_LIBREVISA, [1],
314 [Specifies whether we have librevisa.])
315fi
316
62ea3ef5 317# The GPIB SCPI backend is only compiled in if libgpib is found.
d6e63a2c
BV
318PKG_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"])
bb2a4ed4
ML
323AM_CONDITIONAL(NEED_GPIB, test "x$have_libgpib" != xno)
324if test "x$have_libgpib" != "xno"; then
62ea3ef5 325 # Define HAVE_LIBGPIB in config.h if we found libgpib.
bb2a4ed4
ML
326 AC_DEFINE_UNQUOTED(HAVE_LIBGPIB, [1],
327 [Specifies whether we have libgpib.])
328fi
329
aba69262
UH
330# libusb-1.0 is only needed for some hardware drivers. Disable the respective
331# drivers if it is not found.
a4737997
MF
332if 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
62ea3ef5 347 AC_MSG_ERROR([libusb support requested, but it was not found.])
a4737997
MF
348 fi
349 ;;
350 esac
351else
352 have_libusb1_0="no"
353fi
a4737997
MF
354if 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";
0acdd793 358 HW_SYSCLK_LWLA="no"; HW_TESTO="no"; HW_UNI_T_DMM="no";
a4737997
MF
359 HW_UNI_T_UT32X="no"; HW_VICTOR_DMM="no";
360 HW_ZEROPLUS_LOGIC_CUBE="no"; HW_SALEAE_LOGIC16="no";
361else
62ea3ef5 362 # Define HAVE_LIBUSB_1_0 in config.h if we found libusb-1.0.
aba69262 363 AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1],
62ea3ef5 364 [Specifies whether we have libusb-1.0.])
a4737997 365fi
aba69262 366
3fd1d0ee
UH
367# USB + FX2 firmware helper code is only compiled in if libusb-1.0 was found.
368AM_CONDITIONAL(NEED_USB, test "x$have_libusb1_0" != xno)
369
aba69262 370# libftdi is only needed for some hardware drivers. Disable them if not found.
a4737997
MF
371if 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"],
c78bcc6f 376 [PKG_CHECK_MODULES([libftdi1], [libftdi1 >= 1.0],
92506359
DH
377 [LIB_CFLAGS="$LIB_CFLAGS $libftdi1_CFLAGS";
378 LIBS="$LIBS $libftdi1_LIBS";
379 SR_PKGLIBS="$SR_PKGLIBS libftdi1"],
380 [have_libftdi="no"])])
a4737997 381 if test "x$enable_libftdi$have_libftdi" = "xyesno"; then
62ea3ef5 382 AC_MSG_ERROR([libftdi support requested, but it was not found.])
a4737997
MF
383 fi
384else
385 have_libftdi="no"
386fi
a4737997
MF
387if test "x$have_libftdi" = "xno"; then
388 HW_ASIX_SIGMA="no"; HW_CHRONOVU_LA="no"; HW_IKALOGIC_SCANAPLUS="no";
4bd80e12 389 HW_PIPISTRELLO_OLS="no";
a4737997 390fi
aba69262 391
c23c8659
ML
392# glibmm-2.4 is needed for the C++ bindings.
393PKG_CHECK_MODULES([glibmm], [glibmm-2.4 >= 2.32.0],
394 [CXXFLAGS="$CXXFLAGS $glibmm_CFLAGS";
1029d384
BV
395 CXXLIBS="$CXXLIBS $glibmm_LIBS"],
396 [BINDINGS_CXX="no"; cxx_msg="glibmm required"])
c23c8659 397
62ea3ef5 398# C++ bindings want stoi and stod.
d92de05a
MC
399if 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>],
62ea3ef5
UH
403 [{ return std::stoi("1") + std::stod("1.0"); }])],
404 [AC_MSG_RESULT([yes]);
d92de05a
MC
405 AC_DEFINE_UNQUOTED(HAVE_STOI_STOD, [1],
406 [Specifies whether we have the stoi and stod functions.])],
62ea3ef5 407 [AC_MSG_RESULT([no])])
d92de05a
MC
408 AC_LANG_POP([C++])
409fi
410
f7740954 411# PyGObject is needed for the Python bindings.
022a7fe0 412PKG_CHECK_MODULES([pygobject], [pygobject-3.0 >= 3.0.0],
62ea3ef5
UH
413 [CXXFLAGS="$CXXFLAGS $pygobject_CFLAGS";
414 CXXLIBS="$CXXLIBS $pygobject_LIBS";
abc7146d
ML
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],
62ea3ef5 418 [Whether last argument to pyg_flags_get_value() is signed.])],
1029d384 419 [BINDINGS_PYTHON="no"; python_msg="Python pygobject module required"])
f7740954 420
aba69262 421# The Check unit testing framework is optional. Disable if not found.
79bb0e97 422PKG_CHECK_MODULES([check], [check >= 0.9.4],
82bfb646 423 [have_check="yes"], [have_check="no"])
79bb0e97
UH
424AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
425
37fa80b4
ML
426# The OLS driver uses serial port file descriptors directly, and therefore
427# will not currently work on Windows.
428case "$host" in
429*mingw*)
d4b38748 430 HW_OPENBENCH_LOGIC_SNIFFER="no"
d0a92abd 431 ;;
37fa80b4
ML
432esac
433
375340a7
UH
434# The BeagleLogic driver needs sys/mman.h and sys/ioctl.h. Don't try to
435# build it if these headers aren't available.
436AC_CHECK_HEADERS([sys/mman.h sys/ioctl.h], [], [HW_BEAGLELOGIC="no"])
437
6dddd902 438AC_SUBST(SR_PKGLIBS)
826938d8 439
55e55a3f 440CFLAGS="$CFLAGS -Iinclude/libsigrok -I${srcdir}/include/libsigrok $LIB_CFLAGS"
33c84e81 441CXXFLAGS="$CXXFLAGS -Iinclude/libsigrok -I${srcdir}/include -Ibindings/cxx -Ibindings/cxx/include/libsigrok -I${srcdir}/bindings/cxx/include $LIB_CFLAGS"
4f10853e 442
9fcf4d0b 443# Find Java compiler and JNI includes for Java bindings.
9fcf4d0b 444AC_CHECK_PROG([HAVE_JAVAC], [javac], [yes], [no])
9fcf4d0b
ML
445if test "x$HAVE_JAVAC" = "xyes"; then
446 AX_PROG_JAVAC
3e27b177
MC
447 if test "x$JNI_INCLUDE_DIRS" = "xauto"; then
448 if test "x$cross_compiling" = "xyes"; then
449 JNI_INCLUDE_DIRS=
450 else
451 AX_JNI_INCLUDE_DIR
452 fi
453 fi
9fcf4d0b
ML
454 for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS; do
455 CXXFLAGS="$CXXFLAGS -I$JNI_INCLUDE_DIR"
456 done
3e27b177
MC
457 AC_LANG_PUSH([C++])
458 AC_CHECK_HEADERS([jni.h], [], [BINDINGS_JAVA="no"; java_msg="Java JNI headers required"])
459 AC_LANG_POP([C++])
9fcf4d0b 460else
1029d384
BV
461 BINDINGS_JAVA="no"; java_msg="Java compiler required"
462fi
463
464# Python and Java bindings depend on C++ bindings.
465if test "x$BINDINGS_CXX" != "xyes"; then
466 BINDINGS_PYTHON="no"; python_msg="C++ bindings required"
467 BINDINGS_JAVA="no"; java_msg="C++ bindings required"
9fcf4d0b
ML
468fi
469
ae4c3d04
UH
470# Now set AM_CONDITIONALs and AC_DEFINEs for the enabled/disabled drivers.
471
472AM_CONDITIONAL(HW_AGILENT_DMM, test x$HW_AGILENT_DMM = xyes)
473if test "x$HW_AGILENT_DMM" = "xyes"; then
474 AC_DEFINE(HAVE_HW_AGILENT_DMM, 1, [Agilent DMM support])
475fi
476
5e7a8e57
AJ
477AM_CONDITIONAL(HW_APPA_55II, test x$HW_APPA_55II = xyes)
478if test "x$HW_APPA_55II" = "xyes"; then
479 AC_DEFINE(HAVE_HW_APPA_55II, 1, [APPA 55II support])
480fi
481
9e165e74
UH
482AM_CONDITIONAL(HW_ASIX_SIGMA, test x$HW_ASIX_SIGMA = xyes)
483if test "x$HW_ASIX_SIGMA" = "xyes"; then
484 AC_DEFINE(HAVE_HW_ASIX_SIGMA, 1, [ASIX SIGMA/SIGMA2 support])
ae4c3d04
UH
485fi
486
1c183900
MS
487AM_CONDITIONAL(HW_ATTEN_PPS3XXX, test x$HW_ATTEN_PPS3XXX = xyes)
488if test "x$HW_ATTEN_PPS3XXX" = "xyes"; then
d0a92abd 489 AC_DEFINE(HAVE_HW_ATTEN_PPS3XXX, 1, [Atten PPS3xxx support])
1c183900
MS
490fi
491
bb993797
KA
492AM_CONDITIONAL(HW_BEAGLELOGIC, test x$HW_BEAGLELOGIC = xyes)
493if test "x$HW_BEAGLELOGIC" = "xyes"; then
494 AC_DEFINE(HAVE_HW_BEAGLELOGIC, 1, [BeagleLogic support])
495fi
496
1b950bc7
UH
497AM_CONDITIONAL(HW_BRYMEN_BM86X, test x$HW_BRYMEN_BM86X = xyes)
498if test "x$HW_BRYMEN_BM86X" = "xyes"; then
499 AC_DEFINE(HAVE_HW_BRYMEN_BM86X, 1, [Brymen BM86X support])
500fi
501
ae4c3d04
UH
502AM_CONDITIONAL(HW_BRYMEN_DMM, test x$HW_BRYMEN_DMM = xyes)
503if test "x$HW_BRYMEN_DMM" = "xyes"; then
e4fad80b 504 AC_DEFINE(HAVE_HW_BRYMEN_DMM, 1, [Brymen DMM support])
ae4c3d04
UH
505fi
506
32be5b22
UH
507AM_CONDITIONAL(HW_CEM_DT_885X, test x$HW_CEM_DT_885X = xyes)
508if test "x$HW_CEM_DT_885X" = "xyes"; then
509 AC_DEFINE(HAVE_HW_CEM_DT_885X, 1, [CEM DT-885x support])
510fi
511
4433145f
UH
512AM_CONDITIONAL(HW_CENTER_3XX, test x$HW_CENTER_3XX = xyes)
513if test "x$HW_CENTER_3XX" = "xyes"; then
514 AC_DEFINE(HAVE_HW_CENTER_3XX, 1, [Center 3xx support])
515fi
516
7b356712
UH
517AM_CONDITIONAL(HW_CHRONOVU_LA, test x$HW_CHRONOVU_LA = xyes)
518if test "x$HW_CHRONOVU_LA" = "xyes"; then
519 AC_DEFINE(HAVE_HW_CHRONOVU_LA, 1, [ChronoVu LA support])
ae4c3d04
UH
520fi
521
522AM_CONDITIONAL(HW_COLEAD_SLM, test x$HW_COLEAD_SLM = xyes)
523if test "x$HW_COLEAD_SLM" = "xyes"; then
524 AC_DEFINE(HAVE_HW_COLEAD_SLM, 1, [Colead SLM support])
525fi
526
823b4e58
MH
527AM_CONDITIONAL(HW_CONRAD_DIGI_35_CPU, test x$HW_CONRAD_DIGI_35_CPU = xyes)
528if test "x$HW_CONRAD_DIGI_35_CPU" = "xyes"; then
529 AC_DEFINE(HAVE_HW_CONRAD_DIGI_35_CPU, 1, [Conrad DIGI 35 CPU support])
530fi
531
9e165e74
UH
532AM_CONDITIONAL(HW_DEMO, test x$HW_DEMO = xyes)
533if test "x$HW_DEMO" = "xyes"; then
534 AC_DEFINE(HAVE_HW_DEMO, 1, [Demo driver support])
ae4c3d04
UH
535fi
536
537AM_CONDITIONAL(HW_FLUKE_DMM, test x$HW_FLUKE_DMM = xyes)
538if test "x$HW_FLUKE_DMM" = "xyes"; then
539 AC_DEFINE(HAVE_HW_FLUKE_DMM, 1, [Fluke DMM support])
540fi
541
9e165e74
UH
542AM_CONDITIONAL(HW_FX2LAFW, test x$HW_FX2LAFW = xyes)
543if test "x$HW_FX2LAFW" = "xyes"; then
544 AC_DEFINE(HAVE_HW_FX2LAFW, 1, [fx2lafw support])
ae4c3d04
UH
545fi
546
7b4edcb6
MH
547AM_CONDITIONAL(HW_GMC_MH_1X_2X, test x$HW_GMC_MH_1X_2X = xyes)
548if test "x$HW_GMC_MH_1X_2X" = "xyes"; then
549 AC_DEFINE(HAVE_HW_GMC_MH_1X_2X, 1, [gmc-mh-1x-2x support])
550fi
551
582b3d21
UH
552AM_CONDITIONAL(HW_HAMEG_HMO, test x$HW_HAMEG_HMO = xyes)
553if test "x$HW_HAMEG_HMO" = "xyes"; then
554 AC_DEFINE(HAVE_HW_HAMEG_HMO, 1, [Hameg HMO support])
555fi
556
62ea3ef5
UH
557AM_CONDITIONAL(HW_HANTEK_DSO, test x$HW_HANTEK_DSO = xyes)
558if test "x$HW_HANTEK_DSO" = "xyes"; then
559 AC_DEFINE(HAVE_HW_HANTEK_DSO, 1, [Hantek DSO support])
560fi
561
1f36a6c6
UH
562AM_CONDITIONAL(HW_IKALOGIC_SCANALOGIC2, test x$HW_IKALOGIC_SCANALOGIC2 = xyes)
563if test "x$HW_IKALOGIC_SCANALOGIC2" = "xyes"; then
ce95428c 564 AC_DEFINE(HAVE_HW_IKALOGIC_SCANALOGIC2, 1, [IKALOGIC Scanalogic-2 support])
1f36a6c6
UH
565fi
566
fdf4a1f5
UH
567AM_CONDITIONAL(HW_IKALOGIC_SCANAPLUS, test x$HW_IKALOGIC_SCANAPLUS = xyes)
568if test "x$HW_IKALOGIC_SCANAPLUS" = "xyes"; then
ce95428c 569 AC_DEFINE(HAVE_HW_IKALOGIC_SCANAPLUS, 1, [IKALOGIC ScanaPLUS support])
fdf4a1f5
UH
570fi
571
ed759a08
BV
572AM_CONDITIONAL(HW_KECHENG_KC_330B, test x$HW_KECHENG_KC_330B = xyes)
573if test "x$HW_KECHENG_KC_330B" = "xyes"; then
574 AC_DEFINE(HAVE_HW_KECHENG_KC_330B, 1, [Kecheng KC-330B support])
575fi
576
ae4c3d04
UH
577AM_CONDITIONAL(HW_LASCAR_EL_USB, test x$HW_LASCAR_EL_USB = xyes)
578if test "x$HW_LASCAR_EL_USB" = "xyes"; then
579 AC_DEFINE(HAVE_HW_LASCAR_EL_USB, 1, [Lascar EL-USB support])
580fi
581
8f4e922f
UH
582AM_CONDITIONAL(HW_MANSON_HCS_3XXX, test x$HW_MANSON_HCS_3XXX = xyes)
583if test "x$HW_MANSON_HCS_3XXX" = "xyes"; then
584 AC_DEFINE(HAVE_HW_MANSON_HCS_3XXX, 1, [Manson HCS-3xxx support])
585fi
586
ae4c3d04
UH
587AM_CONDITIONAL(HW_MIC_985XX, test x$HW_MIC_985XX = xyes)
588if test "x$HW_MIC_985XX" = "xyes"; then
589 AC_DEFINE(HAVE_HW_MIC_985XX, 1, [MIC 985xx support])
590fi
591
41b7bd01
MH
592AM_CONDITIONAL(HW_MOTECH_LPS_30X, test x$HW_MOTECH_LPS_30X = xyes)
593if test "x$HW_MOTECH_LPS_30X" = "xyes"; then
594 AC_DEFINE(HAVE_HW_MOTECH_LPS_30X, 1, [motech-lps-30x support])
595fi
596
bfd48770
MH
597AM_CONDITIONAL(HW_NORMA_DMM, test x$HW_NORMA_DMM = xyes)
598if test "x$HW_NORMA_DMM" = "xyes"; then
d0a92abd 599 AC_DEFINE(HAVE_HW_NORMA_DMM, 1, [Norma DMM support])
bfd48770
MH
600fi
601
d4b38748
BV
602AM_CONDITIONAL(HW_OPENBENCH_LOGIC_SNIFFER, test x$HW_OPENBENCH_LOGIC_SNIFFER = xyes)
603if test "x$HW_OPENBENCH_LOGIC_SNIFFER" = "xyes"; then
604 AC_DEFINE(HAVE_HW_OPENBENCH_LOGIC_SNIFFER, 1, [OpenBench Logic Sniffer (OLS) support])
ae4c3d04
UH
605fi
606
4bd80e12 607AM_CONDITIONAL(HW_PIPISTRELLO_OLS, test x$HW_PIPISTRELLO_OLS = xyes)
608if test "x$HW_PIPISTRELLO_OLS" = "xyes"; then
609 AC_DEFINE(HAVE_HW_PIPISTRELLO_OLS, 1, [Pipistrello OLS support])
610fi
611
3086efdd
ML
612AM_CONDITIONAL(HW_RIGOL_DS, test x$HW_RIGOL_DS = xyes)
613if test "x$HW_RIGOL_DS" = "xyes"; then
614 AC_DEFINE(HAVE_HW_RIGOL_DS, 1, [Rigol DS support])
ae4c3d04
UH
615fi
616
5724a20a
UH
617AM_CONDITIONAL(HW_SALEAE_LOGIC16, test x$HW_SALEAE_LOGIC16 = xyes)
618if test "x$HW_SALEAE_LOGIC16" = "xyes"; then
619 AC_DEFINE(HAVE_HW_SALEAE_LOGIC16, 1, [Saleae Logic16 support])
620fi
621
ca1a7cb5
BV
622AM_CONDITIONAL(HW_SCPI_PPS, test x$HW_SCPI_PPS = xyes)
623if test "x$HW_SCPI_PPS" = "xyes"; then
624 AC_DEFINE(HAVE_HW_SCPI_PPS, 1, [SCPI PPS support])
625fi
626
ae4c3d04
UH
627AM_CONDITIONAL(HW_SERIAL_DMM, test x$HW_SERIAL_DMM = xyes)
628if test "x$HW_SERIAL_DMM" = "xyes"; then
629 AC_DEFINE(HAVE_HW_SERIAL_DMM, 1, [Serial DMM support])
630fi
631
87283d98
UH
632AM_CONDITIONAL(HW_SYSCLK_LWLA, test x$HW_SYSCLK_LWLA = xyes)
633if test "x$HW_SYSCLK_LWLA" = "xyes"; then
634 AC_DEFINE(HAVE_HW_SYSCLK_LWLA, 1, [Sysclk LWLA support])
635fi
636
122d33d4
UH
637AM_CONDITIONAL(HW_TELEINFO, test x$HW_TELEINFO = xyes)
638if test "x$HW_TELEINFO" = "xyes"; then
639 AC_DEFINE(HAVE_HW_TELEINFO, 1, [Teleinfo support])
640fi
641
0acdd793
BV
642AM_CONDITIONAL(HW_TESTO, test x$HW_TESTO = xyes)
643if test "x$HW_TESTO" = "xyes"; then
644 AC_DEFINE(HAVE_HW_TESTO, 1, [Testo support])
645fi
646
ae4c3d04
UH
647AM_CONDITIONAL(HW_TONDAJ_SL_814, test x$HW_TONDAJ_SL_814 = xyes)
648if test "x$HW_TONDAJ_SL_814" = "xyes"; then
649 AC_DEFINE(HAVE_HW_TONDAJ_SL_814, 1, [Tondaj SL-814 support])
650fi
651
652AM_CONDITIONAL(HW_UNI_T_DMM, test x$HW_UNI_T_DMM = xyes)
653if test "x$HW_UNI_T_DMM" = "xyes"; then
654 AC_DEFINE(HAVE_HW_UNI_T_DMM, 1, [UNI-T DMM support])
655fi
656
3877dde4
BV
657AM_CONDITIONAL(HW_UNI_T_UT32X, test x$HW_UNI_T_UT32X = xyes)
658if test "x$HW_UNI_T_UT32X" = "xyes"; then
659 AC_DEFINE(HAVE_HW_UNI_T_UT32X, 1, [UNI-T UT32x support])
660fi
661
ae4c3d04
UH
662AM_CONDITIONAL(HW_VICTOR_DMM, test x$HW_VICTOR_DMM = xyes)
663if test "x$HW_VICTOR_DMM" = "xyes"; then
e4fad80b 664 AC_DEFINE(HAVE_HW_VICTOR_DMM, 1, [Victor DMM support])
ae4c3d04
UH
665fi
666
10763937
SA
667AM_CONDITIONAL(HW_YOKOGAWA_DLM, test x$HW_YOKOGAWA_DLM = xyes)
668if test "x$HW_YOKOGAWA_DLM" = "xyes"; then
669 AC_DEFINE(HAVE_HW_YOKOGAWA_DLM, 1, [Yokogawa DL/DLM support])
670fi
671
9e165e74
UH
672AM_CONDITIONAL(HW_ZEROPLUS_LOGIC_CUBE, test x$HW_ZEROPLUS_LOGIC_CUBE = xyes)
673if test "x$HW_ZEROPLUS_LOGIC_CUBE" = "xyes"; then
674 AC_DEFINE(HAVE_HW_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support])
ae4c3d04
UH
675fi
676
c23c8659
ML
677AM_CONDITIONAL(BINDINGS_CXX, test x$BINDINGS_CXX = xyes)
678
f7740954
ML
679AM_CONDITIONAL(BINDINGS_PYTHON, test x$BINDINGS_PYTHON = xyes)
680
9fcf4d0b
ML
681AM_CONDITIONAL(BINDINGS_JAVA, test x$BINDINGS_JAVA = xyes)
682
826938d8 683# Checks for header files.
375340a7
UH
684# These are already implicitly checked: inttypes.h stdint.h stdlib.h string.h
685# unistd.h memory.h strings.h dlfcn.h sys/types.h sys/stat.h.
826938d8
UH
686
687# Checks for typedefs, structures, and compiler characteristics.
7b5daad4 688AC_C_BIGENDIAN
826938d8 689
fb6f1978 690AC_SUBST(FIRMWARE_DIR, "$datadir/sigrok-firmware")
826938d8
UH
691AC_SUBST(MAKEFLAGS, '--no-print-directory')
692AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
693
6dddd902
UH
694SR_PACKAGE_VERSION_MAJOR=sr_package_version_major
695SR_PACKAGE_VERSION_MINOR=sr_package_version_minor
696SR_PACKAGE_VERSION_MICRO=sr_package_version_micro
697SR_PACKAGE_VERSION=sr_package_version
3af71f0d 698
6dddd902
UH
699AC_SUBST(SR_PACKAGE_VERSION_MAJOR)
700AC_SUBST(SR_PACKAGE_VERSION_MINOR)
701AC_SUBST(SR_PACKAGE_VERSION_MICRO)
702AC_SUBST(SR_PACKAGE_VERSION)
3af71f0d 703
c23c8659
ML
704AC_CONFIG_FILES([Makefile include/libsigrok/version.h libsigrok.pc
705 bindings/cxx/libsigrokxx.pc])
826938d8
UH
706
707AC_OUTPUT
708
709echo
45aed072 710echo "libsigrok configuration summary:"
826938d8 711echo
6dddd902
UH
712echo " - Package version (major.minor.micro): $SR_PACKAGE_VERSION"
713echo " - Library version (current:revision:age): $SR_LIB_VERSION"
45aed072 714echo " - Prefix: $prefix"
6bad8487
UH
715echo " - Building on: $build"
716echo " - Building for: $host"
45aed072
UH
717echo
718echo "Detected libraries:"
719echo
720
721# Note: This only works for libs with pkg-config integration.
d6e63a2c
BV
722for lib in "glib-2.0 >= 2.32.0" "libzip >= 0.10" "libserialport >= 0.2.0" \
723 "librevisa >= 0.0.20130812" "libusb-1.0 >= 1.0.16" "libftdi >= 0.16" \
62ea3ef5
UH
724 "libftdi1 >= 1.0" "libgpib" "glibmm-2.4 >= 2.32.0" \
725 "pygobject-3.0 >= 3.0.0" "check >= 0.9.4"
d6e63a2c 726do
958326f8
UH
727 optional="OPTIONAL"
728 if test "x$lib" = "xglib-2.0 >= 2.32.0"; then optional="REQUIRED"; fi
729 if test "x$lib" = "xlibzip >= 0.10"; then optional="REQUIRED"; fi
45aed072
UH
730 if `$PKG_CONFIG --exists $lib`; then
731 ver=`$PKG_CONFIG --modversion $lib`
732 answer="yes ($ver)"
733 else
734 answer="no"
735 fi
958326f8 736 echo " - ($optional) $lib: $answer"
45aed072
UH
737done
738
43cd4637 739eval echo -e "@Enabled hardware drivers:@@${driver_summary}" | tr @ \\n
826938d8 740
62ea3ef5 741# Prepare final bindings report messages.
1029d384
BV
742final_cxx=""
743final_python=""
744final_java=""
745if test "$enable_bindings" = "no"; then
746 final_cxx=" (disabled)"
747 final_python=" (disabled)"
748 final_java=" (disabled)"
749else
750 if test "$enable_cxx" = "no"; then
751 final_cxx=" (disabled)"
752 elif test "$BINDINGS_CXX" = "no"; then
753 final_cxx=" ($cxx_msg)"
754 fi
755 if test "$enable_python" = "no"; then
756 final_python=" (disabled)"
757 elif test "$BINDINGS_PYTHON" = "no"; then
758 final_python=" ($python_msg)"
759 fi
760 if test "$enable_java" = "no"; then
761 final_java=" (disabled)"
762 elif test "$BINDINGS_JAVA" = "no"; then
763 final_java=" ($java_msg)"
764 fi
765fi
766
43cd4637 767echo -e "Enabled language bindings:\n"
1029d384
BV
768echo " - C++............................. $BINDINGS_CXX$final_cxx"
769echo " - Python.......................... $BINDINGS_PYTHON$final_python"
770echo " - Java............................ $BINDINGS_JAVA$final_java"
c23c8659 771echo