X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=configure.ac;h=e6a719b8b29e8e205f77691569b50a1320735559;hb=5a2c71ccd7c46b18583dd068a8508e9d93ed9190;hp=c60e403d4438e32fd89b31bae80d38b99723bca2;hpb=e9227902208d2ab96349b60788596dfc2222941a;p=libsigrok.git diff --git a/configure.ac b/configure.ac index c60e403d..e6a719b8 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ # We require at least autoconf 2.63 (AC_INIT format changed there). AC_PREREQ([2.63]) -AC_INIT([libsigrok], [0.4.0], +AC_INIT([libsigrok], [0.5.0], [sigrok-devel@lists.sourceforge.net], [libsigrok], [http://www.sigrok.org]) AC_CONFIG_MACRO_DIR([m4]) @@ -67,7 +67,8 @@ SR_PKG_VERSION_SET([SR_PACKAGE_VERSION], [AC_PACKAGE_VERSION]) # Carefully read the libtool docs before updating these numbers! # The algorithm for determining which number to change (and how) is nontrivial! # http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info -SR_LIB_VERSION_SET([SR_LIB_VERSION], [2:0:0]) +# Format: current:revision:age. +SR_LIB_VERSION_SET([SR_LIB_VERSION], [3:0:0]) AM_CONDITIONAL([WIN32], [test -z "${host_os##mingw*}" || test -z "${host_os##cygwin*}"]) @@ -170,6 +171,9 @@ AS_IF([test "x$sr_cv_have_rpc" = xyes], # VXI support is only compiled if RPC support was found. AM_CONDITIONAL([NEED_RPC], [test "x$sr_cv_have_rpc" = xyes]) +# Check for compiler support of 128 bit integers +AC_CHECK_TYPES([__int128_t, __uint128_t], [], [], []) + ######################## ## Hardware drivers ## ######################## @@ -216,6 +220,7 @@ m4_define([SR_DRIVER], SR_DRIVER([Agilent DMM], [agilent-dmm], [libserialport]) SR_DRIVER([Appa 55II], [appa-55ii], [libserialport]) +SR_DRIVER([Arachnid Labs Re:load Pro], [arachnid-labs-re-load-pro], [libserialport]) SR_DRIVER([ASIX SIGMA/SIGMA2], [asix-sigma], [libftdi]) SR_DRIVER([Atten PPS3xxx], [atten-pps3xxx], [libserialport]) SR_DRIVER([BayLibre ACME], [baylibre-acme], [sys_timerfd_h]) @@ -230,11 +235,14 @@ SR_DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu], [libserialport]) SR_DRIVER([DER EE DE-5000], [deree-de5000], [libserialport]) SR_DRIVER([demo], [demo]) SR_DRIVER([Fluke DMM], [fluke-dmm], [libserialport]) +SR_DRIVER([FTDI LA], [ftdi-la], [libusb libftdi]) SR_DRIVER([fx2lafw], [fx2lafw], [libusb]) SR_DRIVER([GMC MH 1x/2x], [gmc-mh-1x-2x], [libserialport]) SR_DRIVER([GW Instek GDS-800], [gwinstek-gds-800], [libserialport]) SR_DRIVER([Hameg HMO], [hameg-hmo], [libserialport]) +SR_DRIVER([Hantek 6xxx], [hantek-6xxx], [libusb]) SR_DRIVER([Hantek DSO], [hantek-dso], [libusb]) +SR_DRIVER([HP 3457A], [hp-3457a]) SR_DRIVER([Hung-Chang DSO-2100], [hung-chang-dso-2100], [libieee1284]) SR_DRIVER([Ikalogic Scanalogic-2], [ikalogic-scanalogic2], [libusb]) SR_DRIVER([Ikalogic Scanaplus], [ikalogic-scanaplus], [libftdi]) @@ -249,6 +257,7 @@ SR_DRIVER([MIC 985xx], [mic-985xx], [libserialport]) SR_DRIVER([Motech LPS 30x], [motech-lps-30x], [libserialport]) SR_DRIVER([Norma DMM], [norma-dmm], [libserialport]) SR_DRIVER([OpenBench Logic Sniffer], [openbench-logic-sniffer], [libserialport]) +SR_DRIVER([PCE PCE-322A], [pce-322a], [libserialport]) SR_DRIVER([Pipistrello-OLS], [pipistrello-ols], [libftdi]) SR_DRIVER([Rigol DS], [rigol-ds]) SR_DRIVER([Saleae Logic16], [saleae-logic16], [libusb]) @@ -298,7 +307,7 @@ AC_ARG_ENABLE([java], sr_cxx_missing= # Check if the C++ compiler supports the C++11 standard. -AX_CXX_COMPILE_STDCXX_11([noext], [optional]) +AX_CXX_COMPILE_STDCXX([11], [noext], [optional]) AS_IF([test "x$HAVE_CXX11" != x1], [SR_APPEND([sr_cxx_missing], [', '], ['C++11'])])