blob: c8992ba1350af9df76c2dbe2a48200a4732139c0 [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"
Uwe Hermann826938d2011-12-30 10:42:39 +010049
50# Checks for programs.
Uwe Hermann826938d2011-12-30 10:42:39 +010051AC_PROG_CC
52AC_PROG_CPP
53AC_PROG_INSTALL
54AC_PROG_LN_S
55
Uwe Hermannbb203cd2013-03-12 23:00:58 +010056# Required for per-target flags or subdir-objects with C sources.
57AM_PROG_CC_C_O
58
Uwe Hermann826938d2011-12-30 10:42:39 +010059# Initialize libtool.
60LT_INIT
61
62# Initialize pkg-config.
63# We require at least 0.22, as "Requires.private" behaviour changed there.
64PKG_PROG_PKG_CONFIG([0.22])
65
Uwe Hermann3af71f02012-01-04 00:05:43 +010066# Library version for libsigrok (NOT the same as the package version).
Uwe Hermann826938d2011-12-30 10:42:39 +010067# Carefully read the libtool docs before updating these numbers!
68# The algorithm for determining which number to change (and how) is nontrivial!
69# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
Uwe Hermann85ca9132014-05-06 22:59:00 +020070SR_LIB_VERSION_CURRENT=2
71SR_LIB_VERSION_REVISION=0
Uwe Hermann6dddd902012-03-31 11:28:24 +020072SR_LIB_VERSION_AGE=0
73SR_LIB_VERSION="$SR_LIB_VERSION_CURRENT:$SR_LIB_VERSION_REVISION:$SR_LIB_VERSION_AGE"
74SR_LIB_LDFLAGS="-version-info $SR_LIB_VERSION"
75AC_SUBST(SR_LIB_VERSION_CURRENT)
76AC_SUBST(SR_LIB_VERSION_REVISION)
77AC_SUBST(SR_LIB_VERSION_AGE)
78AC_SUBST(SR_LIB_VERSION)
79AC_SUBST(SR_LIB_LDFLAGS)
Uwe Hermann826938d2011-12-30 10:42:39 +010080
Bert Vermeulen7c1cb432012-09-10 22:14:37 +020081# Hardware support '--enable' options.
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])
101 dots=$(expr substr ".............................." 1 $(expr 32 - length $2))
102 driver_summary="${driver_summary} - $2${dots} ${m4_join([], [HW_], upperize([$2]))}\n"
103])
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])
109DRIVER([Brymen BM86x], [brymen-bm86x])
110DRIVER([Brymen DMM], [brymen-dmm])
111DRIVER([CEM DT-885x], [cem-dt-885x])
112DRIVER([Center 3xx], [center-3xx])
113DRIVER([ChronoVu LA], [chronovu-la])
114DRIVER([Colead SLM], [colead-slm])
115DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu])
116DRIVER([demo], [demo])
117DRIVER([Fluke DMM], [fluke-dmm])
118DRIVER([fx2lafw], [fx2lafw])
119DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x])
120DRIVER([Hameg HMO], [hameg-hmo])
121DRIVER([Hantek DSO], [hantek-dso])
122DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2])
123DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus])
124DRIVER([Kecheng KC-330B], [kecheng-kc-330b])
125DRIVER([Lascar EL-USB], [lascar-el-usb])
126DRIVER([Manson HCS-3xxx], [manson-hcs-3xxx])
127DRIVER([MIC 985xx], [mic-985xx])
128DRIVER([Motech LPS 30x], [motech-lps-30x])
129DRIVER([Norma DMM], [norma-dmm])
130DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer])
131DRIVER([Rigol DS], [rigol-ds])
132DRIVER([Saleae Logic16], [saleae-logic16])
133DRIVER([serial DMM], [serial-dmm])
134DRIVER([Sysclk LWLA], [sysclk-lwla])
135DRIVER([Teleinfo], [teleinfo])
136DRIVER([Testo], [testo])
137DRIVER([Tondaj SL-814], [tondaj-sl-814])
138DRIVER([UNI-T DMM], [uni-t-dmm])
139DRIVER([UNI-T UT32x], [uni-t-ut32x])
140DRIVER([Victor DMM], [victor-dmm])
141DRIVER([ZEROPLUS Logic Cube], [zeroplus-logic-cube])
Uwe Hermann826938d2011-12-30 10:42:39 +0100142
Mike Frysingera4737992014-06-13 22:44:38 -0400143AC_ARG_ENABLE(libserialport,
144 AC_HELP_STRING([--disable-libserialport],
145 [disable libserialport support [default=detect]]))
146
147AC_ARG_ENABLE(libftdi,
148 AC_HELP_STRING([--disable-libftdi],
149 [disable libftdi support [default=detect]]))
150
151AC_ARG_ENABLE(libusb,
152 AC_HELP_STRING([--disable-libusb],
153 [disable libusb support [default=detect]]))
154
Uwe Hermann826938d2011-12-30 10:42:39 +0100155# Checks for libraries.
156
Martin Ling1c6736a2013-12-06 02:26:58 +0000157case "$host" in
158*mingw*)
159 # We need to link against the Winsock2 library for SCPI over TCP.
160 LIBS="$LIBS -lws2_32";;
161esac
162
Uwe Hermann826938d2011-12-30 10:42:39 +0100163# This variable collects the pkg-config names of all detected libs.
164# It is then used to construct the "Requires.private:" field in the
165# libsigrok.pc file.
Uwe Hermann6dddd902012-03-31 11:28:24 +0200166SR_PKGLIBS=""
Uwe Hermann826938d2011-12-30 10:42:39 +0100167
Uwe Hermannee8ddd82013-05-10 20:59:42 +0200168# libm (the standard math library) is always needed.
169AC_SEARCH_LIBS([pow], [m])
170
Uwe Hermann7d4874c2014-01-30 17:02:34 +0100171# RPC is only needed for VXI support.
Aurelien Jacobsd5876cf2014-01-09 23:44:35 +0100172AC_MSG_CHECKING([for RPC support])
173AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <rpc/rpc.h>],
Matthias Heidbrink823b4e52014-02-05 19:50:46 +0100174 [CLIENT *rpc_test(void)],
175 [{ return clnt_create("", 0, 0, ""); }])],
176 [AC_MSG_RESULT([yes]); have_rpc=1],
177 [AC_MSG_RESULT([no]); have_rpc=0])
Aurelien Jacobsd5876cf2014-01-09 23:44:35 +0100178# Define HAVE_RPC in config.h if we found RPC support.
Uwe Hermann7d4874c2014-01-30 17:02:34 +0100179AC_DEFINE_UNQUOTED(HAVE_RPC, [$have_rpc], [Specifies whether we have RPC support.])
Aurelien Jacobsd5876cf2014-01-09 23:44:35 +0100180# VXI support is only compiled if RPC support was found.
Uwe Hermann7d4874c2014-01-30 17:02:34 +0100181AM_CONDITIONAL(NEED_RPC, test "x$have_rpc" != "x0")
Aurelien Jacobsd5876cf2014-01-09 23:44:35 +0100182
Uwe Hermannaba69262013-04-08 14:46:13 +0200183# libglib-2.0 is always needed. Abort if it's not found.
Uwe Hermann826938d2011-12-30 10:42:39 +0100184# Note: glib-2.0 is part of the libsigrok API (hard pkg-config requirement).
Uwe Hermann406569d2013-04-12 18:47:06 +0200185# We require at least 2.32.0 due to e.g. g_variant_new_fixed_array().
186AM_PATH_GLIB_2_0([2.32.0],
Martin Ling4f108532014-04-18 19:11:47 +0100187 [LIB_CFLAGS="$LIB_CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100188
Uwe Hermannaba69262013-04-08 14:46:13 +0200189# libzip is always needed. Abort if it's not found.
Uwe Hermann8819bf52013-10-16 18:10:29 +0200190PKG_CHECK_MODULES([libzip], [libzip >= 0.10],
Martin Ling4f108532014-04-18 19:11:47 +0100191 [LIB_CFLAGS="$LIB_CFLAGS $libzip_CFLAGS"; LIBS="$LIBS $libzip_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200192 SR_PKGLIBS="$SR_PKGLIBS libzip"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100193
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100194# libserialport is only needed for some hardware drivers. Disable the
195# respective drivers if it is not found.
Mike Frysingera4737992014-06-13 22:44:38 -0400196if test "x$enable_libserialport" != "xno"; then
197 PKG_CHECK_MODULES([libserialport], [libserialport >= 0.1.0],
198 [have_libserialport="yes"; LIB_CFLAGS="$LIB_CFLAGS $libserialport_CFLAGS";
199 LIBS="$LIBS $libserialport_LIBS";
200 SR_PKGLIBS="$SR_PKGLIBS libserialport"],
201 [have_libserialport="no"])
202 if test "x$enable_libserialport$have_libserialport" = "xyesno"; then
203 AC_MSG_ERROR([libserialport support requested, but it was not found])
204 fi
205else
206 have_libserialport="no"
207fi
208
209# Define HAVE_LIBSERIALPORT in config.h if we found libserialport.
210if test "x$have_libserialport" = "xno"; then
211 HW_AGILENT_DMM="no"; HW_APPA_55II="no";
Marc Schink1c183902014-01-11 13:55:26 +0100212 HW_ATTEN_PPS3XXX="no"; HW_BRYMEN_DMM="no"; HW_CEM_DT_885X="no";
Matthias Heidbrink823b4e52014-02-05 19:50:46 +0100213 HW_CENTER_3XX="no"; HW_COLEAD_SLM="no"; HW_CONRAD_DIGI_35_CPU="no";
Uwe Hermann8c218972014-05-04 17:44:05 +0200214 HW_FLUKE_DMM="no"; HW_GMC_MH_1X_2X="no"; HW_HAMEG_HMO="no";
Matthias Heidbrinkadeae782014-06-27 23:31:50 +0200215 HW_MANSON_HCS_3XXX="no"; HW_MIC_985XX="no"; HW_MOTECH_LPS_30X="no";
Bert Vermeulend4b38742014-07-10 17:26:22 +0200216 HW_NORMA_DMM="no"; HW_OPENBENCH_LOGIC_SNIFFER="no"; HW_SERIAL_DMM="no";
217 HW_TELEINFO="no"; HW_TONDAJ_SL_814="no";
Mike Frysingera4737992014-06-13 22:44:38 -0400218else
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100219 AC_DEFINE_UNQUOTED(HAVE_LIBSERIALPORT, [1],
220 [Specifies whether we have libserialport.])
221fi
222
223# Serial port helper code is only compiled in if libserialport was found.
224AM_CONDITIONAL(NEED_SERIAL, test "x$have_libserialport" != xno)
Martin Linga9bce5a2013-10-27 15:51:24 +0000225
Martin Ling1fb23122014-02-01 10:01:05 +0000226PKG_CHECK_MODULES([librevisa], [librevisa >= 0.0.20130812],
Martin Ling4f108532014-04-18 19:11:47 +0100227 [have_librevisa="yes"; LIB_CFLAGS="$LIB_CFLAGS $librevisa_CFLAGS";
Martin Ling1fb23122014-02-01 10:01:05 +0000228 LIBS="$LIBS $librevisa_LIBS";
Martin Lingb84b7ee2014-02-02 16:21:33 -0800229 SR_PKGLIBS="$SR_PKGLIBS librevisa"],
230 [have_librevisa="no"])
Martin Ling1fb23122014-02-01 10:01:05 +0000231
232# VISA SCPI backend is only compiled in if librevisa was found.
233AM_CONDITIONAL(NEED_VISA, test "x$have_librevisa" != xno)
234
235# Define HAVE_LIBREVISA in config.h if we found librevisa.
236if test "x$have_librevisa" != "xno"; then
237 AC_DEFINE_UNQUOTED(HAVE_LIBREVISA, [1],
238 [Specifies whether we have librevisa.])
239fi
240
Uwe Hermannaba69262013-04-08 14:46:13 +0200241# libusb-1.0 is only needed for some hardware drivers. Disable the respective
242# drivers if it is not found.
Mike Frysingera4737992014-06-13 22:44:38 -0400243if test "x$enable_libusb" != "xno"; then
244 case "$host" in
245 *freebsd*)
246 # FreeBSD comes with an "integrated" libusb-1.0-style USB API.
247 # This means libusb-1.0 is always available, no need to check for it,
248 # and no need to (potentially) disable any drivers if it's not found.
249 have_libusb1_0="yes"
250 ;;
251 *)
252 PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.16],
253 [have_libusb1_0="yes"; LIB_CFLAGS="$LIB_CFLAGS $libusb_CFLAGS";
254 LIBS="$LIBS $libusb_LIBS";
255 SR_PKGLIBS="$SR_PKGLIBS libusb-1.0"],
256 [have_libusb1_0="no"])
257 if test "x$enable_libusb$have_libusb1_0" = "xyesno"; then
258 AC_MSG_ERROR([libusb support requested, but it was not found])
259 fi
260 ;;
261 esac
262else
263 have_libusb1_0="no"
264fi
265
266# Define HAVE_LIBUSB_1_0 in config.h if we found libusb-1.0.
267if test "x$have_libusb1_0" = "xno"; then
268 HW_BRYMEN_BM86X="no"; HW_FX2LAFW="no";
269 HW_HANTEK_DSO="no"; HW_IKALOGIC_SCANALOGIC2="no";
270 HW_KECHENG_KC_330B="no"; HW_LASCAR_EL_USB="no";
Bert Vermeulen0acdd792014-07-01 01:34:29 +0200271 HW_SYSCLK_LWLA="no"; HW_TESTO="no"; HW_UNI_T_DMM="no";
Mike Frysingera4737992014-06-13 22:44:38 -0400272 HW_UNI_T_UT32X="no"; HW_VICTOR_DMM="no";
273 HW_ZEROPLUS_LOGIC_CUBE="no"; HW_SALEAE_LOGIC16="no";
274else
Uwe Hermannaba69262013-04-08 14:46:13 +0200275 AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1],
276 [Specifies whether we have a libusb.h header.])
Mike Frysingera4737992014-06-13 22:44:38 -0400277fi
Uwe Hermann826938d2011-12-30 10:42:39 +0100278
Uwe Hermann3fd1d0e2013-04-08 15:40:57 +0200279# USB + FX2 firmware helper code is only compiled in if libusb-1.0 was found.
280AM_CONDITIONAL(NEED_USB, test "x$have_libusb1_0" != xno)
281
Uwe Hermannaba69262013-04-08 14:46:13 +0200282# libftdi is only needed for some hardware drivers. Disable them if not found.
Mike Frysingera4737992014-06-13 22:44:38 -0400283if test "x$enable_libftdi" != "xno"; then
284 PKG_CHECK_MODULES([libftdi], [libftdi >= 0.16],
285 [have_libftdi="yes"; LIB_CFLAGS="$LIB_CFLAGS $libftdi_CFLAGS";
286 LIBS="$LIBS $libftdi_LIBS";
287 SR_PKGLIBS="$SR_PKGLIBS libftdi"],
Uwe Hermannc78bcc62014-06-16 13:19:34 +0200288 [PKG_CHECK_MODULES([libftdi1], [libftdi1 >= 1.0],
Dan Horák92506352014-06-15 11:08:37 +0200289 [LIB_CFLAGS="$LIB_CFLAGS $libftdi1_CFLAGS";
290 LIBS="$LIBS $libftdi1_LIBS";
291 SR_PKGLIBS="$SR_PKGLIBS libftdi1"],
292 [have_libftdi="no"])])
Mike Frysingera4737992014-06-13 22:44:38 -0400293 if test "x$enable_libftdi$have_libftdi" = "xyesno"; then
294 AC_MSG_ERROR([libftdi support requested, but it was not found])
295 fi
296else
297 have_libftdi="no"
298fi
299
300if test "x$have_libftdi" = "xno"; then
301 HW_ASIX_SIGMA="no"; HW_CHRONOVU_LA="no"; HW_IKALOGIC_SCANAPLUS="no";
302fi
Uwe Hermann826938d2011-12-30 10:42:39 +0100303
Uwe Hermannaba69262013-04-08 14:46:13 +0200304# The Check unit testing framework is optional. Disable if not found.
Uwe Hermann79bb0e92013-03-07 09:37:42 +0100305PKG_CHECK_MODULES([check], [check >= 0.9.4],
Mike Frysinger82bfb642014-06-13 22:44:39 -0400306 [have_check="yes"], [have_check="no"])
Uwe Hermann79bb0e92013-03-07 09:37:42 +0100307AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
308
Martin Ling37fa80b2013-12-07 19:42:35 +0000309# The OLS driver uses serial port file descriptors directly, and therefore
310# will not currently work on Windows.
311case "$host" in
312*mingw*)
Bert Vermeulend4b38742014-07-10 17:26:22 +0200313 HW_OPENBENCH_LOGIC_SNIFFER="no"
Matthias Heidbrinkd0a92ab2014-05-19 19:44:04 +0200314 ;;
Martin Ling37fa80b2013-12-07 19:42:35 +0000315esac
316
Uwe Hermann6dddd902012-03-31 11:28:24 +0200317AC_SUBST(SR_PKGLIBS)
Uwe Hermann826938d2011-12-30 10:42:39 +0100318
Martin Ling4f108532014-04-18 19:11:47 +0100319CFLAGS="$CFLAGS $LIB_CFLAGS"
320
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200321# Now set AM_CONDITIONALs and AC_DEFINEs for the enabled/disabled drivers.
322
323AM_CONDITIONAL(HW_AGILENT_DMM, test x$HW_AGILENT_DMM = xyes)
324if test "x$HW_AGILENT_DMM" = "xyes"; then
325 AC_DEFINE(HAVE_HW_AGILENT_DMM, 1, [Agilent DMM support])
326fi
327
Aurelien Jacobs5e7a8e52013-12-01 01:13:44 +0100328AM_CONDITIONAL(HW_APPA_55II, test x$HW_APPA_55II = xyes)
329if test "x$HW_APPA_55II" = "xyes"; then
330 AC_DEFINE(HAVE_HW_APPA_55II, 1, [APPA 55II support])
331fi
332
Uwe Hermann9e165e72013-05-08 19:33:30 +0200333AM_CONDITIONAL(HW_ASIX_SIGMA, test x$HW_ASIX_SIGMA = xyes)
334if test "x$HW_ASIX_SIGMA" = "xyes"; then
335 AC_DEFINE(HAVE_HW_ASIX_SIGMA, 1, [ASIX SIGMA/SIGMA2 support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200336fi
337
Marc Schink1c183902014-01-11 13:55:26 +0100338AM_CONDITIONAL(HW_ATTEN_PPS3XXX, test x$HW_ATTEN_PPS3XXX = xyes)
339if test "x$HW_ATTEN_PPS3XXX" = "xyes"; then
Matthias Heidbrinkd0a92ab2014-05-19 19:44:04 +0200340 AC_DEFINE(HAVE_HW_ATTEN_PPS3XXX, 1, [Atten PPS3xxx support])
Marc Schink1c183902014-01-11 13:55:26 +0100341fi
342
Uwe Hermann1b950bc2014-02-28 13:08:53 +0100343AM_CONDITIONAL(HW_BRYMEN_BM86X, test x$HW_BRYMEN_BM86X = xyes)
344if test "x$HW_BRYMEN_BM86X" = "xyes"; then
345 AC_DEFINE(HAVE_HW_BRYMEN_BM86X, 1, [Brymen BM86X support])
346fi
347
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200348AM_CONDITIONAL(HW_BRYMEN_DMM, test x$HW_BRYMEN_DMM = xyes)
349if test "x$HW_BRYMEN_DMM" = "xyes"; then
Uwe Hermanne4fad802013-04-09 10:03:58 +0200350 AC_DEFINE(HAVE_HW_BRYMEN_DMM, 1, [Brymen DMM support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200351fi
352
Uwe Hermann32be5b22013-06-21 15:18:33 +0200353AM_CONDITIONAL(HW_CEM_DT_885X, test x$HW_CEM_DT_885X = xyes)
354if test "x$HW_CEM_DT_885X" = "xyes"; then
355 AC_DEFINE(HAVE_HW_CEM_DT_885X, 1, [CEM DT-885x support])
356fi
357
Uwe Hermann44331452013-07-19 09:35:48 +0200358AM_CONDITIONAL(HW_CENTER_3XX, test x$HW_CENTER_3XX = xyes)
359if test "x$HW_CENTER_3XX" = "xyes"; then
360 AC_DEFINE(HAVE_HW_CENTER_3XX, 1, [Center 3xx support])
361fi
362
Uwe Hermann7b356712014-04-01 21:47:11 +0200363AM_CONDITIONAL(HW_CHRONOVU_LA, test x$HW_CHRONOVU_LA = xyes)
364if test "x$HW_CHRONOVU_LA" = "xyes"; then
365 AC_DEFINE(HAVE_HW_CHRONOVU_LA, 1, [ChronoVu LA support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200366fi
367
368AM_CONDITIONAL(HW_COLEAD_SLM, test x$HW_COLEAD_SLM = xyes)
369if test "x$HW_COLEAD_SLM" = "xyes"; then
370 AC_DEFINE(HAVE_HW_COLEAD_SLM, 1, [Colead SLM support])
371fi
372
Matthias Heidbrink823b4e52014-02-05 19:50:46 +0100373AM_CONDITIONAL(HW_CONRAD_DIGI_35_CPU, test x$HW_CONRAD_DIGI_35_CPU = xyes)
374if test "x$HW_CONRAD_DIGI_35_CPU" = "xyes"; then
375 AC_DEFINE(HAVE_HW_CONRAD_DIGI_35_CPU, 1, [Conrad DIGI 35 CPU support])
376fi
377
Uwe Hermann9e165e72013-05-08 19:33:30 +0200378AM_CONDITIONAL(HW_DEMO, test x$HW_DEMO = xyes)
379if test "x$HW_DEMO" = "xyes"; then
380 AC_DEFINE(HAVE_HW_DEMO, 1, [Demo driver support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200381fi
382
383AM_CONDITIONAL(HW_FLUKE_DMM, test x$HW_FLUKE_DMM = xyes)
384if test "x$HW_FLUKE_DMM" = "xyes"; then
385 AC_DEFINE(HAVE_HW_FLUKE_DMM, 1, [Fluke DMM support])
386fi
387
Uwe Hermann9e165e72013-05-08 19:33:30 +0200388AM_CONDITIONAL(HW_FX2LAFW, test x$HW_FX2LAFW = xyes)
389if test "x$HW_FX2LAFW" = "xyes"; then
390 AC_DEFINE(HAVE_HW_FX2LAFW, 1, [fx2lafw support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200391fi
392
Matthias Heidbrink7b4edcb2013-11-19 17:49:23 +0100393AM_CONDITIONAL(HW_GMC_MH_1X_2X, test x$HW_GMC_MH_1X_2X = xyes)
394if test "x$HW_GMC_MH_1X_2X" = "xyes"; then
395 AC_DEFINE(HAVE_HW_GMC_MH_1X_2X, 1, [gmc-mh-1x-2x support])
396fi
397
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200398AM_CONDITIONAL(HW_HANTEK_DSO, test x$HW_HANTEK_DSO = xyes)
399if test "x$HW_HANTEK_DSO" = "xyes"; then
400 AC_DEFINE(HAVE_HW_HANTEK_DSO, 1, [Hantek DSO support])
401fi
402
Uwe Hermann582b3d22013-12-03 15:37:36 +0100403AM_CONDITIONAL(HW_HAMEG_HMO, test x$HW_HAMEG_HMO = xyes)
404if test "x$HW_HAMEG_HMO" = "xyes"; then
405 AC_DEFINE(HAVE_HW_HAMEG_HMO, 1, [Hameg HMO support])
406fi
407
Uwe Hermann1f36a6c2013-06-21 15:11:36 +0200408AM_CONDITIONAL(HW_IKALOGIC_SCANALOGIC2, test x$HW_IKALOGIC_SCANALOGIC2 = xyes)
409if test "x$HW_IKALOGIC_SCANALOGIC2" = "xyes"; then
Uwe Hermannce954282013-08-07 00:22:14 +0200410 AC_DEFINE(HAVE_HW_IKALOGIC_SCANALOGIC2, 1, [IKALOGIC Scanalogic-2 support])
Uwe Hermann1f36a6c2013-06-21 15:11:36 +0200411fi
412
Uwe Hermannfdf4a1f2013-06-21 17:15:10 +0200413AM_CONDITIONAL(HW_IKALOGIC_SCANAPLUS, test x$HW_IKALOGIC_SCANAPLUS = xyes)
414if test "x$HW_IKALOGIC_SCANAPLUS" = "xyes"; then
Uwe Hermannce954282013-08-07 00:22:14 +0200415 AC_DEFINE(HAVE_HW_IKALOGIC_SCANAPLUS, 1, [IKALOGIC ScanaPLUS support])
Uwe Hermannfdf4a1f2013-06-21 17:15:10 +0200416fi
417
Bert Vermeulened759a02013-06-20 21:31:31 +0200418AM_CONDITIONAL(HW_KECHENG_KC_330B, test x$HW_KECHENG_KC_330B = xyes)
419if test "x$HW_KECHENG_KC_330B" = "xyes"; then
420 AC_DEFINE(HAVE_HW_KECHENG_KC_330B, 1, [Kecheng KC-330B support])
421fi
422
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200423AM_CONDITIONAL(HW_LASCAR_EL_USB, test x$HW_LASCAR_EL_USB = xyes)
424if test "x$HW_LASCAR_EL_USB" = "xyes"; then
425 AC_DEFINE(HAVE_HW_LASCAR_EL_USB, 1, [Lascar EL-USB support])
426fi
427
Uwe Hermann8f4e9222014-06-23 00:31:22 +0200428AM_CONDITIONAL(HW_MANSON_HCS_3XXX, test x$HW_MANSON_HCS_3XXX = xyes)
429if test "x$HW_MANSON_HCS_3XXX" = "xyes"; then
430 AC_DEFINE(HAVE_HW_MANSON_HCS_3XXX, 1, [Manson HCS-3xxx support])
431fi
432
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200433AM_CONDITIONAL(HW_MIC_985XX, test x$HW_MIC_985XX = xyes)
434if test "x$HW_MIC_985XX" = "xyes"; then
435 AC_DEFINE(HAVE_HW_MIC_985XX, 1, [MIC 985xx support])
436fi
437
Matthias Heidbrink41b7bd02014-05-19 19:23:30 +0200438AM_CONDITIONAL(HW_MOTECH_LPS_30X, test x$HW_MOTECH_LPS_30X = xyes)
439if test "x$HW_MOTECH_LPS_30X" = "xyes"; then
440 AC_DEFINE(HAVE_HW_MOTECH_LPS_30X, 1, [motech-lps-30x support])
441fi
442
Matthias Heidbrinkbfd48772013-10-17 10:57:17 +0200443AM_CONDITIONAL(HW_NORMA_DMM, test x$HW_NORMA_DMM = xyes)
444if test "x$HW_NORMA_DMM" = "xyes"; then
Matthias Heidbrinkd0a92ab2014-05-19 19:44:04 +0200445 AC_DEFINE(HAVE_HW_NORMA_DMM, 1, [Norma DMM support])
Matthias Heidbrinkbfd48772013-10-17 10:57:17 +0200446fi
447
Bert Vermeulend4b38742014-07-10 17:26:22 +0200448AM_CONDITIONAL(HW_OPENBENCH_LOGIC_SNIFFER, test x$HW_OPENBENCH_LOGIC_SNIFFER = xyes)
449if test "x$HW_OPENBENCH_LOGIC_SNIFFER" = "xyes"; then
450 AC_DEFINE(HAVE_HW_OPENBENCH_LOGIC_SNIFFER, 1, [OpenBench Logic Sniffer (OLS) support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200451fi
452
Martin Ling3086efd2013-10-31 17:31:39 +0000453AM_CONDITIONAL(HW_RIGOL_DS, test x$HW_RIGOL_DS = xyes)
454if test "x$HW_RIGOL_DS" = "xyes"; then
455 AC_DEFINE(HAVE_HW_RIGOL_DS, 1, [Rigol DS support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200456fi
457
Uwe Hermann5724a202013-11-03 23:28:55 +0100458AM_CONDITIONAL(HW_SALEAE_LOGIC16, test x$HW_SALEAE_LOGIC16 = xyes)
459if test "x$HW_SALEAE_LOGIC16" = "xyes"; then
460 AC_DEFINE(HAVE_HW_SALEAE_LOGIC16, 1, [Saleae Logic16 support])
461fi
462
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200463AM_CONDITIONAL(HW_SERIAL_DMM, test x$HW_SERIAL_DMM = xyes)
464if test "x$HW_SERIAL_DMM" = "xyes"; then
465 AC_DEFINE(HAVE_HW_SERIAL_DMM, 1, [Serial DMM support])
466fi
467
Uwe Hermann87283d92014-01-14 19:36:28 +0100468AM_CONDITIONAL(HW_SYSCLK_LWLA, test x$HW_SYSCLK_LWLA = xyes)
469if test "x$HW_SYSCLK_LWLA" = "xyes"; then
470 AC_DEFINE(HAVE_HW_SYSCLK_LWLA, 1, [Sysclk LWLA support])
471fi
472
Uwe Hermann122d33d2013-11-03 23:28:03 +0100473AM_CONDITIONAL(HW_TELEINFO, test x$HW_TELEINFO = xyes)
474if test "x$HW_TELEINFO" = "xyes"; then
475 AC_DEFINE(HAVE_HW_TELEINFO, 1, [Teleinfo support])
476fi
477
Bert Vermeulen0acdd792014-07-01 01:34:29 +0200478AM_CONDITIONAL(HW_TESTO, test x$HW_TESTO = xyes)
479if test "x$HW_TESTO" = "xyes"; then
480 AC_DEFINE(HAVE_HW_TESTO, 1, [Testo support])
481fi
482
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200483AM_CONDITIONAL(HW_TONDAJ_SL_814, test x$HW_TONDAJ_SL_814 = xyes)
484if test "x$HW_TONDAJ_SL_814" = "xyes"; then
485 AC_DEFINE(HAVE_HW_TONDAJ_SL_814, 1, [Tondaj SL-814 support])
486fi
487
488AM_CONDITIONAL(HW_UNI_T_DMM, test x$HW_UNI_T_DMM = xyes)
489if test "x$HW_UNI_T_DMM" = "xyes"; then
490 AC_DEFINE(HAVE_HW_UNI_T_DMM, 1, [UNI-T DMM support])
491fi
492
Bert Vermeulen3877dde2013-08-09 00:29:04 +0200493AM_CONDITIONAL(HW_UNI_T_UT32X, test x$HW_UNI_T_UT32X = xyes)
494if test "x$HW_UNI_T_UT32X" = "xyes"; then
495 AC_DEFINE(HAVE_HW_UNI_T_UT32X, 1, [UNI-T UT32x support])
496fi
497
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200498AM_CONDITIONAL(HW_VICTOR_DMM, test x$HW_VICTOR_DMM = xyes)
499if test "x$HW_VICTOR_DMM" = "xyes"; then
Uwe Hermanne4fad802013-04-09 10:03:58 +0200500 AC_DEFINE(HAVE_HW_VICTOR_DMM, 1, [Victor DMM support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200501fi
502
Uwe Hermann9e165e72013-05-08 19:33:30 +0200503AM_CONDITIONAL(HW_ZEROPLUS_LOGIC_CUBE, test x$HW_ZEROPLUS_LOGIC_CUBE = xyes)
504if test "x$HW_ZEROPLUS_LOGIC_CUBE" = "xyes"; then
505 AC_DEFINE(HAVE_HW_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200506fi
507
Uwe Hermann826938d2011-12-30 10:42:39 +0100508# Checks for header files.
509# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
Uwe Hermann826938d2011-12-30 10:42:39 +0100510
511# Checks for typedefs, structures, and compiler characteristics.
Marcus Comstedt7b5daad2013-08-04 13:46:35 +0200512AC_C_BIGENDIAN
Uwe Hermann826938d2011-12-30 10:42:39 +0100513
Uwe Hermannfb6f1972012-05-30 00:00:33 +0200514AC_SUBST(FIRMWARE_DIR, "$datadir/sigrok-firmware")
Uwe Hermann826938d2011-12-30 10:42:39 +0100515AC_SUBST(MAKEFLAGS, '--no-print-directory')
516AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
517
Uwe Hermann6dddd902012-03-31 11:28:24 +0200518SR_PACKAGE_VERSION_MAJOR=sr_package_version_major
519SR_PACKAGE_VERSION_MINOR=sr_package_version_minor
520SR_PACKAGE_VERSION_MICRO=sr_package_version_micro
521SR_PACKAGE_VERSION=sr_package_version
Uwe Hermann826938d2011-12-30 10:42:39 +0100522
Uwe Hermann6dddd902012-03-31 11:28:24 +0200523AC_SUBST(SR_PACKAGE_VERSION_MAJOR)
524AC_SUBST(SR_PACKAGE_VERSION_MINOR)
525AC_SUBST(SR_PACKAGE_VERSION_MICRO)
526AC_SUBST(SR_PACKAGE_VERSION)
Uwe Hermann826938d2011-12-30 10:42:39 +0100527
Uwe Hermann67bd8052014-03-19 23:04:55 +0100528AC_CONFIG_FILES([Makefile version.h libsigrok.pc])
Uwe Hermann826938d2011-12-30 10:42:39 +0100529
530AC_OUTPUT
531
532echo
Uwe Hermann45aed072012-01-04 00:49:21 +0100533echo "libsigrok configuration summary:"
Uwe Hermann826938d2011-12-30 10:42:39 +0100534echo
Uwe Hermann6dddd902012-03-31 11:28:24 +0200535echo " - Package version (major.minor.micro): $SR_PACKAGE_VERSION"
536echo " - Library version (current:revision:age): $SR_LIB_VERSION"
Uwe Hermann45aed072012-01-04 00:49:21 +0100537echo " - Prefix: $prefix"
Uwe Hermann6bad8482013-04-09 18:47:31 +0200538echo " - Building on: $build"
539echo " - Building for: $host"
Uwe Hermann45aed072012-01-04 00:49:21 +0100540echo
541echo "Detected libraries:"
542echo
543
544# Note: This only works for libs with pkg-config integration.
Uwe Hermannc78bcc62014-06-16 13:19:34 +0200545for 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
Uwe Hermann958326f2014-04-05 13:35:49 +0200546 optional="OPTIONAL"
547 if test "x$lib" = "xglib-2.0 >= 2.32.0"; then optional="REQUIRED"; fi
548 if test "x$lib" = "xlibzip >= 0.10"; then optional="REQUIRED"; fi
Uwe Hermann45aed072012-01-04 00:49:21 +0100549 if `$PKG_CONFIG --exists $lib`; then
550 ver=`$PKG_CONFIG --modversion $lib`
551 answer="yes ($ver)"
552 else
553 answer="no"
554 fi
Uwe Hermann958326f2014-04-05 13:35:49 +0200555 echo " - ($optional) $lib: $answer"
Uwe Hermann45aed072012-01-04 00:49:21 +0100556done
557
Bert Vermeulend4b38742014-07-10 17:26:22 +0200558echo -e "\nEnabled hardware drivers:\n${driver_summary}"
Uwe Hermann826938d2011-12-30 10:42:39 +0100559