blob: 5136be2c5d37bd1b4abd2808fe59c1c9a21aeb90 [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 Hermann63298402012-06-01 00:16:42 +020026m4_define([sr_package_version_minor], [2])
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 Hermann22ca5aa2013-03-17 13:22:22 +010037AM_INIT_AUTOMAKE([1.11 -Wall -Werror 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.
Uwe Hermannbdd76182012-12-28 11:22:16 +010047CFLAGS="$CFLAGS -Wall -Wextra -fvisibility=hidden"
Uwe Hermann826938d2011-12-30 10:42:39 +010048
49# Checks for programs.
Uwe Hermann826938d2011-12-30 10:42:39 +010050AC_PROG_CC
51AC_PROG_CPP
52AC_PROG_INSTALL
53AC_PROG_LN_S
54
Uwe Hermannbb203cd2013-03-12 23:00:58 +010055# Required for per-target flags or subdir-objects with C sources.
56AM_PROG_CC_C_O
57
Uwe Hermann826938d2011-12-30 10:42:39 +010058# Initialize libtool.
59LT_INIT
60
61# Initialize pkg-config.
62# We require at least 0.22, as "Requires.private" behaviour changed there.
63PKG_PROG_PKG_CONFIG([0.22])
64
Uwe Hermann3af71f02012-01-04 00:05:43 +010065# Library version for libsigrok (NOT the same as the package version).
Uwe Hermann826938d2011-12-30 10:42:39 +010066# Carefully read the libtool docs before updating these numbers!
67# The algorithm for determining which number to change (and how) is nontrivial!
68# http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
Uwe Hermann6941f842013-05-04 15:12:20 +020069SR_LIB_VERSION_CURRENT=1
Uwe Hermann6dddd902012-03-31 11:28:24 +020070SR_LIB_VERSION_REVISION=0
71SR_LIB_VERSION_AGE=0
72SR_LIB_VERSION="$SR_LIB_VERSION_CURRENT:$SR_LIB_VERSION_REVISION:$SR_LIB_VERSION_AGE"
73SR_LIB_LDFLAGS="-version-info $SR_LIB_VERSION"
74AC_SUBST(SR_LIB_VERSION_CURRENT)
75AC_SUBST(SR_LIB_VERSION_REVISION)
76AC_SUBST(SR_LIB_VERSION_AGE)
77AC_SUBST(SR_LIB_VERSION)
78AC_SUBST(SR_LIB_LDFLAGS)
Uwe Hermann826938d2011-12-30 10:42:39 +010079
Bert Vermeulen7c1cb432012-09-10 22:14:37 +020080# Hardware support '--enable' options.
Uwe Hermann826938d2011-12-30 10:42:39 +010081
Bert Vermeulendbf24822013-01-14 00:52:55 +010082AC_ARG_ENABLE(all-drivers, AC_HELP_STRING([--enable-all-drivers],
83 [enable all drivers by default [default=yes]]),
84 [HW_ENABLED_DEFAULT="$enableval"],
85 [HW_ENABLED_DEFAULT="yes"])
86
Bert Vermeulen6ac0db12012-09-02 11:58:29 +020087AC_ARG_ENABLE(agilent-dmm, AC_HELP_STRING([--enable-agilent-dmm],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +010088 [enable Agilent DMM support [default=yes]]),
89 [HW_AGILENT_DMM="$enableval"],
90 [HW_AGILENT_DMM=$HW_ENABLED_DEFAULT])
Bert Vermeulen6ac0db12012-09-02 11:58:29 +020091
Uwe Hermann826938d2011-12-30 10:42:39 +010092AC_ARG_ENABLE(alsa, AC_HELP_STRING([--enable-alsa],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +010093 [enable ALSA driver support [default=yes]]),
94 [HW_ALSA="$enableval"],
95 [HW_ALSA=$HW_ENABLED_DEFAULT])
Uwe Hermann826938d2011-12-30 10:42:39 +010096
97AC_ARG_ENABLE(asix-sigma, AC_HELP_STRING([--enable-asix-sigma],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +010098 [enable ASIX SIGMA/SIGMA2 support [default=yes]]),
Uwe Hermann9e165e72013-05-08 19:33:30 +020099 [HW_ASIX_SIGMA="$enableval"],
100 [HW_ASIX_SIGMA=$HW_ENABLED_DEFAULT])
Uwe Hermann826938d2011-12-30 10:42:39 +0100101
Alexandru Gagniuc20cbc782012-11-21 21:20:39 -0600102AC_ARG_ENABLE(brymen-dmm, AC_HELP_STRING([--enable-brymen-dmm],
103 [enable Brymen DMM support [default=yes]]),
104 [HW_BRYMEN_DMM="$enableval"],
Bert Vermeulen5a7587c2013-03-19 22:07:21 +0100105 [HW_BRYMEN_DMM=$HW_ENABLED_DEFAULT])
Alexandru Gagniuc20cbc782012-11-21 21:20:39 -0600106
Bert Vermeulen8fa93682013-06-08 01:12:10 +0200107AC_ARG_ENABLE(cem-dt-885x, AC_HELP_STRING([--enable-cem-dt-885x],
108 [enable CEM DT-885x support [default=yes]]),
109 [HW_CEM_DT_885X="$enableval"],
110 [HW_CEM_DT_885X=yes])
Bert Vermeulen8fa93682013-06-08 01:12:10 +0200111
Uwe Hermann826938d2011-12-30 10:42:39 +0100112AC_ARG_ENABLE(chronovu-la8, AC_HELP_STRING([--enable-chronovu-la8],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100113 [enable ChronoVu LA8 support [default=yes]]),
Uwe Hermann9e165e72013-05-08 19:33:30 +0200114 [HW_CHRONOVU_LA8="$enableval"],
115 [HW_CHRONOVU_LA8=$HW_ENABLED_DEFAULT])
Uwe Hermann826938d2011-12-30 10:42:39 +0100116
Bert Vermeulen4d729dd2012-10-29 22:33:47 +0100117AC_ARG_ENABLE(colead-slm, AC_HELP_STRING([--enable-colead-slm],
118 [enable Colead SLM support [default=yes]]),
119 [HW_COLEAD_SLM="$enableval"],
Bert Vermeulendbf24822013-01-14 00:52:55 +0100120 [HW_COLEAD_SLM=$HW_ENABLED_DEFAULT])
Bert Vermeulen4d729dd2012-10-29 22:33:47 +0100121
Bert Vermeulen589a1012012-10-21 01:34:34 +0200122AC_ARG_ENABLE(demo, AC_HELP_STRING([--enable-demo],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100123 [enable demo driver support [default=yes]]),
Uwe Hermann9e165e72013-05-08 19:33:30 +0200124 [HW_DEMO="$enableval"],
125 [HW_DEMO=$HW_ENABLED_DEFAULT])
Bert Vermeulen589a1012012-10-21 01:34:34 +0200126
Bert Vermeulen883a2e92012-09-10 22:31:29 +0200127AC_ARG_ENABLE(fluke-dmm, AC_HELP_STRING([--enable-fluke-dmm],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100128 [enable Fluke DMM support [default=yes]]),
129 [HW_FLUKE_DMM="$enableval"],
130 [HW_FLUKE_DMM=$HW_ENABLED_DEFAULT])
Bert Vermeulen883a2e92012-09-10 22:31:29 +0200131
Joel Holdsworthf302a082012-02-11 12:08:49 +0000132AC_ARG_ENABLE(fx2lafw, AC_HELP_STRING([--enable-fx2lafw],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100133 [enable fx2lafw support (for FX2 LAs). [default=yes]]),
Uwe Hermann9e165e72013-05-08 19:33:30 +0200134 [HW_FX2LAFW="$enableval"],
135 [HW_FX2LAFW=$HW_ENABLED_DEFAULT])
Joel Holdsworthf302a082012-02-11 12:08:49 +0000136
Uwe Hermann9eb2bb92012-10-27 21:07:39 +0200137AC_ARG_ENABLE(hantek-dso, AC_HELP_STRING([--enable-hantek-dso],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100138 [enable Hantek DSO support [default=yes]]),
139 [HW_HANTEK_DSO="$enableval"],
140 [HW_HANTEK_DSO=$HW_ENABLED_DEFAULT])
Uwe Hermann826938d2011-12-30 10:42:39 +0100141
Marc Schink16e76ba2013-06-07 20:34:40 +0200142AC_ARG_ENABLE(ikalogic-scanalogic2, AC_HELP_STRING([--enable-ikalogic-scanalogic2],
143 [enable IKALOGIC Scanalogic2 support [default=yes]]),
144 [HW_IKALOGIC_SCANALOGIC2="$enableval"],
145 [HW_IKALOGIC_SCANALOGIC2=yes])
Marc Schink16e76ba2013-06-07 20:34:40 +0200146
Uwe Hermannfdf4a1f2013-06-21 17:15:10 +0200147AC_ARG_ENABLE(ikalogic-scanaplus, AC_HELP_STRING([--enable-ikalogic-scanaplus],
148 [enable Ikalogic ScanaPLUS support [default=yes]]),
149 [HW_IKALOGIC_SCANAPLUS="$enableval"],
150 [HW_IKALOGIC_SCANAPLUS=yes])
151
Bert Vermeulened759a02013-06-20 21:31:31 +0200152AC_ARG_ENABLE(kecheng-kc-330b, AC_HELP_STRING([--enable-kecheng-kc-330b],
153 [enable Kecheng KC-330B support [default=yes]]),
154 [HW_KECHENG_KC_330B="$enableval"],
155 [HW_KECHENG_KC_330B=yes])
156
Bert Vermeulen46697e32012-11-27 17:40:14 +0100157AC_ARG_ENABLE(lascar-el-usb, AC_HELP_STRING([--enable-lascar-el-usb],
158 [enable Lascar EL-USB support [default=yes]]),
159 [HW_LASCAR_EL_USB="$enableval"],
Bert Vermeulendbf24822013-01-14 00:52:55 +0100160 [HW_LASCAR_EL_USB=$HW_ENABLED_DEFAULT])
Bert Vermeulen46697e32012-11-27 17:40:14 +0100161
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200162AC_ARG_ENABLE(link-mso19, AC_HELP_STRING([--enable-link-mso19],
163 [enable Link Instruments MSO-19 support [default=yes]]),
Uwe Hermann9e165e72013-05-08 19:33:30 +0200164 [HW_LINK_MSO19="$enableval"],
165 [HW_LINK_MSO19=$HW_ENABLED_DEFAULT])
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200166
Uwe Hermann7ec5b542013-01-30 16:58:01 +0100167AC_ARG_ENABLE(mic-985xx, AC_HELP_STRING([--enable-mic-985xx],
168 [enable MIC 985xx support [default=yes]]),
169 [HW_MIC_985XX="$enableval"],
Bert Vermeulen5a7587c2013-03-19 22:07:21 +0100170 [HW_MIC_985XX=$HW_ENABLED_DEFAULT])
Uwe Hermann7ec5b542013-01-30 16:58:01 +0100171
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200172AC_ARG_ENABLE(nexus-osciprime, AC_HELP_STRING([--enable-nexus-osciprime],
173 [enable Nexus Osciprime support [default=yes]]),
174 [HW_NEXUS_OSCIPRIME="$enableval"],
175 [HW_NEXUS_OSCIPRIME=$HW_ENABLED_DEFAULT])
176
Uwe Hermann826938d2011-12-30 10:42:39 +0100177AC_ARG_ENABLE(ols, AC_HELP_STRING([--enable-ols],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100178 [enable OpenBench Logic Sniffer (OLS) support [default=yes]]),
Uwe Hermann9e165e72013-05-08 19:33:30 +0200179 [HW_OLS="$enableval"],
180 [HW_OLS=$HW_ENABLED_DEFAULT])
Uwe Hermann826938d2011-12-30 10:42:39 +0100181
Martin Lingf4816ac2012-12-29 22:22:10 +0100182AC_ARG_ENABLE(rigol-ds1xx2, AC_HELP_STRING([--enable-rigol-ds1xx2],
183 [enable Rigol DS1xx2 support [default=yes]]),
184 [HW_RIGOL_DS1XX2="$enableval"],
Bert Vermeulendbf24822013-01-14 00:52:55 +0100185 [HW_RIGOL_DS1XX2=$HW_ENABLED_DEFAULT])
Martin Lingf4816ac2012-12-29 22:22:10 +0100186
Uwe Hermann21a7f262012-12-01 19:35:19 +0100187AC_ARG_ENABLE(serial-dmm, AC_HELP_STRING([--enable-serial-dmm],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100188 [enable serial DMM support [default=yes]]),
189 [HW_SERIAL_DMM="$enableval"],
190 [HW_SERIAL_DMM=$HW_ENABLED_DEFAULT])
Alexandru Gagniuc7dc55d92012-10-20 20:39:37 -0500191
Uwe Hermannaa2af322012-11-09 03:33:05 +0100192AC_ARG_ENABLE(tondaj-sl-814, AC_HELP_STRING([--enable-tondaj-sl-814],
193 [enable Tondaj SL-814 support [default=yes]]),
194 [HW_TONDAJ_SL_814="$enableval"],
Bert Vermeulendbf24822013-01-14 00:52:55 +0100195 [HW_TONDAJ_SL_814=$HW_ENABLED_DEFAULT])
Uwe Hermannaa2af322012-11-09 03:33:05 +0100196
Uwe Hermann79081ec2012-10-27 22:41:50 +0200197AC_ARG_ENABLE(uni-t-dmm, AC_HELP_STRING([--enable-uni-t-dmm],
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100198 [enable UNI-T DMM support [default=yes]]),
199 [HW_UNI_T_DMM="$enableval"],
200 [HW_UNI_T_DMM=$HW_ENABLED_DEFAULT])
Uwe Hermann79081ec2012-10-27 22:41:50 +0200201
Bert Vermeulenac3898d2012-11-02 20:47:06 +0100202AC_ARG_ENABLE(victor-dmm, AC_HELP_STRING([--enable-victor-dmm],
203 [enable victor-dmm support [default=yes]]),
204 [HW_VICTOR_DMM="$enableval"],
Bert Vermeulendbf24822013-01-14 00:52:55 +0100205 [HW_VICTOR_DMM=$HW_ENABLED_DEFAULT])
Bert Vermeulenac3898d2012-11-02 20:47:06 +0100206
Uwe Hermann826938d2011-12-30 10:42:39 +0100207AC_ARG_ENABLE(zeroplus-logic-cube,
Bert Vermeulen8a22e8c2013-01-14 00:59:46 +0100208 AC_HELP_STRING([--enable-zeroplus-logic-cube],
209 [enable ZEROPLUS Logic Cube support [default=yes]]),
Uwe Hermann9e165e72013-05-08 19:33:30 +0200210 [HW_ZEROPLUS_LOGIC_CUBE="$enableval"],
211 [HW_ZEROPLUS_LOGIC_CUBE=$HW_ENABLED_DEFAULT])
Uwe Hermann826938d2011-12-30 10:42:39 +0100212
213# Checks for libraries.
214
215# This variable collects the pkg-config names of all detected libs.
216# It is then used to construct the "Requires.private:" field in the
217# libsigrok.pc file.
Uwe Hermann6dddd902012-03-31 11:28:24 +0200218SR_PKGLIBS=""
Uwe Hermann826938d2011-12-30 10:42:39 +0100219
Uwe Hermannee8ddd82013-05-10 20:59:42 +0200220# libm (the standard math library) is always needed.
221AC_SEARCH_LIBS([pow], [m])
222
Uwe Hermannaba69262013-04-08 14:46:13 +0200223# libglib-2.0 is always needed. Abort if it's not found.
Uwe Hermann826938d2011-12-30 10:42:39 +0100224# Note: glib-2.0 is part of the libsigrok API (hard pkg-config requirement).
Uwe Hermann406569d2013-04-12 18:47:06 +0200225# We require at least 2.32.0 due to e.g. g_variant_new_fixed_array().
226AM_PATH_GLIB_2_0([2.32.0],
Uwe Hermann826938d2011-12-30 10:42:39 +0100227 [CFLAGS="$CFLAGS $GLIB_CFLAGS"; LIBS="$LIBS $GLIB_LIBS"])
228
Uwe Hermannaba69262013-04-08 14:46:13 +0200229# libzip is always needed. Abort if it's not found.
Uwe Hermann826938d2011-12-30 10:42:39 +0100230PKG_CHECK_MODULES([libzip], [libzip >= 0.8],
231 [CFLAGS="$CFLAGS $libzip_CFLAGS"; LIBS="$LIBS $libzip_LIBS";
Uwe Hermann6dddd902012-03-31 11:28:24 +0200232 SR_PKGLIBS="$SR_PKGLIBS libzip"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100233
Uwe Hermannaba69262013-04-08 14:46:13 +0200234# libusb-1.0 is only needed for some hardware drivers. Disable the respective
235# drivers if it is not found.
Uwe Hermann2e542812013-04-09 19:52:38 +0200236case "$host" in
Uwe Hermannaba69262013-04-08 14:46:13 +0200237*freebsd*)
238 # FreeBSD comes with an "integrated" libusb-1.0-style USB API.
239 # This means libusb-1.0 is always available, no need to check for it,
240 # and no need to (potentially) disable any drivers if it's not found.
241 AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1],
242 [Specifies whether we have a libusb.h header.])
243 ;;
244*)
245 PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.9],
246 [have_libusb1_0="yes"; CFLAGS="$CFLAGS $libusb_CFLAGS";
247 LIBS="$LIBS $libusb_LIBS";
248 SR_PKGLIBS="$SR_PKGLIBS libusb-1.0"],
Uwe Hermann9e165e72013-05-08 19:33:30 +0200249 [have_libusb1_0="no"; HW_FX2LAFW="no"; HW_HANTEK_DSO="no";
Uwe Hermann1f36a6c2013-06-21 15:11:36 +0200250 HW_IKALOGIC_SCANALOGIC2="no"; HW_LASCAR_EL_USB="no";
251 HW_NEXUS_OSCIPRIME="no"; HW_UNI_T_DMM="no"; HW_VICTOR_DMM="no";
Uwe Hermann9e165e72013-05-08 19:33:30 +0200252 HW_ZEROPLUS_LOGIC_CUBE="no"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100253
Uwe Hermannaba69262013-04-08 14:46:13 +0200254 # Define HAVE_LIBUSB_1_0 in config.h if we found libusb-1.0.
Uwe Hermannccf35722013-04-08 15:56:54 +0200255 if test "x$have_libusb1_0" != "xno"; then
Uwe Hermannaba69262013-04-08 14:46:13 +0200256 AC_DEFINE_UNQUOTED(HAVE_LIBUSB_1_0, [1],
257 [Specifies whether we have a libusb.h header.])
258 fi
259 ;;
260esac
Uwe Hermann826938d2011-12-30 10:42:39 +0100261
Uwe Hermann3fd1d0e2013-04-08 15:40:57 +0200262# USB + FX2 firmware helper code is only compiled in if libusb-1.0 was found.
263AM_CONDITIONAL(NEED_USB, test "x$have_libusb1_0" != xno)
264
Uwe Hermannaba69262013-04-08 14:46:13 +0200265# libftdi is only needed for some hardware drivers. Disable them if not found.
266PKG_CHECK_MODULES([libftdi], [libftdi >= 0.16],
267 [CFLAGS="$CFLAGS $libftdi_CFLAGS";
268 LIBS="$LIBS $libftdi_LIBS";
269 SR_PKGLIBS="$SR_PKGLIBS libftdi"],
Uwe Hermann9e165e72013-05-08 19:33:30 +0200270 [HW_ASIX_SIGMA="no"; HW_CHRONOVU_LA8="no"])
Uwe Hermann826938d2011-12-30 10:42:39 +0100271
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200272# libudev is only needed for some hardware drivers. Disable them if not found.
273PKG_CHECK_MODULES([libudev], [libudev >= 151],
274 [CFLAGS="$CFLAGS $libudev_CFLAGS"; LIBS="$LIBS $libudev_LIBS";
275 SR_PKGLIBS="$SR_PKGLIBS libudev"],
Uwe Hermann9e165e72013-05-08 19:33:30 +0200276 [HW_LINK_MSO19="no"])
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200277
Uwe Hermannaba69262013-04-08 14:46:13 +0200278# ALSA is only needed for some hardware drivers. Disable them if not found.
279PKG_CHECK_MODULES([alsa], [alsa >= 1.0],
280 [CFLAGS="$CFLAGS $alsa_CFLAGS"; LIBS="$LIBS $alsa_LIBS";
281 SR_PKGLIBS="$SR_PKGLIBS alsa"],
282 [HW_ALSA="no"])
283
284# The Check unit testing framework is optional. Disable if not found.
Uwe Hermann79bb0e92013-03-07 09:37:42 +0100285PKG_CHECK_MODULES([check], [check >= 0.9.4],
286 [have_check="yes"; CFLAGS="$CFLAGS $check_CFLAGS";
287 LIBS="$LIBS $check_LIBS"], [have_check="no"])
288AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
289
Uwe Hermann63cbeae2013-04-09 17:58:37 +0200290# The Rigol DS1xx2 driver currently uses the Linux kernel usbtmc module
291# (though it is planned to rewrite the driver to be portable later).
292# Thus, it will be disabled for non-Linux builds for now.
Uwe Hermann2e542812013-04-09 19:52:38 +0200293case "$host" in
Uwe Hermann63cbeae2013-04-09 17:58:37 +0200294*linux*)
295 # Do nothing. Whether the driver is enabled is determined by the
296 # previous --enable-all-drivers/--disable-all-drivers and/or any
297 # --enable-rigol-ds1xx2/--disable-rigol-ds1xx2 options.
298 ;;
299*)
300 # Disable the driver for builds that don't target Linux.
301 HW_RIGOL_DS1XX2="no"
302 ;;
303esac
304
Uwe Hermann6dddd902012-03-31 11:28:24 +0200305AC_SUBST(SR_PKGLIBS)
Uwe Hermann826938d2011-12-30 10:42:39 +0100306
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200307# Now set AM_CONDITIONALs and AC_DEFINEs for the enabled/disabled drivers.
308
309AM_CONDITIONAL(HW_AGILENT_DMM, test x$HW_AGILENT_DMM = xyes)
310if test "x$HW_AGILENT_DMM" = "xyes"; then
311 AC_DEFINE(HAVE_HW_AGILENT_DMM, 1, [Agilent DMM support])
312fi
313
314AM_CONDITIONAL(HW_ALSA, test x$HW_ALSA = xyes)
315if test "x$HW_ALSA" = "xyes"; then
316 AC_DEFINE(HAVE_HW_ALSA, 1, [ALSA driver support])
317fi
318
Uwe Hermann9e165e72013-05-08 19:33:30 +0200319AM_CONDITIONAL(HW_ASIX_SIGMA, test x$HW_ASIX_SIGMA = xyes)
320if test "x$HW_ASIX_SIGMA" = "xyes"; then
321 AC_DEFINE(HAVE_HW_ASIX_SIGMA, 1, [ASIX SIGMA/SIGMA2 support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200322fi
323
324AM_CONDITIONAL(HW_BRYMEN_DMM, test x$HW_BRYMEN_DMM = xyes)
325if test "x$HW_BRYMEN_DMM" = "xyes"; then
Uwe Hermanne4fad802013-04-09 10:03:58 +0200326 AC_DEFINE(HAVE_HW_BRYMEN_DMM, 1, [Brymen DMM support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200327fi
328
Uwe Hermann32be5b22013-06-21 15:18:33 +0200329AM_CONDITIONAL(HW_CEM_DT_885X, test x$HW_CEM_DT_885X = xyes)
330if test "x$HW_CEM_DT_885X" = "xyes"; then
331 AC_DEFINE(HAVE_HW_CEM_DT_885X, 1, [CEM DT-885x support])
332fi
333
Uwe Hermann9e165e72013-05-08 19:33:30 +0200334AM_CONDITIONAL(HW_CHRONOVU_LA8, test x$HW_CHRONOVU_LA8 = xyes)
335if test "x$HW_CHRONOVU_LA8" = "xyes"; then
336 AC_DEFINE(HAVE_HW_CHRONOVU_LA8, 1, [ChronoVu LA8 support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200337fi
338
339AM_CONDITIONAL(HW_COLEAD_SLM, test x$HW_COLEAD_SLM = xyes)
340if test "x$HW_COLEAD_SLM" = "xyes"; then
341 AC_DEFINE(HAVE_HW_COLEAD_SLM, 1, [Colead SLM support])
342fi
343
Uwe Hermann9e165e72013-05-08 19:33:30 +0200344AM_CONDITIONAL(HW_DEMO, test x$HW_DEMO = xyes)
345if test "x$HW_DEMO" = "xyes"; then
346 AC_DEFINE(HAVE_HW_DEMO, 1, [Demo driver support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200347fi
348
349AM_CONDITIONAL(HW_FLUKE_DMM, test x$HW_FLUKE_DMM = xyes)
350if test "x$HW_FLUKE_DMM" = "xyes"; then
351 AC_DEFINE(HAVE_HW_FLUKE_DMM, 1, [Fluke DMM support])
352fi
353
Uwe Hermann9e165e72013-05-08 19:33:30 +0200354AM_CONDITIONAL(HW_FX2LAFW, test x$HW_FX2LAFW = xyes)
355if test "x$HW_FX2LAFW" = "xyes"; then
356 AC_DEFINE(HAVE_HW_FX2LAFW, 1, [fx2lafw support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200357fi
358
359AM_CONDITIONAL(HW_HANTEK_DSO, test x$HW_HANTEK_DSO = xyes)
360if test "x$HW_HANTEK_DSO" = "xyes"; then
361 AC_DEFINE(HAVE_HW_HANTEK_DSO, 1, [Hantek DSO support])
362fi
363
Uwe Hermann1f36a6c2013-06-21 15:11:36 +0200364AM_CONDITIONAL(HW_IKALOGIC_SCANALOGIC2, test x$HW_IKALOGIC_SCANALOGIC2 = xyes)
365if test "x$HW_IKALOGIC_SCANALOGIC2" = "xyes"; then
366 AC_DEFINE(HAVE_HW_IKALOGIC_SCANALOGIC2, 1, [IKALOGIC Scanalogic2 support])
367fi
368
Uwe Hermannfdf4a1f2013-06-21 17:15:10 +0200369AM_CONDITIONAL(HW_IKALOGIC_SCANAPLUS, test x$HW_IKALOGIC_SCANAPLUS = xyes)
370if test "x$HW_IKALOGIC_SCANAPLUS" = "xyes"; then
371 AC_DEFINE(HAVE_HW_IKALOGIC_SCANAPLUS, 1, [Ikalogic ScanaPLUS support])
372fi
373
Bert Vermeulened759a02013-06-20 21:31:31 +0200374AM_CONDITIONAL(HW_KECHENG_KC_330B, test x$HW_KECHENG_KC_330B = xyes)
375if test "x$HW_KECHENG_KC_330B" = "xyes"; then
376 AC_DEFINE(HAVE_HW_KECHENG_KC_330B, 1, [Kecheng KC-330B support])
377fi
378
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200379AM_CONDITIONAL(HW_LASCAR_EL_USB, test x$HW_LASCAR_EL_USB = xyes)
380if test "x$HW_LASCAR_EL_USB" = "xyes"; then
381 AC_DEFINE(HAVE_HW_LASCAR_EL_USB, 1, [Lascar EL-USB support])
382fi
383
Uwe Hermann9e165e72013-05-08 19:33:30 +0200384AM_CONDITIONAL(HW_LINK_MSO19, test x$HW_LINK_MSO19 = xyes)
385if test "x$HW_LINK_MSO19" = "xyes"; then
386 AC_DEFINE(HAVE_HW_LINK_MSO19, 1, [Link Instruments MSO-19 support])
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200387fi
388
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200389AM_CONDITIONAL(HW_MIC_985XX, test x$HW_MIC_985XX = xyes)
390if test "x$HW_MIC_985XX" = "xyes"; then
391 AC_DEFINE(HAVE_HW_MIC_985XX, 1, [MIC 985xx support])
392fi
393
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200394AM_CONDITIONAL(HW_NEXUS_OSCIPRIME, test x$HW_NEXUS_OSCIPRIME = xyes)
395if test "x$HW_NEXUS_OSCIPRIME" = "xyes"; then
396 AC_DEFINE(HAVE_HW_NEXUS_OSCIPRIME, 1, [Nexus Osciprime support])
397fi
398
Uwe Hermann9e165e72013-05-08 19:33:30 +0200399AM_CONDITIONAL(HW_OLS, test x$HW_OLS = xyes)
400if test "x$HW_OLS" = "xyes"; then
401 AC_DEFINE(HAVE_HW_OLS, 1, [OpenBench Logic Sniffer (OLS) support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200402fi
403
404AM_CONDITIONAL(HW_RIGOL_DS1XX2, test x$HW_RIGOL_DS1XX2 = xyes)
405if test "x$HW_RIGOL_DS1XX2" = "xyes"; then
406 AC_DEFINE(HAVE_HW_RIGOL_DS1XX2, 1, [Rigol DS1xx2 support])
407fi
408
409AM_CONDITIONAL(HW_SERIAL_DMM, test x$HW_SERIAL_DMM = xyes)
410if test "x$HW_SERIAL_DMM" = "xyes"; then
411 AC_DEFINE(HAVE_HW_SERIAL_DMM, 1, [Serial DMM support])
412fi
413
414AM_CONDITIONAL(HW_TONDAJ_SL_814, test x$HW_TONDAJ_SL_814 = xyes)
415if test "x$HW_TONDAJ_SL_814" = "xyes"; then
416 AC_DEFINE(HAVE_HW_TONDAJ_SL_814, 1, [Tondaj SL-814 support])
417fi
418
419AM_CONDITIONAL(HW_UNI_T_DMM, test x$HW_UNI_T_DMM = xyes)
420if test "x$HW_UNI_T_DMM" = "xyes"; then
421 AC_DEFINE(HAVE_HW_UNI_T_DMM, 1, [UNI-T DMM support])
422fi
423
424AM_CONDITIONAL(HW_VICTOR_DMM, test x$HW_VICTOR_DMM = xyes)
425if test "x$HW_VICTOR_DMM" = "xyes"; then
Uwe Hermanne4fad802013-04-09 10:03:58 +0200426 AC_DEFINE(HAVE_HW_VICTOR_DMM, 1, [Victor DMM support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200427fi
428
Uwe Hermann9e165e72013-05-08 19:33:30 +0200429AM_CONDITIONAL(HW_ZEROPLUS_LOGIC_CUBE, test x$HW_ZEROPLUS_LOGIC_CUBE = xyes)
430if test "x$HW_ZEROPLUS_LOGIC_CUBE" = "xyes"; then
431 AC_DEFINE(HAVE_HW_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support])
Uwe Hermannae4c3d02013-04-09 12:32:30 +0200432fi
433
Uwe Hermann826938d2011-12-30 10:42:39 +0100434# Checks for header files.
435# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
436AC_CHECK_HEADERS([fcntl.h sys/time.h termios.h])
437
438# Checks for typedefs, structures, and compiler characteristics.
439AC_C_INLINE
440AC_TYPE_INT8_T
441AC_TYPE_INT16_T
442AC_TYPE_INT32_T
443AC_TYPE_INT64_T
444AC_TYPE_UINT8_T
445AC_TYPE_UINT16_T
446AC_TYPE_UINT32_T
447AC_TYPE_UINT64_T
448AC_TYPE_SIZE_T
449
450# Checks for library functions.
451AC_CHECK_FUNCS([gettimeofday memset strchr strcspn strdup strerror strncasecmp strstr strtol strtoul strtoull])
452
Uwe Hermannfb6f1972012-05-30 00:00:33 +0200453AC_SUBST(FIRMWARE_DIR, "$datadir/sigrok-firmware")
Uwe Hermann826938d2011-12-30 10:42:39 +0100454AC_SUBST(MAKEFLAGS, '--no-print-directory')
455AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
456
Uwe Hermann6dddd902012-03-31 11:28:24 +0200457SR_PACKAGE_VERSION_MAJOR=sr_package_version_major
458SR_PACKAGE_VERSION_MINOR=sr_package_version_minor
459SR_PACKAGE_VERSION_MICRO=sr_package_version_micro
460SR_PACKAGE_VERSION=sr_package_version
Uwe Hermann826938d2011-12-30 10:42:39 +0100461
Uwe Hermann6dddd902012-03-31 11:28:24 +0200462AC_SUBST(SR_PACKAGE_VERSION_MAJOR)
463AC_SUBST(SR_PACKAGE_VERSION_MINOR)
464AC_SUBST(SR_PACKAGE_VERSION_MICRO)
465AC_SUBST(SR_PACKAGE_VERSION)
Uwe Hermann826938d2011-12-30 10:42:39 +0100466
Bert Vermeulen589a1012012-10-21 01:34:34 +0200467AC_CONFIG_FILES([Makefile version.h hardware/Makefile
Bert Vermeulen6ac0db12012-09-02 11:58:29 +0200468 hardware/agilent-dmm/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100469 hardware/alsa/Makefile
470 hardware/asix-sigma/Makefile
Alexandru Gagniuc20cbc782012-11-21 21:20:39 -0600471 hardware/brymen-dmm/Makefile
Bert Vermeulen8fa93682013-06-08 01:12:10 +0200472 hardware/cem-dt-885x/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100473 hardware/chronovu-la8/Makefile
Bert Vermeulen4d729dd2012-10-29 22:33:47 +0100474 hardware/colead-slm/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100475 hardware/common/Makefile
Marc Schink16e76ba2013-06-07 20:34:40 +0200476 hardware/ikalogic-scanalogic2/Makefile
Uwe Hermannfdf4a1f2013-06-21 17:15:10 +0200477 hardware/ikalogic-scanaplus/Makefile
Bert Vermeulened759a02013-06-20 21:31:31 +0200478 hardware/kecheng-kc-330b/Makefile
Bert Vermeulen46697e32012-11-27 17:40:14 +0100479 hardware/lascar-el-usb/Makefile
Uwe Hermann7ec5b542013-01-30 16:58:01 +0100480 hardware/mic-985xx/Makefile
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200481 hardware/nexus-osciprime/Makefile
Martin Lingf4816ac2012-12-29 22:22:10 +0100482 hardware/rigol-ds1xx2/Makefile
Uwe Hermannaa2af322012-11-09 03:33:05 +0100483 hardware/tondaj-sl-814/Makefile
Bert Vermeulenac3898d2012-11-02 20:47:06 +0100484 hardware/victor-dmm/Makefile
Uwe Hermann79081ec2012-10-27 22:41:50 +0200485 hardware/common/dmm/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100486 hardware/demo/Makefile
Bert Vermeulen883a2e92012-09-10 22:31:29 +0200487 hardware/fluke-dmm/Makefile
Joel Holdsworthf302a082012-02-11 12:08:49 +0000488 hardware/fx2lafw/Makefile
Bert Vermeulen589a1012012-10-21 01:34:34 +0200489 hardware/hantek-dso/Makefile
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200490 hardware/link-mso19/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100491 hardware/openbench-logic-sniffer/Makefile
Uwe Hermann21a7f262012-12-01 19:35:19 +0100492 hardware/serial-dmm/Makefile
Uwe Hermann79081ec2012-10-27 22:41:50 +0200493 hardware/uni-t-dmm/Makefile
Uwe Hermanndb8ae7b2011-12-30 10:50:00 +0100494 hardware/zeroplus-logic-cube/Makefile
495 input/Makefile
496 output/Makefile
497 output/text/Makefile
498 libsigrok.pc
Uwe Hermann826938d2011-12-30 10:42:39 +0100499 contrib/Makefile
Uwe Hermann79bb0e92013-03-07 09:37:42 +0100500 tests/Makefile
Uwe Hermann826938d2011-12-30 10:42:39 +0100501 ])
502
503AC_OUTPUT
504
505echo
Uwe Hermann45aed072012-01-04 00:49:21 +0100506echo "libsigrok configuration summary:"
Uwe Hermann826938d2011-12-30 10:42:39 +0100507echo
Uwe Hermann6dddd902012-03-31 11:28:24 +0200508echo " - Package version (major.minor.micro): $SR_PACKAGE_VERSION"
509echo " - Library version (current:revision:age): $SR_LIB_VERSION"
Uwe Hermann45aed072012-01-04 00:49:21 +0100510echo " - Prefix: $prefix"
Uwe Hermann6bad8482013-04-09 18:47:31 +0200511echo " - Building on: $build"
512echo " - Building for: $host"
Uwe Hermann45aed072012-01-04 00:49:21 +0100513echo
514echo "Detected libraries:"
515echo
516
517# Note: This only works for libs with pkg-config integration.
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200518for lib in "glib-2.0 >= 2.32.0" "libzip >= 0.8" "libusb-1.0 >= 1.0.9" "libftdi >= 0.16" "libudev >= 151" "alsa >= 1.0" "check >= 0.9.4"; do
Uwe Hermann45aed072012-01-04 00:49:21 +0100519 if `$PKG_CONFIG --exists $lib`; then
520 ver=`$PKG_CONFIG --modversion $lib`
521 answer="yes ($ver)"
522 else
523 answer="no"
524 fi
525 echo " - $lib: $answer"
526done
527
Bert Vermeulen589a1012012-10-21 01:34:34 +0200528echo -e "\nEnabled hardware drivers:\n"
Uwe Hermanne4fad802013-04-09 10:03:58 +0200529echo " - agilent-dmm..................... $HW_AGILENT_DMM"
530echo " - alsa............................ $HW_ALSA"
Uwe Hermann9e165e72013-05-08 19:33:30 +0200531echo " - asix-sigma...................... $HW_ASIX_SIGMA"
Uwe Hermanne4fad802013-04-09 10:03:58 +0200532echo " - brymen-dmm...................... $HW_BRYMEN_DMM"
Bert Vermeulen8fa93682013-06-08 01:12:10 +0200533echo " - cem-dt-885x..................... $HW_CEM_DT_885X"
Uwe Hermann9e165e72013-05-08 19:33:30 +0200534echo " - chronovu-la8.................... $HW_CHRONOVU_LA8"
Uwe Hermanne4fad802013-04-09 10:03:58 +0200535echo " - colead-slm...................... $HW_COLEAD_SLM"
Uwe Hermann9e165e72013-05-08 19:33:30 +0200536echo " - demo............................ $HW_DEMO"
Uwe Hermanne4fad802013-04-09 10:03:58 +0200537echo " - fluke-dmm....................... $HW_FLUKE_DMM"
Uwe Hermann9e165e72013-05-08 19:33:30 +0200538echo " - fx2lafw......................... $HW_FX2LAFW"
Uwe Hermanne4fad802013-04-09 10:03:58 +0200539echo " - hantek-dso...................... $HW_HANTEK_DSO"
Marc Schink16e76ba2013-06-07 20:34:40 +0200540echo " - ikalogic-scanalogic2............ $HW_IKALOGIC_SCANALOGIC2"
Uwe Hermannfdf4a1f2013-06-21 17:15:10 +0200541echo " - ikalogic-scanaplus.............. $HW_IKALOGIC_SCANAPLUS"
Bert Vermeulened759a02013-06-20 21:31:31 +0200542echo " - kecheng-kc-330b................. $HW_KECHENG_KC_330B"
Uwe Hermanne4fad802013-04-09 10:03:58 +0200543echo " - lascar-el-usb................... $HW_LASCAR_EL_USB"
Uwe Hermann9e165e72013-05-08 19:33:30 +0200544echo " - link-mso19...................... $HW_LINK_MSO19"
Uwe Hermanne4fad802013-04-09 10:03:58 +0200545echo " - mic-985xx....................... $HW_MIC_985XX"
Uwe Hermann7ab89f42013-05-08 16:40:45 +0200546echo " - nexus-osciprime................. $HW_NEXUS_OSCIPRIME"
Uwe Hermann9e165e72013-05-08 19:33:30 +0200547echo " - openbench-logic-sniffer......... $HW_OLS"
Uwe Hermanne4fad802013-04-09 10:03:58 +0200548echo " - rigol-ds1xx2.................... $HW_RIGOL_DS1XX2"
549echo " - serial-dmm...................... $HW_SERIAL_DMM"
550echo " - tondaj-sl-814................... $HW_TONDAJ_SL_814"
551echo " - uni-t-dmm....................... $HW_UNI_T_DMM"
552echo " - victor-dmm...................... $HW_VICTOR_DMM"
Uwe Hermann9e165e72013-05-08 19:33:30 +0200553echo " - zeroplus-logic-cube............. $HW_ZEROPLUS_LOGIC_CUBE"
Uwe Hermann826938d2011-12-30 10:42:39 +0100554echo
555