X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=configure.ac;h=de2b028e1a8e464aa724b5ef8a2204df35143fb3;hb=6e8d31d4680a35a35c2605c90d3abcc559d70a56;hp=88424a8b6f956a4d9712a0a27a74ec4105d57e4d;hpb=e469259a577069529e60c9741f098a0c5c56f813;p=libsigrok.git diff --git a/configure.ac b/configure.ac index 88424a8b..de2b028e 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*}"]) @@ -216,6 +217,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]) @@ -403,10 +405,16 @@ AS_IF([test "x$BINDINGS_CXX" = xyes], [sr_ruby_missing=], [sr_ruby_missing='C++ bindings']) -AX_RUBY_EXT +AC_PATH_PROGS(RUBY, ["${RUBY-ruby}"], []) +AS_IF([test "x$RUBY" != x], + AC_MSG_CHECKING([for Ruby version]) + [RUBY_VERSION=`$RUBY -e 'puts RUBY_VERSION'`] + AC_MSG_RESULT([$RUBY_VERSION]) + [RUBY_DLEXT=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG[["DLEXT"]]'`] + AC_SUBST(RUBY_DLEXT)) AS_IF([test "x$RUBY" = x], - [SR_APPEND([sr_ruby_missing], [', '], ['Ruby'])]) + [SR_APPEND([sr_ruby_missing], [', '], [Ruby])]) # Extract major and minor version number of the Ruby interpreter. sr_rbmajor=${RUBY_VERSION%%.*} @@ -430,7 +438,6 @@ AS_IF([test "x$SWIG" = x], AS_IF([test -z "$sr_ruby_missing"], [BINDINGS_RUBY=$enable_ruby], [BINDINGS_RUBY=no]) AM_CONDITIONAL([BINDINGS_RUBY], [test "x$BINDINGS_RUBY" = xyes]) -# AC_SUBST(RUBY_EXT_DLEXT, $RUBY_EXT_DLEXT) #################### ## Java bindings ##