diff options
author | 2016-05-23 16:10:41 +0200 | |
---|---|---|
committer | 2016-06-06 19:57:11 +0200 | |
commit | f3b004164cf4996eba27ae27e643665f8e76228e (patch) | |
tree | 52696142818e373bfa3324cb9e96e45be999f481 | |
parent | dbcae9fb409ce2af68f319165bdaa60d2324b2d8 (diff) | |
download | paludis-f3b004164cf4996eba27ae27e643665f8e76228e.tar.gz paludis-f3b004164cf4996eba27ae27e643665f8e76228e.tar.xz |
build-sys: update supported ruby versions
add ruby 2.3
default to ruby 2.3
drop 2.0 and 1.9 which are dead
Change-Id: If910a27595e3e92477ce54dec9216293abd6a5df
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 4e808d88c..d1a38ccf2 100644 --- a/configure.ac +++ b/configure.ac @@ -635,12 +635,12 @@ AC_MSG_RESULT($enable_ruby) if test "x$enable_ruby" = "xyes" ; then AC_ARG_WITH([ruby-version], - AS_HELP_STRING([--with-ruby-version=2.2], [Specify Ruby version]), + AS_HELP_STRING([--with-ruby-version=2.3], [Specify Ruby version]), RUBY_VERSION="$withval", - RUBY_VERSION="2.2") + RUBY_VERSION="2.3") case "$RUBY_VERSION" in - 1.9|2.0|2.1|2.2) + 2.1|2.2|2.3) ;; *) AC_MSG_ERROR([Invalid ruby version specified]) |