From c6574a0a9e201d0a768f94dd35cde108e8a38902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Mon, 29 Feb 2016 21:26:25 +0100 Subject: [PATCH] core: add detection of Ruby 2.2 and 2.3 in autotools --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0c616a9cd..c30442c53 100644 --- a/configure.ac +++ b/configure.ac @@ -585,7 +585,7 @@ RUBY_VERSION= if test "x$enable_ruby" = "xyes" ; then RUBY_CFLAGS="" RUBY_LFLAGS="" - for v in "2.1" "2.0" "1.9" "1.8" ; do + for v in "2.3" "2.2" "2.1" "2.0" "1.9" "1.8" ; do pkgconfig_ruby_found=`$PKGCONFIG --exists ruby-$v 2>/dev/null` if test "x$?" = "x0" ; then RUBY_VERSION=`$PKGCONFIG --modversion ruby-$v`