]> sigrok.org Git - libsigrok.git/blob - configure.ac
f151c88381494155e59203d10b70da4204ebada3
[libsigrok.git] / configure.ac
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).
22 AC_PREREQ([2.63])
23
24 # libsigrok package version number (NOT the same as shared lib version!).
25 m4_define([sr_package_version_major], [0])
26 m4_define([sr_package_version_minor], [3])
27 m4_define([sr_package_version_micro], [0])
28 m4_define([sr_package_version], [sr_package_version_major.sr_package_version_minor.sr_package_version_micro])
29
30 AC_INIT([libsigrok], [sr_package_version], [sigrok-devel@lists.sourceforge.net],
31         [libsigrok], [http://www.sigrok.org])
32 AC_CONFIG_HEADER([config.h])
33 AC_CONFIG_MACRO_DIR([autostuff])
34 AC_CONFIG_AUX_DIR([autostuff])
35
36 # We require at least automake 1.11 (needed for 'silent rules').
37 AM_INIT_AUTOMAKE([1.11 -Wall -Werror subdir-objects check-news color-tests])
38 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
39 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
40
41 AH_TOP([#ifndef SR_CONFIG_H
42 #define SR_CONFIG_H    /* To stop multiple inclusions. */])
43 AH_BOTTOM([#endif /* SR_CONFIG_H */])
44
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.
47 COMMON_FLAGS="$CFLAGS -Wall -Wextra -fvisibility=hidden"
48 CFLAGS="$COMMON_FLAGS -Wmissing-prototypes"
49 CXXFLAGS="-std=c++11 $COMMON_FLAGS"
50
51 # Checks for programs.
52 AC_PROG_CC
53 AC_PROG_CPP
54 AC_PROG_CXX
55 AC_PROG_INSTALL
56 AC_PROG_LN_S
57
58 # Required for per-target flags or subdir-objects with C sources.
59 AM_PROG_CC_C_O
60
61 # Initialize libtool.
62 LT_INIT
63
64 # Initialize pkg-config.
65 # We require at least 0.22, as "Requires.private" behaviour changed there.
66 PKG_PROG_PKG_CONFIG([0.22])
67
68 # Library version for libsigrok (NOT the same as the package version).
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
72 SR_LIB_VERSION_CURRENT=2
73 SR_LIB_VERSION_REVISION=0
74 SR_LIB_VERSION_AGE=0
75 SR_LIB_VERSION="$SR_LIB_VERSION_CURRENT:$SR_LIB_VERSION_REVISION:$SR_LIB_VERSION_AGE"
76 SR_LIB_LDFLAGS="-version-info $SR_LIB_VERSION"
77 AC_SUBST(SR_LIB_VERSION_CURRENT)
78 AC_SUBST(SR_LIB_VERSION_REVISION)
79 AC_SUBST(SR_LIB_VERSION_AGE)
80 AC_SUBST(SR_LIB_VERSION)
81 AC_SUBST(SR_LIB_LDFLAGS)
82
83 # Hardware support '--enable' options.
84
85 AC_ARG_ENABLE(all-drivers, AC_HELP_STRING([--enable-all-drivers],
86         [enable all drivers by default [default=yes]]),
87         [HW_ENABLED_DEFAULT="$enableval"],
88         [HW_ENABLED_DEFAULT="yes"])
89
90 # Usage: DRIVER([Device name], [driver-name])
91 # An optional third argument [no] disables that driver.
92 m4_define([driverize], [m4_tolower(m4_bpatsubst([$1], [[^0-9a-zA-Z-]+], [-]))])
93 m4_define([upperize], [m4_toupper(m4_bpatsubst([$1], [[^0-9a-zA-Z_]+], [_]))])
94 AC_DEFUN([DRIVER], [
95         if test -z "$3"; then
96                 default=$HW_ENABLED_DEFAULT
97         else
98                 default="$3"
99         fi
100         AC_ARG_ENABLE($2, AC_HELP_STRING([--enable-$2], [enable $1 support]),
101                 [m4_join([], [HW_], upperize([$2]))="$enableval"],
102                 [m4_join([], [HW_], upperize([$2]))=$default])
103         dots=$(expr substr ".............................." 1 $(expr 32 - length $2))
104         driver_summary="${driver_summary}  - $2${dots} ${m4_join([], [HW_], upperize([$2]))}\n"
105 ])
106
107 DRIVER([Agilent DMM], [agilent-dmm])
108 DRIVER([Appa 55II], [appa-55ii])
109 DRIVER([ASIX SIGMA/SIGMA2], [asix-sigma])
110 DRIVER([Atten PPS3xxx], [atten-pps3xxx])
111 DRIVER([BeagleLogic], [beaglelogic])
112 DRIVER([Brymen BM86x], [brymen-bm86x])
113 DRIVER([Brymen DMM], [brymen-dmm])
114 DRIVER([CEM DT-885x], [cem-dt-885x])
115 DRIVER([Center 3xx], [center-3xx])
116 DRIVER([ChronoVu LA], [chronovu-la])
117 DRIVER([Colead SLM], [colead-slm])
118 DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu])
119 DRIVER([demo], [demo])
120 DRIVER([Fluke DMM], [fluke-dmm])
121 DRIVER([fx2lafw], [fx2lafw])
122 DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x])
123 DRIVER([Hameg HMO], [hameg-hmo])
124 DRIVER([Hantek DSO], [hantek-dso])
125 DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2])
126 DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus])
127 DRIVER([Kecheng KC-330B], [kecheng-kc-330b])
128 DRIVER([Lascar EL-USB], [lascar-el-usb])
129 DRIVER([Manson HCS-3xxx], [manson-hcs-3xxx])
130 DRIVER([MIC 985xx], [mic-985xx])
131 DRIVER([Motech LPS 30x], [motech-lps-30x])
132 DRIVER([Norma DMM], [norma-dmm])
133 DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer])
134 DRIVER([Rigol DS], [rigol-ds])
135 DRIVER([Saleae Logic16], [saleae-logic16])
136 DRIVER([serial DMM], [serial-dmm])
137 DRIVER([Sysclk LWLA], [sysclk-lwla])
138 DRIVER([Teleinfo], [teleinfo])
139 DRIVER([Testo], [testo])
140 DRIVER([Tondaj SL-814], [tondaj-sl-814])
141 DRIVER([UNI-T DMM], [uni-t-dmm])
142 DRIVER([UNI-T UT32x], [uni-t-ut32x])
143 DRIVER([Victor DMM], [victor-dmm])
144 DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube])
145
146 AC_ARG_ENABLE(libserialport,
147         AC_HELP_STRING([--disable-libserialport],
148         [disable libserialport support [default=detect]]))
149
150 AC_ARG_ENABLE(libftdi,
151         AC_HELP_STRING([--disable-libftdi],
152         [disable libftdi support [default=detect]]))
153
154 AC_ARG_ENABLE(libusb,
155         AC_HELP_STRING([--disable-libusb],
156         [disable libusb support [default=detect]]))
157
158 # Language binding '--enable' options
159
160 AC_ARG_ENABLE(bindings,
161         AC_HELP_STRING([--enable-bindings],
162         [build language bindings [default=yes]]),
163         [BINDINGS_ALL="$enableval"], [BINDINGS_ALL="yes"])
164
165 AC_ARG_ENABLE(cxx,
166         AC_HELP_STRING([--enable-cxx],
167         [build C++ bindings [default=yes]]),
168         [BINDINGS_CXX="$enableval"], [BINDINGS_CXX=$BINDINGS_ALL])
169
170 AC_ARG_ENABLE(python,
171         AC_HELP_STRING([--enable-python],
172         [build Python bindings [default=yes]]),
173         [BINDINGS_PYTHON="$enableval"], [BINDINGS_PYTHON=$BINDINGS_ALL])
174
175 AC_ARG_ENABLE(java,
176         AC_HELP_STRING([--enable-java],
177         [build Java bindings [default=yes]]),
178         [BINDINGS_JAVA="$enableval"], [BINDINGS_JAVA=$BINDINGS_ALL])
179
180 # Check if the C++ compiler supports the C++11 standard.
181
182 m4_ifdef([AX_CXX_COMPILE_STDCXX_11], [AX_CXX_COMPILE_STDCXX_11(,[optional])],
183         [AC_MSG_NOTICE([Missing macro m4_toupper(aX_CXX_COMPILE_STDCXX_11), no C++11 check])])
184
185 if test "x$HAVE_CXX11" != "x1"; then
186         BINDINGS_CXX="no"
187 fi
188
189 # The C++ bindings use gccxml to parse libsigrok symbols.
190 AC_CHECK_PROG([HAVE_GCCXML], [gccxml], [yes])
191 if test "x$HAVE_GCCXML" != "xyes"; then
192         BINDINGS_CXX="no"
193 fi
194
195 # Python is needed for the C++ (and Python) bindings.
196 PKG_CHECK_MODULES([python], [python3 >= 2.7],
197         [CXXFLAGS="$CXXFLAGS $python_CFLAGS";
198         CXXLIBS="$CXXLIBS $python_LIBS"],
199                 [BINDINGS_CXX="no"])
200
201 # The C++ bindings need the pygccxml Python module.
202 m4_ifdef([AX_PYTHON_MODULE], [AX_PYTHON_MODULE([pygccxml])],
203         # We'll let it go through even if the macro wasn't found, the python
204         # module may still be there.
205         [HAVE_PYTHON_PYGCCXML="yes";
206                 AC_MSG_NOTICE([Missing macro m4_toupper(aX_PYTHON_MODULE), no pygccxml check])]
207 )
208 if test "x$HAVE_PYMOD_PYGCCXML" != "xyes"; then
209         BINDINGS_CXX="no"
210 fi
211
212 # Python and Java bindings depend on C++ bindings.
213
214 if test "x$BINDINGS_CXX" != "xyes"; then
215         BINDINGS_PYTHON="no"
216         BINDINGS_JAVA="no"
217 fi
218
219 # Checks for libraries.
220
221 case "$host" in
222 *mingw*)
223         # We need to link against the Winsock2 library for SCPI over TCP.
224         LIBS="$LIBS -lws2_32";;
225 esac
226
227 # This variable collects the pkg-config names of all detected libs.
228 # It is then used to construct the "Requires.private:" field in the
229 # libsigrok.pc file.
230 SR_PKGLIBS=""
231
232 # libm (the standard math library) is always needed.
233 AC_SEARCH_LIBS([pow], [m])
234
235 # RPC is only needed for VXI support.
236 AC_MSG_CHECKING([for RPC support])
237 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <rpc/rpc.h>],
238                                 [CLIENT *rpc_test(void)],
239                                 [{ return clnt_create("", 0, 0, ""); }])],
240                [AC_MSG_RESULT([yes]); have_rpc=1],
241                [AC_MSG_RESULT([no]);  have_rpc=0])
242 # Define HAVE_RPC in config.h if we found RPC support.
243 AC_DEFINE_UNQUOTED(HAVE_RPC, [$have_rpc], [Specifies whether we have RPC support.])
244 # VXI support is only compiled if RPC support was found.
245 AM_CONDITIONAL(NEED_RPC, test "x$have_rpc" != "x0")
246
247 # libglib-2.0 is always needed. Abort if it's not found.
248 # Note: glib-2.0 is part of the libsigrok API (hard pkg-config requirement).
249 # We require at least 2.32.0 due to e.g. g_variant_new_fixed_array().
250 AM_PATH_GLIB_2_0([2.32.0],
251         [LIB_CFLAGS="$LIB_CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
252
253 # libzip is always needed. Abort if it's not found.
254 PKG_CHECK_MODULES([libzip], [libzip >= 0.10],
255         [LIB_CFLAGS="$LIB_CFLAGS $libzip_CFLAGS"; LIBS="$LIBS $libzip_LIBS";
256         SR_PKGLIBS="$SR_PKGLIBS libzip"])
257
258 # libserialport is only needed for some hardware drivers. Disable the
259 # respective drivers if it is not found.
260 if test "x$enable_libserialport" != "xno"; then
261         PKG_CHECK_MODULES([libserialport], [libserialport >= 0.1.0],
262                 [have_libserialport="yes"; LIB_CFLAGS="$LIB_CFLAGS $libserialport_CFLAGS";
263                 LIBS="$LIBS $libserialport_LIBS";
264                 SR_PKGLIBS="$SR_PKGLIBS libserialport"],
265                 [have_libserialport="no"])
266         if test "x$enable_libserialport$have_libserialport" = "xyesno"; then
267                 AC_MSG_ERROR([libserialport support requested, but it was not found])
268         fi
269 else
270         have_libserialport="no"
271 fi
272
273 # Define HAVE_LIBSERIALPORT in config.h if we found libserialport.
274 if test "x$have_libserialport" = "xno"; then
275         HW_AGILENT_DMM="no"; HW_APPA_55II="no";
276         HW_ATTEN_PPS3XXX="no"; HW_BRYMEN_DMM="no"; HW_CEM_DT_885X="no";
277         HW_CENTER_3XX="no"; HW_COLEAD_SLM="no"; HW_CONRAD_DIGI_35_CPU="no";
278         HW_FLUKE_DMM="no"; HW_GMC_MH_1X_2X="no"; HW_HAMEG_HMO="no";
279         HW_MANSON_HCS_3XXX="no"; HW_MIC_985XX="no"; HW_MOTECH_LPS_30X="no";
280         HW_NORMA_DMM="no"; HW_OPENBENCH_LOGIC_SNIFFER="no"; HW_SERIAL_DMM="no";
281         HW_TELEINFO="no"; HW_TONDAJ_SL_814="no";
282 else
283         AC_DEFINE_UNQUOTED(HAVE_LIBSERIALPORT, [1],
284                 [Specifies whether we have libserialport.])
285 fi
286
287 # Serial port helper code is only compiled in if libserialport was found.
288 AM_CONDITIONAL(NEED_SERIAL, test "x$have_libserialport" != xno)
289
290 PKG_CHECK_MODULES([librevisa], [librevisa >= 0.0.20130812],
291         [have_librevisa="yes"; LIB_CFLAGS="$LIB_CFLAGS $librevisa_CFLAGS";
292         LIBS="$LIBS $librevisa_LIBS";
293         SR_PKGLIBS="$SR_PKGLIBS librevisa"],
294         [have_librevisa="no"])
295
296 # VISA SCPI backend is only compiled in if librevisa was found.
297 AM_CONDITIONAL(NEED_VISA, test "x$have_librevisa" != xno)
298
299 # Define HAVE_LIBREVISA in config.h if we found librevisa.
300 if test "x$have_librevisa" != "xno"; then
301         AC_DEFINE_UNQUOTED(HAVE_LIBREVISA, [1],
302                 [Specifies whether we have librevisa.])
303 fi
304
305 # libusb-1.0 is only needed for some hardware drivers. Disable the respective
306 # drivers if it is not found.
307 if test "x$enable_libusb" != "xno"; then
308         case "$host" in
309         *freebsd*)
310                 # FreeBSD comes with an "integrated" libusb-1.0-style USB API.
311                 # This means libusb-1.0 is always available, no need to check for it,
312                 # and no need to (potentially) disable any drivers if it's not found.
313                 have_libusb1_0="yes"
314                 ;;
315         *)
316                 PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.16],
317                         [have_libusb1_0="yes"; LIB_CFLAGS="$LIB_CFLAGS $libusb_CFLAGS";
318                         LIBS="$LIBS $libusb_LIBS";
319                         SR_PKGLIBS="$SR_PKGLIBS libusb-1.0"],
320                         [have_libusb1_0="no"])
321                 if test "x$enable_libusb$have_libusb1_0" = "xyesno"; then
322                         AC_MSG_ERROR([libusb support requested, but it was not found])
323                 fi
324                 ;;
325         esac
326 else
327         have_libusb1_0="no"
328 fi
329
330 # Define HAVE_LIBUSB_1_0 in config.h if we found libusb-1.0.
331 if test "x$have_libusb1_0" = "xno"; then
332         HW_BRYMEN_BM86X="no"; HW_FX2LAFW="no";
333         HW_HANTEK_DSO="no"; HW_IKALOGIC_SCANALOGIC2="no";
334         HW_KECHENG_KC_330B="no"; HW_LASCAR_EL_USB="no";
335         HW_SYSCLK_LWLA="no"; HW_TESTO="no"; HW_UNI_T_DMM="no";
336         HW_UNI_T_UT32X="no"; HW_VICTOR_DMM="no";
337         HW_ZEROPLUS_LOGIC_CUBE="no"; HW_SALEAE_LOGIC16="no";
338 else
339         AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1],
340                 [Specifies whether we have a libusb.h header.])
341 fi
342
343 # USB + FX2 firmware helper code is only compiled in if libusb-1.0 was found.
344 AM_CONDITIONAL(NEED_USB, test "x$have_libusb1_0" != xno)
345
346 # libftdi is only needed for some hardware drivers. Disable them if not found.
347 if test "x$enable_libftdi" != "xno"; then
348         PKG_CHECK_MODULES([libftdi], [libftdi >= 0.16],
349                 [have_libftdi="yes"; LIB_CFLAGS="$LIB_CFLAGS $libftdi_CFLAGS";
350                 LIBS="$LIBS $libftdi_LIBS";
351                 SR_PKGLIBS="$SR_PKGLIBS libftdi"],
352                 [PKG_CHECK_MODULES([libftdi1], [libftdi1 >= 1.0],
353                         [LIB_CFLAGS="$LIB_CFLAGS $libftdi1_CFLAGS";
354                         LIBS="$LIBS $libftdi1_LIBS";
355                         SR_PKGLIBS="$SR_PKGLIBS libftdi1"],
356                         [have_libftdi="no"])])
357         if test "x$enable_libftdi$have_libftdi" = "xyesno"; then
358                 AC_MSG_ERROR([libftdi support requested, but it was not found])
359         fi
360 else
361         have_libftdi="no"
362 fi
363
364 if test "x$have_libftdi" = "xno"; then
365         HW_ASIX_SIGMA="no"; HW_CHRONOVU_LA="no"; HW_IKALOGIC_SCANAPLUS="no";
366 fi
367
368 # glibmm-2.4 is needed for the C++ bindings.
369 PKG_CHECK_MODULES([glibmm], [glibmm-2.4 >= 2.32.0],
370         [CXXFLAGS="$CXXFLAGS $glibmm_CFLAGS";
371         CXXLIBS="$CXXLIBS $glibmm_LIBS"], [BINDINGS_CXX="no"])
372
373 # PyGObject is needed for the Python bindings.
374 PKG_CHECK_MODULES([pygobject], [pygobject-3.0],
375         [CXXFLAGS="$CXXFLAGS $pygobject_CFLAGS";
376         CXXLIBS="$CXXLIBS $pygobject_LIBS";
377         PKG_CHECK_MODULES([pygobject_3_7_91], [pygobject-3.0 >= 3.7.91],
378                 [pyg_flags_signed=0], [pyg_flags_signed=1]);
379         AC_DEFINE_UNQUOTED(PYGOBJECT_FLAGS_SIGNED, [$pyg_flags_signed],
380                 [Whether last argument to pyg_flags_get_value() is signed])],
381         [BINDINGS_PYTHON="no"])
382
383 # The Check unit testing framework is optional. Disable if not found.
384 PKG_CHECK_MODULES([check], [check >= 0.9.4],
385         [have_check="yes"], [have_check="no"])
386 AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
387
388 # The OLS driver uses serial port file descriptors directly, and therefore
389 # will not currently work on Windows.
390 case "$host" in
391 *mingw*)
392         HW_OPENBENCH_LOGIC_SNIFFER="no"
393         ;;
394 esac
395
396 AC_SUBST(SR_PKGLIBS)
397
398 CFLAGS="$CFLAGS -I./include/libsigrok $LIB_CFLAGS"
399 CXXFLAGS="$CXXFLAGS -I./include -I./bindings/cxx/include $LIB_CFLAGS"
400
401 # Find Java compiler and JNI includes for Java bindings.
402
403 AC_CHECK_PROG([HAVE_JAVAC], [javac], [yes], [no])
404
405 if test "x$HAVE_JAVAC" = "xyes"; then
406         AX_PROG_JAVAC
407         AX_JNI_INCLUDE_DIR
408         for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS; do
409                 CXXFLAGS="$CXXFLAGS -I$JNI_INCLUDE_DIR"
410         done
411 else
412         BINDINGS_JAVA="no"
413 fi
414
415 # Now set AM_CONDITIONALs and AC_DEFINEs for the enabled/disabled drivers.
416
417 AM_CONDITIONAL(HW_AGILENT_DMM, test x$HW_AGILENT_DMM = xyes)
418 if test "x$HW_AGILENT_DMM" = "xyes"; then
419         AC_DEFINE(HAVE_HW_AGILENT_DMM, 1, [Agilent DMM support])
420 fi
421
422 AM_CONDITIONAL(HW_APPA_55II, test x$HW_APPA_55II = xyes)
423 if test "x$HW_APPA_55II" = "xyes"; then
424         AC_DEFINE(HAVE_HW_APPA_55II, 1, [APPA 55II support])
425 fi
426
427 AM_CONDITIONAL(HW_ASIX_SIGMA, test x$HW_ASIX_SIGMA = xyes)
428 if test "x$HW_ASIX_SIGMA" = "xyes"; then
429         AC_DEFINE(HAVE_HW_ASIX_SIGMA, 1, [ASIX SIGMA/SIGMA2 support])
430 fi
431
432 AM_CONDITIONAL(HW_ATTEN_PPS3XXX, test x$HW_ATTEN_PPS3XXX = xyes)
433 if test "x$HW_ATTEN_PPS3XXX" = "xyes"; then
434         AC_DEFINE(HAVE_HW_ATTEN_PPS3XXX, 1, [Atten PPS3xxx support])
435 fi
436
437 AM_CONDITIONAL(HW_BEAGLELOGIC, test x$HW_BEAGLELOGIC = xyes)
438 if test "x$HW_BEAGLELOGIC" = "xyes"; then
439         AC_DEFINE(HAVE_HW_BEAGLELOGIC, 1, [BeagleLogic support])
440 fi
441
442 AM_CONDITIONAL(HW_BRYMEN_BM86X, test x$HW_BRYMEN_BM86X = xyes)
443 if test "x$HW_BRYMEN_BM86X" = "xyes"; then
444         AC_DEFINE(HAVE_HW_BRYMEN_BM86X, 1, [Brymen BM86X support])
445 fi
446
447 AM_CONDITIONAL(HW_BRYMEN_DMM, test x$HW_BRYMEN_DMM = xyes)
448 if test "x$HW_BRYMEN_DMM" = "xyes"; then
449         AC_DEFINE(HAVE_HW_BRYMEN_DMM, 1, [Brymen DMM support])
450 fi
451
452 AM_CONDITIONAL(HW_CEM_DT_885X, test x$HW_CEM_DT_885X = xyes)
453 if test "x$HW_CEM_DT_885X" = "xyes"; then
454         AC_DEFINE(HAVE_HW_CEM_DT_885X, 1, [CEM DT-885x support])
455 fi
456
457 AM_CONDITIONAL(HW_CENTER_3XX, test x$HW_CENTER_3XX = xyes)
458 if test "x$HW_CENTER_3XX" = "xyes"; then
459         AC_DEFINE(HAVE_HW_CENTER_3XX, 1, [Center 3xx support])
460 fi
461
462 AM_CONDITIONAL(HW_CHRONOVU_LA, test x$HW_CHRONOVU_LA = xyes)
463 if test "x$HW_CHRONOVU_LA" = "xyes"; then
464         AC_DEFINE(HAVE_HW_CHRONOVU_LA, 1, [ChronoVu LA support])
465 fi
466
467 AM_CONDITIONAL(HW_COLEAD_SLM, test x$HW_COLEAD_SLM = xyes)
468 if test "x$HW_COLEAD_SLM" = "xyes"; then
469         AC_DEFINE(HAVE_HW_COLEAD_SLM, 1, [Colead SLM support])
470 fi
471
472 AM_CONDITIONAL(HW_CONRAD_DIGI_35_CPU, test x$HW_CONRAD_DIGI_35_CPU = xyes)
473 if test "x$HW_CONRAD_DIGI_35_CPU" = "xyes"; then
474         AC_DEFINE(HAVE_HW_CONRAD_DIGI_35_CPU, 1, [Conrad DIGI 35 CPU support])
475 fi
476
477 AM_CONDITIONAL(HW_DEMO, test x$HW_DEMO = xyes)
478 if test "x$HW_DEMO" = "xyes"; then
479         AC_DEFINE(HAVE_HW_DEMO, 1, [Demo driver support])
480 fi
481
482 AM_CONDITIONAL(HW_FLUKE_DMM, test x$HW_FLUKE_DMM = xyes)
483 if test "x$HW_FLUKE_DMM" = "xyes"; then
484         AC_DEFINE(HAVE_HW_FLUKE_DMM, 1, [Fluke DMM support])
485 fi
486
487 AM_CONDITIONAL(HW_FX2LAFW, test x$HW_FX2LAFW = xyes)
488 if test "x$HW_FX2LAFW" = "xyes"; then
489         AC_DEFINE(HAVE_HW_FX2LAFW, 1, [fx2lafw support])
490 fi
491
492 AM_CONDITIONAL(HW_GMC_MH_1X_2X, test x$HW_GMC_MH_1X_2X = xyes)
493 if test "x$HW_GMC_MH_1X_2X" = "xyes"; then
494         AC_DEFINE(HAVE_HW_GMC_MH_1X_2X, 1, [gmc-mh-1x-2x support])
495 fi
496
497 AM_CONDITIONAL(HW_HANTEK_DSO, test x$HW_HANTEK_DSO = xyes)
498 if test "x$HW_HANTEK_DSO" = "xyes"; then
499         AC_DEFINE(HAVE_HW_HANTEK_DSO, 1, [Hantek DSO support])
500 fi
501
502 AM_CONDITIONAL(HW_HAMEG_HMO, test x$HW_HAMEG_HMO = xyes)
503 if test "x$HW_HAMEG_HMO" = "xyes"; then
504         AC_DEFINE(HAVE_HW_HAMEG_HMO, 1, [Hameg HMO support])
505 fi
506
507 AM_CONDITIONAL(HW_IKALOGIC_SCANALOGIC2, test x$HW_IKALOGIC_SCANALOGIC2 = xyes)
508 if test "x$HW_IKALOGIC_SCANALOGIC2" = "xyes"; then
509         AC_DEFINE(HAVE_HW_IKALOGIC_SCANALOGIC2, 1, [IKALOGIC Scanalogic-2 support])
510 fi
511
512 AM_CONDITIONAL(HW_IKALOGIC_SCANAPLUS, test x$HW_IKALOGIC_SCANAPLUS = xyes)
513 if test "x$HW_IKALOGIC_SCANAPLUS" = "xyes"; then
514         AC_DEFINE(HAVE_HW_IKALOGIC_SCANAPLUS, 1, [IKALOGIC ScanaPLUS support])
515 fi
516
517 AM_CONDITIONAL(HW_KECHENG_KC_330B, test x$HW_KECHENG_KC_330B = xyes)
518 if test "x$HW_KECHENG_KC_330B" = "xyes"; then
519         AC_DEFINE(HAVE_HW_KECHENG_KC_330B, 1, [Kecheng KC-330B support])
520 fi
521
522 AM_CONDITIONAL(HW_LASCAR_EL_USB, test x$HW_LASCAR_EL_USB = xyes)
523 if test "x$HW_LASCAR_EL_USB" = "xyes"; then
524         AC_DEFINE(HAVE_HW_LASCAR_EL_USB, 1, [Lascar EL-USB support])
525 fi
526
527 AM_CONDITIONAL(HW_MANSON_HCS_3XXX, test x$HW_MANSON_HCS_3XXX = xyes)
528 if test "x$HW_MANSON_HCS_3XXX" = "xyes"; then
529         AC_DEFINE(HAVE_HW_MANSON_HCS_3XXX, 1, [Manson HCS-3xxx support])
530 fi
531
532 AM_CONDITIONAL(HW_MIC_985XX, test x$HW_MIC_985XX = xyes)
533 if test "x$HW_MIC_985XX" = "xyes"; then
534         AC_DEFINE(HAVE_HW_MIC_985XX, 1, [MIC 985xx support])
535 fi
536
537 AM_CONDITIONAL(HW_MOTECH_LPS_30X, test x$HW_MOTECH_LPS_30X = xyes)
538 if test "x$HW_MOTECH_LPS_30X" = "xyes"; then
539         AC_DEFINE(HAVE_HW_MOTECH_LPS_30X, 1, [motech-lps-30x support])
540 fi
541
542 AM_CONDITIONAL(HW_NORMA_DMM, test x$HW_NORMA_DMM = xyes)
543 if test "x$HW_NORMA_DMM" = "xyes"; then
544         AC_DEFINE(HAVE_HW_NORMA_DMM, 1, [Norma DMM support])
545 fi
546
547 AM_CONDITIONAL(HW_OPENBENCH_LOGIC_SNIFFER, test x$HW_OPENBENCH_LOGIC_SNIFFER = xyes)
548 if test "x$HW_OPENBENCH_LOGIC_SNIFFER" = "xyes"; then
549         AC_DEFINE(HAVE_HW_OPENBENCH_LOGIC_SNIFFER, 1, [OpenBench Logic Sniffer (OLS) support])
550 fi
551
552 AM_CONDITIONAL(HW_RIGOL_DS, test x$HW_RIGOL_DS = xyes)
553 if test "x$HW_RIGOL_DS" = "xyes"; then
554         AC_DEFINE(HAVE_HW_RIGOL_DS, 1, [Rigol DS support])
555 fi
556
557 AM_CONDITIONAL(HW_SALEAE_LOGIC16, test x$HW_SALEAE_LOGIC16 = xyes)
558 if test "x$HW_SALEAE_LOGIC16" = "xyes"; then
559         AC_DEFINE(HAVE_HW_SALEAE_LOGIC16, 1, [Saleae Logic16 support])
560 fi
561
562 AM_CONDITIONAL(HW_SERIAL_DMM, test x$HW_SERIAL_DMM = xyes)
563 if test "x$HW_SERIAL_DMM" = "xyes"; then
564         AC_DEFINE(HAVE_HW_SERIAL_DMM, 1, [Serial DMM support])
565 fi
566
567 AM_CONDITIONAL(HW_SYSCLK_LWLA, test x$HW_SYSCLK_LWLA = xyes)
568 if test "x$HW_SYSCLK_LWLA" = "xyes"; then
569         AC_DEFINE(HAVE_HW_SYSCLK_LWLA, 1, [Sysclk LWLA support])
570 fi
571
572 AM_CONDITIONAL(HW_TELEINFO, test x$HW_TELEINFO = xyes)
573 if test "x$HW_TELEINFO" = "xyes"; then
574         AC_DEFINE(HAVE_HW_TELEINFO, 1, [Teleinfo support])
575 fi
576
577 AM_CONDITIONAL(HW_TESTO, test x$HW_TESTO = xyes)
578 if test "x$HW_TESTO" = "xyes"; then
579         AC_DEFINE(HAVE_HW_TESTO, 1, [Testo support])
580 fi
581
582 AM_CONDITIONAL(HW_TONDAJ_SL_814, test x$HW_TONDAJ_SL_814 = xyes)
583 if test "x$HW_TONDAJ_SL_814" = "xyes"; then
584         AC_DEFINE(HAVE_HW_TONDAJ_SL_814, 1, [Tondaj SL-814 support])
585 fi
586
587 AM_CONDITIONAL(HW_UNI_T_DMM, test x$HW_UNI_T_DMM = xyes)
588 if test "x$HW_UNI_T_DMM" = "xyes"; then
589         AC_DEFINE(HAVE_HW_UNI_T_DMM, 1, [UNI-T DMM support])
590 fi
591
592 AM_CONDITIONAL(HW_UNI_T_UT32X, test x$HW_UNI_T_UT32X = xyes)
593 if test "x$HW_UNI_T_UT32X" = "xyes"; then
594         AC_DEFINE(HAVE_HW_UNI_T_UT32X, 1, [UNI-T UT32x support])
595 fi
596
597 AM_CONDITIONAL(HW_VICTOR_DMM, test x$HW_VICTOR_DMM = xyes)
598 if test "x$HW_VICTOR_DMM" = "xyes"; then
599         AC_DEFINE(HAVE_HW_VICTOR_DMM, 1, [Victor DMM support])
600 fi
601
602 AM_CONDITIONAL(HW_ZEROPLUS_LOGIC_CUBE, test x$HW_ZEROPLUS_LOGIC_CUBE = xyes)
603 if test "x$HW_ZEROPLUS_LOGIC_CUBE" = "xyes"; then
604         AC_DEFINE(HAVE_HW_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support])
605 fi
606
607 AM_CONDITIONAL(BINDINGS_CXX, test x$BINDINGS_CXX = xyes)
608
609 AM_CONDITIONAL(BINDINGS_PYTHON, test x$BINDINGS_PYTHON = xyes)
610
611 AM_CONDITIONAL(BINDINGS_JAVA, test x$BINDINGS_JAVA = xyes)
612
613 # Checks for header files.
614 # These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
615
616 # Checks for typedefs, structures, and compiler characteristics.
617 AC_C_BIGENDIAN
618
619 AC_SUBST(FIRMWARE_DIR, "$datadir/sigrok-firmware")
620 AC_SUBST(MAKEFLAGS, '--no-print-directory')
621 AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
622
623 SR_PACKAGE_VERSION_MAJOR=sr_package_version_major
624 SR_PACKAGE_VERSION_MINOR=sr_package_version_minor
625 SR_PACKAGE_VERSION_MICRO=sr_package_version_micro
626 SR_PACKAGE_VERSION=sr_package_version
627
628 AC_SUBST(SR_PACKAGE_VERSION_MAJOR)
629 AC_SUBST(SR_PACKAGE_VERSION_MINOR)
630 AC_SUBST(SR_PACKAGE_VERSION_MICRO)
631 AC_SUBST(SR_PACKAGE_VERSION)
632
633 AC_CONFIG_FILES([Makefile include/libsigrok/version.h libsigrok.pc
634         bindings/cxx/libsigrokxx.pc])
635
636 AC_OUTPUT
637
638 echo
639 echo "libsigrok configuration summary:"
640 echo
641 echo "  - Package version (major.minor.micro):    $SR_PACKAGE_VERSION"
642 echo "  - Library version (current:revision:age): $SR_LIB_VERSION"
643 echo "  - Prefix: $prefix"
644 echo "  - Building on: $build"
645 echo "  - Building for: $host"
646 echo
647 echo "Detected libraries:"
648 echo
649
650 # Note: This only works for libs with pkg-config integration.
651 for lib in "glib-2.0 >= 2.32.0" "libzip >= 0.10" "libserialport >= 0.1.0" "librevisa >= 0.0.20130812" "libusb-1.0 >= 1.0.16" "libftdi >= 0.16" "libftdi1 >= 1.0" "check >= 0.9.4"; do
652         optional="OPTIONAL"
653         if test "x$lib" = "xglib-2.0 >= 2.32.0"; then optional="REQUIRED"; fi
654         if test "x$lib" = "xlibzip >= 0.10"; then optional="REQUIRED"; fi
655         if `$PKG_CONFIG --exists $lib`; then
656                 ver=`$PKG_CONFIG --modversion $lib`
657                 answer="yes ($ver)"
658         else
659                 answer="no"
660         fi
661         echo "  - ($optional) $lib: $answer"
662 done
663
664 echo -e "\nEnabled hardware drivers:\n${driver_summary}"
665
666 echo -e "\nEnabled language bindings:\n"
667 echo "  - C++............................. $BINDINGS_CXX"
668 echo "  - Python.......................... $BINDINGS_PYTHON"
669 echo "  - Java............................ $BINDINGS_JAVA"
670 echo