blob: c3eb9b51ef4d50d8c1ec8816f0ed67f0b01fe9d5 [file] [log] [blame]
Uwe Hermann826938d2011-12-30 10:42:39 +01001##
Uwe Hermann50985c22013-04-23 22:24:30 +02002## This file is part of the libsigrok project.
Uwe Hermann826938d2011-12-30 10:42:39 +01003##
Bert Vermeulenc73d2ea2012-02-13 14:31:51 +01004## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
Alexandru Gagniucd375b3c2012-10-15 01:17:32 -05005## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
Uwe Hermann826938d2011-12-30 10:42:39 +01006##
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
Uwe Hermannef7228b2012-01-28 21:26:56 +010021# We require at least autoconf 2.63 (AC_INIT format changed there).
22AC_PREREQ([2.63])
Uwe Hermann826938d2011-12-30 10:42:39 +010023
Uwe Hermann3af71f02012-01-04 00:05:43 +010024# libsigrok package version number (NOT the same as shared lib version!).
Uwe Hermann6dddd902012-03-31 11:28:24 +020025m4_define([sr_package_version_major], [0])
Uwe Hermann4133caa2014-05-06 23:00:08 +020026m4_define([sr_package_version_minor], [3])
27m4_define([sr_package_version_micro], [0])
Uwe Hermann6dddd902012-03-31 11:28:24 +020028m4_define([sr_package_version], [sr_package_version_major.sr_package_version_minor.sr_package_version_micro])
Uwe Hermann826938d2011-12-30 10:42:39 +010029
Uwe Hermann6dddd902012-03-31 11:28:24 +020030AC_INIT([libsigrok], [sr_package_version], [sigrok-devel@lists.sourceforge.net],
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +010031 [libsigrok], [http://www.sigrok.org])
Uwe Hermann826938d2011-12-30 10:42:39 +010032AC_CONFIG_HEADER([config.h])
Uwe Hermannd8521c92012-01-03 21:55:48 +010033AC_CONFIG_MACRO_DIR([autostuff])
34AC_CONFIG_AUX_DIR([autostuff])
Uwe Hermann826938d2011-12-30 10:42:39 +010035
Uwe Hermannef7228b2012-01-28 21:26:56 +010036# We require at least automake 1.11 (needed for 'silent rules').
Uwe Hermann67bd8052014-03-19 23:04:55 +010037AM_INIT_AUTOMAKE([1.11 -Wall -Werror subdir-objects check-news color-tests])
Uwe Hermann826938d2011-12-30 10:42:39 +010038m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
Pekka Nikander432e5e92012-05-11 19:23:21 +030039m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
Uwe Hermann826938d2011-12-30 10:42:39 +010040
Uwe Hermann6dddd902012-03-31 11:28:24 +020041AH_TOP([#ifndef SR_CONFIG_H
42#define SR_CONFIG_H /* To stop multiple inclusions. */])
43AH_BOTTOM([#endif /* SR_CONFIG_H */])
Uwe Hermann826938d2011-12-30 10:42:39 +010044
Uwe Hermann1a081ca2012-02-01 23:40:35 +010045# 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.
Martin Ling4f108532014-04-18 19:11:47 +010047COMMON_FLAGS="$CFLAGS -Wall -Wextra -fvisibility=hidden"
48CFLAGS="$COMMON_FLAGS -Wmissing-prototypes"
Martin Lingc23c8652014-07-17 18:39:49 +010049CXXFLAGS="-std=c++11 $COMMON_FLAGS"
Uwe Hermann826938d2011-12-30 10:42:39 +010050
51# Checks for programs.
Uwe Hermann826938d2011-12-30 10:42:39 +010052AC_PROG_CC
53AC_PROG_CPP
Martin Lingc23c8652014-07-17 18:39:49 +010054AC_PROG_CXX
Uwe Hermann826938d2011-12-30 10:42:39 +010055AC_PROG_INSTALL
56AC_PROG_LN_S
57
Uwe Hermannbb203cd2013-03-12 23:00:58 +010058# Required for per-target flags or subdir-objects with C sources.
59AM_PROG_CC_C_O
60
Uwe Hermann826938d2011-12-30 10:42:39 +010061# 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
Uwe Hermann3af71f02012-01-04 00:05:43 +010068# Library version for libsigrok (NOT the same as the package version).
Uwe Hermann826938d2011-12-30 10:42:39 +010069# 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
Uwe Hermann85ca9132014-05-06 22:59:00 +020072SR_LIB_VERSION_CURRENT=2
73SR_LIB_VERSION_REVISION=0
Uwe Hermann6dddd902012-03-31 11:28:24 +020074SR_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)
Uwe Hermann826938d2011-12-30 10:42:39 +010082
Bert Vermeulendbf24822013-01-14 00:52:55 +010083AC_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
Bert Vermeulend4b38742014-07-10 17:26:22 +020088# 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])
Bert Vermeulen43cd4632014-07-22 18:17:34 +0200101 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]))}@"
Bert Vermeulend4b38742014-07-10 17:26:22 +0200103])
Bert Vermeulen6ac0db12012-09-02 11:58:29 +0200104
Bert Vermeulend4b38742014-07-10 17:26:22 +0200105DRIVER([Agilent DMM], [agilent-dmm])
106DRIVER([Appa 55II], [appa-55ii])
107DRIVER([ASIX SIGMA/SIGMA2], [asix-sigma])
108DRIVER([Atten PPS3xxx], [atten-pps3xxx])
Kumar Abhishekbb993792014-07-22 01:41:52 +0530109DRIVER([BeagleLogic], [beaglelogic])
Bert Vermeulend4b38742014-07-10 17:26:22 +0200110DRIVER([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])
132DRIVER([Rigol DS], [rigol-ds])
133DRIVER([Saleae Logic16], [saleae-logic16])
134DRIVER([serial DMM], [serial-dmm])
135DRIVER([Sysclk LWLA], [sysclk-lwla])
136DRIVER([Teleinfo], [teleinfo])
137DRIVER([Testo], [testo])
138DRIVER([Tondaj SL-814], [tondaj-sl-814])
139DRIVER([UNI-T DMM], [uni-t-dmm])
140DRIVER([UNI-T UT32x], [uni-t-ut32x])
141DRIVER([Victor DMM], [victor-dmm])
142DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube])
Uwe Hermann826938d2011-12-30 10:42:39 +0100143
Mike Frysingera4737992014-06-13 22:44:38 -0400144AC_ARG_ENABLE(libserialport,
145 AC_HELP_STRING([--disable-libserialport],
146 [disable libserialport support [default=detect]]))
147
148AC_ARG_ENABLE(libftdi,
149 AC_HELP_STRING([--disable-libftdi],
150 [disable libftdi support [default=detect]]))
151
152AC_ARG_ENABLE(libusb,
153 AC_HELP_STRING([--disable-libusb],
154 [disable libusb support [default=detect]]))
155
Martin Lingc23c8652014-07-17 18:39:49 +0100156# Language binding '--enable' options
157
Bert Vermeulen6223fee2014-07-19 20:20:47 +0200158AC_ARG_ENABLE(bindings,
159 AC_HELP_STRING([--enable-bindings],
160 [build language bindings [default=yes]]),
161 [BINDINGS_ALL="$enableval"], [BINDINGS_ALL="yes"])
162
163AC_ARG_ENABLE(cxx,
Martin Lingc23c8652014-07-17 18:39:49 +0100164 AC_HELP_STRING([--enable-cxx],
165 [build C++ bindings [default=yes]]),
Bert Vermeulen6223fee2014-07-19 20:20:47 +0200166 [BINDINGS_CXX="$enableval"], [BINDINGS_CXX=$BINDINGS_ALL])
Martin Lingc23c8652014-07-17 18:39:49 +0100167
Martin Lingf7740952014-07-17 18:45:29 +0100168AC_ARG_ENABLE(python,
169 AC_HELP_STRING([--enable-python],
170 [build Python bindings [default=yes]]),
Bert Vermeulen6223fee2014-07-19 20:20:47 +0200171 [BINDINGS_PYTHON="$enableval"], [BINDINGS_PYTHON=$BINDINGS_ALL])
Martin Lingf7740952014-07-17 18:45:29 +0100172
Martin Ling9fcf4d02014-04-27 09:48:18 +0100173AC_ARG_ENABLE(java,
174 AC_HELP_STRING([--enable-java],
175 [build Java bindings [default=yes]]),
Bert Vermeulen6223fee2014-07-19 20:20:47 +0200176 [BINDINGS_JAVA="$enableval"], [BINDINGS_JAVA=$BINDINGS_ALL])
Martin Ling9fcf4d02014-04-27 09:48:18 +0100177
Martin Lingc23c8652014-07-17 18:39:49 +0100178# Check if the C++ compiler supports the C++11 standard.
179
Bert Vermeulenf8158d52014-07-18 19:55:38 +0200180m4_ifdef([AX_CXX_COMPILE_STDCXX_11], [AX_CXX_COMPILE_STDCXX_11(,[optional])],
181 [AC_MSG_NOTICE([Missing macro m4_toupper(aX_CXX_COMPILE_STDCXX_11), no C++11 check])])
Martin Lingc23c8652014-07-17 18:39:49 +0100182
183if test "x$HAVE_CXX11" != "x1"; then
184 BINDINGS_CXX="no"
185fi
186
Bert Vermeulenbcacb862014-07-18 21:12:31 +0200187# The C++ bindings use gccxml to parse libsigrok symbols.
188AC_CHECK_PROG([HAVE_GCCXML], [gccxml], [yes])
189if test "x$HAVE_GCCXML" != "xyes"; then
190 BINDINGS_CXX="no"
191fi
192
193# Python is needed for the C++ (and Python) bindings.
Bert Vermeulen57d62c42014-07-23 12:45:41 +0200194PKG_CHECK_MODULES([python], [python >= 2.7],
Bert Vermeulenbcacb862014-07-18 21:12:31 +0200195 [CXXFLAGS="$CXXFLAGS $python_CFLAGS";
196 CXXLIBS="$CXXLIBS $python_LIBS"],
197 [BINDINGS_CXX="no"])
198
199# The C++ bindings need the pygccxml Python module.
200m4_ifdef([AX_PYTHON_MODULE], [AX_PYTHON_MODULE([pygccxml])],
201 # We'll let it go through even if the macro wasn't found, the python
202 # module may still be there.
203 [HAVE_PYTHON_PYGCCXML="yes";
204 AC_MSG_NOTICE([Missing macro m4_toupper(aX_PYTHON_MODULE), no pygccxml check])]
205)
206if test "x$HAVE_PYMOD_PYGCCXML" != "xyes"; then
207 BINDINGS_CXX="no"
208fi
209
Martin Ling9fcf4d02014-04-27 09:48:18 +0100210# Python and Java bindings depend on C++ bindings.
Martin Lingf7740952014-07-17 18:45:29 +0100211
212if test "x$BINDINGS_CXX" != "xyes"; then
213 BINDINGS_PYTHON="no"
Martin Ling9fcf4d02014-04-27 09:48:18 +0100214 BINDINGS_JAVA="no"
Martin Lingf7740952014-07-17 18:45:29 +0100215fi
216
Uwe Hermann826938d2011-12-30 10:42:39 +0100217# Checks for libraries.
218
Martin Ling1c6736a2013-12-06 02:26:58 +0000219case "$host" in
220*mingw*)
221 # We need to link against the Winsock2 library for SCPI over TCP.
222 LIBS="$LIBS -lws2_32";;
223esac
224
Uwe Hermann826938d2011-12-30 10:42:39 +0100225# This variable collects the pkg-config names of all detected libs.
226# It is then used to construct the "Requires.private:" field in the
227# libsigrok.pc file.
Uwe Hermann6dddd902012-03-31 11:28:24 +0200228SR_PKGLIBS=""
Uwe Hermann826938d2011-12-30 10:42:39 +0100229
Uwe Hermannee8ddd82013-05-10 20:59:42 +0200230# libm (the standard math library) is always needed.
231AC_SEARCH_LIBS([pow], [m])
232
Uwe Hermann7d4874c2014-01-30 17:02:34 +0100233# RPC is only needed for VXI support.
Aurelien Jacobsd5876cf2014-01-09 23:44:35 +0100234AC_MSG_CHECKING([for RPC support])
235AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <rpc/rpc.h>],
Matthias Heidbrink823b4e52014-02-05 19:50:46 +0100236 [CLIENT *rpc_test(void)],
237 [{ return clnt_create("", 0, 0, ""); }])],
238 [AC_MSG_RESULT([yes]); have_rpc=1],
239 [AC_MSG_RESULT([no]); have_rpc=0])
Aurelien Jacobsd5876cf2014-01-09 23:44:35 +0100240# Define HAVE_RPC in config.h if we found RPC support.
Uwe Hermann7d4874c2014-01-30 17:02:34 +0100241AC_DEFINE_UNQUOTED(HAVE_RPC, [$have_rpc], [Specifies whether we have RPC support.])
Aurelien Jacobsd5876cf2014-01-09 23:44:35 +0100242# VXI support is only compiled if RPC support was found.
Uwe Hermann7d4874c2014-01-30 17:02:34 +0100243AM_CONDITIONAL(NEED_RPC, test "x$have_rpc" != "x0")
Aurelien Jacobsd5876cf2014-01-09 23:44:35 +0100244
Uwe Hermannaba69262013-04-08 14:46:13 +0200245# libglib-2.0 is always needed. Abort if it's not found.
Uwe Hermann826938d2011-12-30 10:42:39 +0100246# Note: glib-2.0 is part of the libsigrok API (hard pkg-config requirement).
Uwe Hermann406569d2013-04-12 18:47:06 +0200247# We require at least 2.32.0 due to e.g. g_variant_new_fixed_array().
248AM_PATH_GLIB_2_0([2.32.0],
Martin Ling4f108532014-04-18 19:11:47 +0100249 [LIB_CFLAGS="$LIB_CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100250
Uwe Hermannaba69262013-04-08 14:46:13 +0200251# libzip is always needed. Abort if it's not found.
Uwe Hermann8819bf52013-10-16 18:10:29 +0200252PKG_CHECK_MODULES([libzip], [libzip >= 0.10],
Martin Ling4f108532014-04-18 19:11:47 +0100253 [LIB_CFLAGS="$LIB_CFLAGS $libzip_CFLAGS"; LIBS="$LIBS $libzip_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200254 SR_PKGLIBS="$SR_PKGLIBS libzip"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100255
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100256# libserialport is only needed for some hardware drivers. Disable the
257# respective drivers if it is not found.
Mike Frysingera4737992014-06-13 22:44:38 -0400258if test "x$enable_libserialport" != "xno"; then
259 PKG_CHECK_MODULES([libserialport], [libserialport >= 0.1.0],
260 [have_libserialport="yes"; LIB_CFLAGS="$LIB_CFLAGS $libserialport_CFLAGS";
261 LIBS="$LIBS $libserialport_LIBS";
262 SR_PKGLIBS="$SR_PKGLIBS libserialport"],
263 [have_libserialport="no"])
264 if test "x$enable_libserialport$have_libserialport" = "xyesno"; then
265 AC_MSG_ERROR([libserialport support requested, but it was not found])
266 fi
267else
268 have_libserialport="no"
269fi
270
271# Define HAVE_LIBSERIALPORT in config.h if we found libserialport.
272if test "x$have_libserialport" = "xno"; then
273 HW_AGILENT_DMM="no"; HW_APPA_55II="no";
Marc Schink1c183902014-01-11 13:55:26 +0100274 HW_ATTEN_PPS3XXX="no"; HW_BRYMEN_DMM="no"; HW_CEM_DT_885X="no";
Matthias Heidbrink823b4e52014-02-05 19:50:46 +0100275 HW_CENTER_3XX="no"; HW_COLEAD_SLM="no"; HW_CONRAD_DIGI_35_CPU="no";
Uwe Hermann8c218972014-05-04 17:44:05 +0200276 HW_FLUKE_DMM="no"; HW_GMC_MH_1X_2X="no"; HW_HAMEG_HMO="no";
Matthias Heidbrinkadeae782014-06-27 23:31:50 +0200277 HW_MANSON_HCS_3XXX="no"; HW_MIC_985XX="no"; HW_MOTECH_LPS_30X="no";
Bert Vermeulend4b38742014-07-10 17:26:22 +0200278 HW_NORMA_DMM="no"; HW_OPENBENCH_LOGIC_SNIFFER="no"; HW_SERIAL_DMM="no";
279 HW_TELEINFO="no"; HW_TONDAJ_SL_814="no";
Mike Frysingera4737992014-06-13 22:44:38 -0400280else
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100281 AC_DEFINE_UNQUOTED(HAVE_LIBSERIALPORT, [1],
282 [Specifies whether we have libserialport.])
283fi
284
285# Serial port helper code is only compiled in if libserialport was found.
286AM_CONDITIONAL(NEED_SERIAL, test "x$have_libserialport" != xno)
Martin Linga9bce5a2013-10-27 15:51:24 +0000287
Martin Ling1fb23122014-02-01 10:01:05 +0000288PKG_CHECK_MODULES([librevisa], [librevisa >= 0.0.20130812],
Martin Ling4f108532014-04-18 19:11:47 +0100289 [have_librevisa="yes"; LIB_CFLAGS="$LIB_CFLAGS $librevisa_CFLAGS";
Martin Ling1fb23122014-02-01 10:01:05 +0000290 LIBS="$LIBS $librevisa_LIBS";
Martin Lingb84b7ee2014-02-02 16:21:33 -0800291 SR_PKGLIBS="$SR_PKGLIBS librevisa"],
292 [have_librevisa="no"])
Martin Ling1fb23122014-02-01 10:01:05 +0000293
294# VISA SCPI backend is only compiled in if librevisa was found.
295AM_CONDITIONAL(NEED_VISA, test "x$have_librevisa" != xno)
296
297# Define HAVE_LIBREVISA in config.h if we found librevisa.
298if test "x$have_librevisa" != "xno"; then
299 AC_DEFINE_UNQUOTED(HAVE_LIBREVISA, [1],
300 [Specifies whether we have librevisa.])
301fi
302
Uwe Hermannaba69262013-04-08 14:46:13 +0200303# libusb-1.0 is only needed for some hardware drivers. Disable the respective
304# drivers if it is not found.
Mike Frysingera4737992014-06-13 22:44:38 -0400305if test "x$enable_libusb" != "xno"; then
306 case "$host" in
307 *freebsd*)
308 # FreeBSD comes with an "integrated" libusb-1.0-style USB API.
309 # This means libusb-1.0 is always available, no need to check for it,
310 # and no need to (potentially) disable any drivers if it's not found.
311 have_libusb1_0="yes"
312 ;;
313 *)
314 PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.16],
315 [have_libusb1_0="yes"; LIB_CFLAGS="$LIB_CFLAGS $libusb_CFLAGS";
316 LIBS="$LIBS $libusb_LIBS";
317 SR_PKGLIBS="$SR_PKGLIBS libusb-1.0"],
318 [have_libusb1_0="no"])
319 if test "x$enable_libusb$have_libusb1_0" = "xyesno"; then
320 AC_MSG_ERROR([libusb support requested, but it was not found])
321 fi
322 ;;
323 esac
324else
325 have_libusb1_0="no"
326fi
327
328# Define HAVE_LIBUSB_1_0 in config.h if we found libusb-1.0.
329if test "x$have_libusb1_0" = "xno"; then
330 HW_BRYMEN_BM86X="no"; HW_FX2LAFW="no";
331 HW_HANTEK_DSO="no"; HW_IKALOGIC_SCANALOGIC2="no";
332 HW_KECHENG_KC_330B="no"; HW_LASCAR_EL_USB="no";
Bert Vermeulen0acdd792014-07-01 01:34:29 +0200333 HW_SYSCLK_LWLA="no"; HW_TESTO="no"; HW_UNI_T_DMM="no";
Mike Frysingera4737992014-06-13 22:44:38 -0400334 HW_UNI_T_UT32X="no"; HW_VICTOR_DMM="no";
335 HW_ZEROPLUS_LOGIC_CUBE="no"; HW_SALEAE_LOGIC16="no";
336else
Uwe Hermannaba69262013-04-08 14:46:13 +0200337 AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1],
338 [Specifies whether we have a libusb.h header.])
Mike Frysingera4737992014-06-13 22:44:38 -0400339fi
Uwe Hermann826938d2011-12-30 10:42:39 +0100340
Uwe Hermann3fd1d0e2013-04-08 15:40:57 +0200341# USB + FX2 firmware helper code is only compiled in if libusb-1.0 was found.
342AM_CONDITIONAL(NEED_USB, test "x$have_libusb1_0" != xno)
343
Uwe Hermannaba69262013-04-08 14:46:13 +0200344# libftdi is only needed for some hardware drivers. Disable them if not found.
Mike Frysingera4737992014-06-13 22:44:38 -0400345if test "x$enable_libftdi" != "xno"; then
346 PKG_CHECK_MODULES([libftdi], [libftdi >= 0.16],
347 [have_libftdi="yes"; LIB_CFLAGS="$LIB_CFLAGS $libftdi_CFLAGS";
348 LIBS="$LIBS $libftdi_LIBS";
349 SR_PKGLIBS="$SR_PKGLIBS libftdi"],
Uwe Hermannc78bcc62014-06-16 13:19:34 +0200350 [PKG_CHECK_MODULES([libftdi1], [libftdi1 >= 1.0],
Dan Horák92506352014-06-15 11:08:37 +0200351 [LIB_CFLAGS="$LIB_CFLAGS $libftdi1_CFLAGS";
352 LIBS="$LIBS $libftdi1_LIBS";
353 SR_PKGLIBS="$SR_PKGLIBS libftdi1"],
354 [have_libftdi="no"])])
Mike Frysingera4737992014-06-13 22:44:38 -0400355 if test "x$enable_libftdi$have_libftdi" = "xyesno"; then
356 AC_MSG_ERROR([libftdi support requested, but it was not found])
357 fi
358else
359 have_libftdi="no"
360fi
361
362if test "x$have_libftdi" = "xno"; then
363 HW_ASIX_SIGMA="no"; HW_CHRONOVU_LA="no"; HW_IKALOGIC_SCANAPLUS="no";
364fi
Uwe Hermann826938d2011-12-30 10:42:39 +0100365
Martin Lingc23c8652014-07-17 18:39:49 +0100366# glibmm-2.4 is needed for the C++ bindings.
367PKG_CHECK_MODULES([glibmm], [glibmm-2.4 >= 2.32.0],
368 [CXXFLAGS="$CXXFLAGS $glibmm_CFLAGS";
369 CXXLIBS="$CXXLIBS $glibmm_LIBS"], [BINDINGS_CXX="no"])
370
Martin Lingf7740952014-07-17 18:45:29 +0100371# PyGObject is needed for the Python bindings.
Uwe Hermann022a7fe2014-07-22 23:11:44 +0200372PKG_CHECK_MODULES([pygobject], [pygobject-3.0 >= 3.0.0],
Martin Lingf7740952014-07-17 18:45:29 +0100373 [CXXFLAGS="$CXXFLAGS $pygobject_CFLAGS";
Martin Lingabc71462014-07-19 15:10:25 +0100374 CXXLIBS="$CXXLIBS $pygobject_LIBS";
375 PKG_CHECK_MODULES([pygobject_3_7_91], [pygobject-3.0 >= 3.7.91],
376 [pyg_flags_signed=0], [pyg_flags_signed=1]);
377 AC_DEFINE_UNQUOTED(PYGOBJECT_FLAGS_SIGNED, [$pyg_flags_signed],
378 [Whether last argument to pyg_flags_get_value() is signed])],
379 [BINDINGS_PYTHON="no"])
Martin Lingf7740952014-07-17 18:45:29 +0100380
Uwe Hermannaba69262013-04-08 14:46:13 +0200381# The Check unit testing framework is optional. Disable if not found.
Uwe Hermann79bb0e92013-03-07 09:37:42 +0100382PKG_CHECK_MODULES([check], [check >= 0.9.4],
Mike Frysinger82bfb642014-06-13 22:44:39 -0400383 [have_check="yes"], [have_check="no"])
Uwe Hermann79bb0e92013-03-07 09:37:42 +0100384AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
385
Martin Ling37fa80b2013-12-07 19:42:35 +0000386# The OLS driver uses serial port file descriptors directly, and therefore
387# will not currently work on Windows.
388case "$host" in
389*mingw*)
Bert Vermeulend4b38742014-07-10 17:26:22 +0200390 HW_OPENBENCH_LOGIC_SNIFFER="no"
Matthias Heidbrinkd0a92ab2014-05-19 19:44:04 +0200391 ;;
Martin Ling37fa80b2013-12-07 19:42:35 +0000392esac
393
Uwe Hermann6dddd902012-03-31 11:28:24 +0200394AC_SUBST(SR_PKGLIBS)
Uwe Hermann826938d2011-12-30 10:42:39 +0100395
Martin Ling63d0fb72014-04-26 03:03:11 +0100396CFLAGS="$CFLAGS -I./include/libsigrok $LIB_CFLAGS"
Martin Lingc23c8652014-07-17 18:39:49 +0100397CXXFLAGS="$CXXFLAGS -I./include -I./bindings/cxx/include $LIB_CFLAGS"
Martin Ling4f108532014-04-18 19:11:47 +0100398
Martin Ling9fcf4d02014-04-27 09:48:18 +0100399# Find Java compiler and JNI includes for Java bindings.
400
401AC_CHECK_PROG([HAVE_JAVAC], [javac], [yes], [no])
402
403if test "x$HAVE_JAVAC" = "xyes"; then
404 AX_PROG_JAVAC
405 AX_JNI_INCLUDE_DIR
406 for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS; do
407 CXXFLAGS="$CXXFLAGS -I$JNI_INCLUDE_DIR"
408 done
409else
410 BINDINGS_JAVA="no"
411fi
412
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200413# Now set AM_CONDITIONALs and AC_DEFINEs for the enabled/disabled drivers.
414
415AM_CONDITIONAL(HW_AGILENT_DMM, test x$HW_AGILENT_DMM = xyes)
416if test "x$HW_AGILENT_DMM" = "xyes"; then
417 AC_DEFINE(HAVE_HW_AGILENT_DMM, 1, [Agilent DMM support])
418fi
419
Aurelien Jacobs5e7a8e52013-12-01 01:13:44 +0100420AM_CONDITIONAL(HW_APPA_55II, test x$HW_APPA_55II = xyes)
421if test "x$HW_APPA_55II" = "xyes"; then
422 AC_DEFINE(HAVE_HW_APPA_55II, 1, [APPA 55II support])
423fi
424
Uwe Hermann9e165e72013-05-08 19:33:30 +0200425AM_CONDITIONAL(HW_ASIX_SIGMA, test x$HW_ASIX_SIGMA = xyes)
426if test "x$HW_ASIX_SIGMA" = "xyes"; then
427 AC_DEFINE(HAVE_HW_ASIX_SIGMA, 1, [ASIX SIGMA/SIGMA2 support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200428fi
429
Marc Schink1c183902014-01-11 13:55:26 +0100430AM_CONDITIONAL(HW_ATTEN_PPS3XXX, test x$HW_ATTEN_PPS3XXX = xyes)
431if test "x$HW_ATTEN_PPS3XXX" = "xyes"; then
Matthias Heidbrinkd0a92ab2014-05-19 19:44:04 +0200432 AC_DEFINE(HAVE_HW_ATTEN_PPS3XXX, 1, [Atten PPS3xxx support])
Marc Schink1c183902014-01-11 13:55:26 +0100433fi
434
Kumar Abhishekbb993792014-07-22 01:41:52 +0530435AM_CONDITIONAL(HW_BEAGLELOGIC, test x$HW_BEAGLELOGIC = xyes)
436if test "x$HW_BEAGLELOGIC" = "xyes"; then
437 AC_DEFINE(HAVE_HW_BEAGLELOGIC, 1, [BeagleLogic support])
438fi
439
Uwe Hermann1b950bc2014-02-28 13:08:53 +0100440AM_CONDITIONAL(HW_BRYMEN_BM86X, test x$HW_BRYMEN_BM86X = xyes)
441if test "x$HW_BRYMEN_BM86X" = "xyes"; then
442 AC_DEFINE(HAVE_HW_BRYMEN_BM86X, 1, [Brymen BM86X support])
443fi
444
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200445AM_CONDITIONAL(HW_BRYMEN_DMM, test x$HW_BRYMEN_DMM = xyes)
446if test "x$HW_BRYMEN_DMM" = "xyes"; then
Uwe Hermanne4fad802013-04-09 10:03:58 +0200447 AC_DEFINE(HAVE_HW_BRYMEN_DMM, 1, [Brymen DMM support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200448fi
449
Uwe Hermann32be5b22013-06-21 15:18:33 +0200450AM_CONDITIONAL(HW_CEM_DT_885X, test x$HW_CEM_DT_885X = xyes)
451if test "x$HW_CEM_DT_885X" = "xyes"; then
452 AC_DEFINE(HAVE_HW_CEM_DT_885X, 1, [CEM DT-885x support])
453fi
454
Uwe Hermann44331452013-07-19 09:35:48 +0200455AM_CONDITIONAL(HW_CENTER_3XX, test x$HW_CENTER_3XX = xyes)
456if test "x$HW_CENTER_3XX" = "xyes"; then
457 AC_DEFINE(HAVE_HW_CENTER_3XX, 1, [Center 3xx support])
458fi
459
Uwe Hermann7b356712014-04-01 21:47:11 +0200460AM_CONDITIONAL(HW_CHRONOVU_LA, test x$HW_CHRONOVU_LA = xyes)
461if test "x$HW_CHRONOVU_LA" = "xyes"; then
462 AC_DEFINE(HAVE_HW_CHRONOVU_LA, 1, [ChronoVu LA support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200463fi
464
465AM_CONDITIONAL(HW_COLEAD_SLM, test x$HW_COLEAD_SLM = xyes)
466if test "x$HW_COLEAD_SLM" = "xyes"; then
467 AC_DEFINE(HAVE_HW_COLEAD_SLM, 1, [Colead SLM support])
468fi
469
Matthias Heidbrink823b4e52014-02-05 19:50:46 +0100470AM_CONDITIONAL(HW_CONRAD_DIGI_35_CPU, test x$HW_CONRAD_DIGI_35_CPU = xyes)
471if test "x$HW_CONRAD_DIGI_35_CPU" = "xyes"; then
472 AC_DEFINE(HAVE_HW_CONRAD_DIGI_35_CPU, 1, [Conrad DIGI 35 CPU support])
473fi
474
Uwe Hermann9e165e72013-05-08 19:33:30 +0200475AM_CONDITIONAL(HW_DEMO, test x$HW_DEMO = xyes)
476if test "x$HW_DEMO" = "xyes"; then
477 AC_DEFINE(HAVE_HW_DEMO, 1, [Demo driver support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200478fi
479
480AM_CONDITIONAL(HW_FLUKE_DMM, test x$HW_FLUKE_DMM = xyes)
481if test "x$HW_FLUKE_DMM" = "xyes"; then
482 AC_DEFINE(HAVE_HW_FLUKE_DMM, 1, [Fluke DMM support])
483fi
484
Uwe Hermann9e165e72013-05-08 19:33:30 +0200485AM_CONDITIONAL(HW_FX2LAFW, test x$HW_FX2LAFW = xyes)
486if test "x$HW_FX2LAFW" = "xyes"; then
487 AC_DEFINE(HAVE_HW_FX2LAFW, 1, [fx2lafw support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200488fi
489
Matthias Heidbrink7b4edcb2013-11-19 17:49:23 +0100490AM_CONDITIONAL(HW_GMC_MH_1X_2X, test x$HW_GMC_MH_1X_2X = xyes)
491if test "x$HW_GMC_MH_1X_2X" = "xyes"; then
492 AC_DEFINE(HAVE_HW_GMC_MH_1X_2X, 1, [gmc-mh-1x-2x support])
493fi
494
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200495AM_CONDITIONAL(HW_HANTEK_DSO, test x$HW_HANTEK_DSO = xyes)
496if test "x$HW_HANTEK_DSO" = "xyes"; then
497 AC_DEFINE(HAVE_HW_HANTEK_DSO, 1, [Hantek DSO support])
498fi
499
Uwe Hermann582b3d22013-12-03 15:37:36 +0100500AM_CONDITIONAL(HW_HAMEG_HMO, test x$HW_HAMEG_HMO = xyes)
501if test "x$HW_HAMEG_HMO" = "xyes"; then
502 AC_DEFINE(HAVE_HW_HAMEG_HMO, 1, [Hameg HMO support])
503fi
504
Uwe Hermann1f36a6c2013-06-21 15:11:36 +0200505AM_CONDITIONAL(HW_IKALOGIC_SCANALOGIC2, test x$HW_IKALOGIC_SCANALOGIC2 = xyes)
506if test "x$HW_IKALOGIC_SCANALOGIC2" = "xyes"; then
Uwe Hermannce954282013-08-07 00:22:14 +0200507 AC_DEFINE(HAVE_HW_IKALOGIC_SCANALOGIC2, 1, [IKALOGIC Scanalogic-2 support])
Uwe Hermann1f36a6c2013-06-21 15:11:36 +0200508fi
509
Uwe Hermannfdf4a1f2013-06-21 17:15:10 +0200510AM_CONDITIONAL(HW_IKALOGIC_SCANAPLUS, test x$HW_IKALOGIC_SCANAPLUS = xyes)
511if test "x$HW_IKALOGIC_SCANAPLUS" = "xyes"; then
Uwe Hermannce954282013-08-07 00:22:14 +0200512 AC_DEFINE(HAVE_HW_IKALOGIC_SCANAPLUS, 1, [IKALOGIC ScanaPLUS support])
Uwe Hermannfdf4a1f2013-06-21 17:15:10 +0200513fi
514
Bert Vermeulened759a02013-06-20 21:31:31 +0200515AM_CONDITIONAL(HW_KECHENG_KC_330B, test x$HW_KECHENG_KC_330B = xyes)
516if test "x$HW_KECHENG_KC_330B" = "xyes"; then
517 AC_DEFINE(HAVE_HW_KECHENG_KC_330B, 1, [Kecheng KC-330B support])
518fi
519
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200520AM_CONDITIONAL(HW_LASCAR_EL_USB, test x$HW_LASCAR_EL_USB = xyes)
521if test "x$HW_LASCAR_EL_USB" = "xyes"; then
522 AC_DEFINE(HAVE_HW_LASCAR_EL_USB, 1, [Lascar EL-USB support])
523fi
524
Uwe Hermann8f4e9222014-06-23 00:31:22 +0200525AM_CONDITIONAL(HW_MANSON_HCS_3XXX, test x$HW_MANSON_HCS_3XXX = xyes)
526if test "x$HW_MANSON_HCS_3XXX" = "xyes"; then
527 AC_DEFINE(HAVE_HW_MANSON_HCS_3XXX, 1, [Manson HCS-3xxx support])
528fi
529
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200530AM_CONDITIONAL(HW_MIC_985XX, test x$HW_MIC_985XX = xyes)
531if test "x$HW_MIC_985XX" = "xyes"; then
532 AC_DEFINE(HAVE_HW_MIC_985XX, 1, [MIC 985xx support])
533fi
534
Matthias Heidbrink41b7bd02014-05-19 19:23:30 +0200535AM_CONDITIONAL(HW_MOTECH_LPS_30X, test x$HW_MOTECH_LPS_30X = xyes)
536if test "x$HW_MOTECH_LPS_30X" = "xyes"; then
537 AC_DEFINE(HAVE_HW_MOTECH_LPS_30X, 1, [motech-lps-30x support])
538fi
539
Matthias Heidbrinkbfd48772013-10-17 10:57:17 +0200540AM_CONDITIONAL(HW_NORMA_DMM, test x$HW_NORMA_DMM = xyes)
541if test "x$HW_NORMA_DMM" = "xyes"; then
Matthias Heidbrinkd0a92ab2014-05-19 19:44:04 +0200542 AC_DEFINE(HAVE_HW_NORMA_DMM, 1, [Norma DMM support])
Matthias Heidbrinkbfd48772013-10-17 10:57:17 +0200543fi
544
Bert Vermeulend4b38742014-07-10 17:26:22 +0200545AM_CONDITIONAL(HW_OPENBENCH_LOGIC_SNIFFER, test x$HW_OPENBENCH_LOGIC_SNIFFER = xyes)
546if test "x$HW_OPENBENCH_LOGIC_SNIFFER" = "xyes"; then
547 AC_DEFINE(HAVE_HW_OPENBENCH_LOGIC_SNIFFER, 1, [OpenBench Logic Sniffer (OLS) support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200548fi
549
Martin Ling3086efd2013-10-31 17:31:39 +0000550AM_CONDITIONAL(HW_RIGOL_DS, test x$HW_RIGOL_DS = xyes)
551if test "x$HW_RIGOL_DS" = "xyes"; then
552 AC_DEFINE(HAVE_HW_RIGOL_DS, 1, [Rigol DS support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200553fi
554
Uwe Hermann5724a202013-11-03 23:28:55 +0100555AM_CONDITIONAL(HW_SALEAE_LOGIC16, test x$HW_SALEAE_LOGIC16 = xyes)
556if test "x$HW_SALEAE_LOGIC16" = "xyes"; then
557 AC_DEFINE(HAVE_HW_SALEAE_LOGIC16, 1, [Saleae Logic16 support])
558fi
559
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200560AM_CONDITIONAL(HW_SERIAL_DMM, test x$HW_SERIAL_DMM = xyes)
561if test "x$HW_SERIAL_DMM" = "xyes"; then
562 AC_DEFINE(HAVE_HW_SERIAL_DMM, 1, [Serial DMM support])
563fi
564
Uwe Hermann87283d92014-01-14 19:36:28 +0100565AM_CONDITIONAL(HW_SYSCLK_LWLA, test x$HW_SYSCLK_LWLA = xyes)
566if test "x$HW_SYSCLK_LWLA" = "xyes"; then
567 AC_DEFINE(HAVE_HW_SYSCLK_LWLA, 1, [Sysclk LWLA support])
568fi
569
Uwe Hermann122d33d2013-11-03 23:28:03 +0100570AM_CONDITIONAL(HW_TELEINFO, test x$HW_TELEINFO = xyes)
571if test "x$HW_TELEINFO" = "xyes"; then
572 AC_DEFINE(HAVE_HW_TELEINFO, 1, [Teleinfo support])
573fi
574
Bert Vermeulen0acdd792014-07-01 01:34:29 +0200575AM_CONDITIONAL(HW_TESTO, test x$HW_TESTO = xyes)
576if test "x$HW_TESTO" = "xyes"; then
577 AC_DEFINE(HAVE_HW_TESTO, 1, [Testo support])
578fi
579
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200580AM_CONDITIONAL(HW_TONDAJ_SL_814, test x$HW_TONDAJ_SL_814 = xyes)
581if test "x$HW_TONDAJ_SL_814" = "xyes"; then
582 AC_DEFINE(HAVE_HW_TONDAJ_SL_814, 1, [Tondaj SL-814 support])
583fi
584
585AM_CONDITIONAL(HW_UNI_T_DMM, test x$HW_UNI_T_DMM = xyes)
586if test "x$HW_UNI_T_DMM" = "xyes"; then
587 AC_DEFINE(HAVE_HW_UNI_T_DMM, 1, [UNI-T DMM support])
588fi
589
Bert Vermeulen3877dde2013-08-09 00:29:04 +0200590AM_CONDITIONAL(HW_UNI_T_UT32X, test x$HW_UNI_T_UT32X = xyes)
591if test "x$HW_UNI_T_UT32X" = "xyes"; then
592 AC_DEFINE(HAVE_HW_UNI_T_UT32X, 1, [UNI-T UT32x support])
593fi
594
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200595AM_CONDITIONAL(HW_VICTOR_DMM, test x$HW_VICTOR_DMM = xyes)
596if test "x$HW_VICTOR_DMM" = "xyes"; then
Uwe Hermanne4fad802013-04-09 10:03:58 +0200597 AC_DEFINE(HAVE_HW_VICTOR_DMM, 1, [Victor DMM support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200598fi
599
Uwe Hermann9e165e72013-05-08 19:33:30 +0200600AM_CONDITIONAL(HW_ZEROPLUS_LOGIC_CUBE, test x$HW_ZEROPLUS_LOGIC_CUBE = xyes)
601if test "x$HW_ZEROPLUS_LOGIC_CUBE" = "xyes"; then
602 AC_DEFINE(HAVE_HW_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200603fi
604
Martin Lingc23c8652014-07-17 18:39:49 +0100605AM_CONDITIONAL(BINDINGS_CXX, test x$BINDINGS_CXX = xyes)
606
Martin Lingf7740952014-07-17 18:45:29 +0100607AM_CONDITIONAL(BINDINGS_PYTHON, test x$BINDINGS_PYTHON = xyes)
608
Martin Ling9fcf4d02014-04-27 09:48:18 +0100609AM_CONDITIONAL(BINDINGS_JAVA, test x$BINDINGS_JAVA = xyes)
610
Uwe Hermann826938d2011-12-30 10:42:39 +0100611# Checks for header files.
612# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
Uwe Hermann826938d2011-12-30 10:42:39 +0100613
614# Checks for typedefs, structures, and compiler characteristics.
Marcus Comstedt7b5daad2013-08-04 13:46:35 +0200615AC_C_BIGENDIAN
Uwe Hermann826938d2011-12-30 10:42:39 +0100616
Uwe Hermannfb6f1972012-05-30 00:00:33 +0200617AC_SUBST(FIRMWARE_DIR, "$datadir/sigrok-firmware")
Uwe Hermann826938d2011-12-30 10:42:39 +0100618AC_SUBST(MAKEFLAGS, '--no-print-directory')
619AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
620
Uwe Hermann6dddd902012-03-31 11:28:24 +0200621SR_PACKAGE_VERSION_MAJOR=sr_package_version_major
622SR_PACKAGE_VERSION_MINOR=sr_package_version_minor
623SR_PACKAGE_VERSION_MICRO=sr_package_version_micro
624SR_PACKAGE_VERSION=sr_package_version
Uwe Hermann826938d2011-12-30 10:42:39 +0100625
Uwe Hermann6dddd902012-03-31 11:28:24 +0200626AC_SUBST(SR_PACKAGE_VERSION_MAJOR)
627AC_SUBST(SR_PACKAGE_VERSION_MINOR)
628AC_SUBST(SR_PACKAGE_VERSION_MICRO)
629AC_SUBST(SR_PACKAGE_VERSION)
Uwe Hermann826938d2011-12-30 10:42:39 +0100630
Martin Lingc23c8652014-07-17 18:39:49 +0100631AC_CONFIG_FILES([Makefile include/libsigrok/version.h libsigrok.pc
632 bindings/cxx/libsigrokxx.pc])
Uwe Hermann826938d2011-12-30 10:42:39 +0100633
634AC_OUTPUT
635
636echo
Uwe Hermann45aed072012-01-04 00:49:21 +0100637echo "libsigrok configuration summary:"
Uwe Hermann826938d2011-12-30 10:42:39 +0100638echo
Uwe Hermann6dddd902012-03-31 11:28:24 +0200639echo " - Package version (major.minor.micro): $SR_PACKAGE_VERSION"
640echo " - Library version (current:revision:age): $SR_LIB_VERSION"
Uwe Hermann45aed072012-01-04 00:49:21 +0100641echo " - Prefix: $prefix"
Uwe Hermann6bad8482013-04-09 18:47:31 +0200642echo " - Building on: $build"
643echo " - Building for: $host"
Uwe Hermann45aed072012-01-04 00:49:21 +0100644echo
645echo "Detected libraries:"
646echo
647
648# Note: This only works for libs with pkg-config integration.
Uwe Hermann271cdfd2014-07-22 23:15:11 +0200649for 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" "glibmm-2.4 >= 2.32.0" "pygobject-3.0 >= 3.0.0" "check >= 0.9.4"; do
Uwe Hermann958326f2014-04-05 13:35:49 +0200650 optional="OPTIONAL"
651 if test "x$lib" = "xglib-2.0 >= 2.32.0"; then optional="REQUIRED"; fi
652 if test "x$lib" = "xlibzip >= 0.10"; then optional="REQUIRED"; fi
Uwe Hermann45aed072012-01-04 00:49:21 +0100653 if `$PKG_CONFIG --exists $lib`; then
654 ver=`$PKG_CONFIG --modversion $lib`
655 answer="yes ($ver)"
656 else
657 answer="no"
658 fi
Uwe Hermann958326f2014-04-05 13:35:49 +0200659 echo " - ($optional) $lib: $answer"
Uwe Hermann45aed072012-01-04 00:49:21 +0100660done
661
Bert Vermeulen43cd4632014-07-22 18:17:34 +0200662eval echo -e "@Enabled hardware drivers:@@${driver_summary}" | tr @ \\n
Uwe Hermann826938d2011-12-30 10:42:39 +0100663
Bert Vermeulen43cd4632014-07-22 18:17:34 +0200664echo -e "Enabled language bindings:\n"
665echo " - C++............................. $BINDINGS_CXX"
666echo " - Python.......................... $BINDINGS_PYTHON"
667echo " - Java............................ $BINDINGS_JAVA"
Martin Lingc23c8652014-07-17 18:39:49 +0100668echo