Collection of DPF-based plugins for packaging
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.1KB

  1. # ===========================================================================
  2. # https://www.gnu.org/software/autoconf-archive/ax_prog_ruby_version.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_PROG_RUBY_VERSION([VERSION],[ACTION-IF-TRUE],[ACTION-IF-FALSE])
  8. #
  9. # DESCRIPTION
  10. #
  11. # Makes sure that ruby supports the version indicated. If true the shell
  12. # commands in ACTION-IF-TRUE are executed. If not the shell commands in
  13. # ACTION-IF-FALSE are run. Note if $RUBY is not set (for example by
  14. # running AC_CHECK_PROG or AC_PATH_PROG) the macro will fail.
  15. #
  16. # Example:
  17. #
  18. # AC_PATH_PROG([RUBY],[ruby])
  19. # AC_PROG_RUBY_VERSION([1.8.0],[ ... ],[ ... ])
  20. #
  21. # This will check to make sure that the ruby you have supports at least
  22. # version 1.6.0.
  23. #
  24. # NOTE: This macro uses the $RUBY variable to perform the check.
  25. # AX_WITH_PROG([RUBY],[ruby],[VALUE-IF-NOT-FOUND],[PATH]) can be used to
  26. # set that variable prior to running this macro. The $RUBY_VERSION
  27. # variable will be valorized with the detected version.
  28. #
  29. # LICENSE
  30. #
  31. # Copyright (c) 2009 Francesco Salvestrini <salvestrini@users.sourceforge.net>
  32. #
  33. # Copying and distribution of this file, with or without modification, are
  34. # permitted in any medium without royalty provided the copyright notice
  35. # and this notice are preserved. This file is offered as-is, without any
  36. # warranty.
  37. #serial 12
  38. AC_DEFUN([AX_PROG_RUBY_VERSION],[
  39. AC_REQUIRE([AC_PROG_SED])
  40. AC_REQUIRE([AC_PROG_GREP])
  41. AS_IF([test -n "$RUBY"],[
  42. ax_ruby_version="$1"
  43. AC_MSG_CHECKING([for ruby version])
  44. changequote(<<,>>)
  45. ruby_version=`$RUBY --version 2>&1 | $GREP "^ruby " | $SED -e 's/^.* \([0-9]*\.[0-9]*\.[0-9]*\) .*/\1/'`
  46. changequote([,])
  47. AC_MSG_RESULT($ruby_version)
  48. AC_SUBST([RUBY_VERSION],[$ruby_version])
  49. AX_COMPARE_VERSION([$ax_ruby_version],[le],[$ruby_version],[
  50. :
  51. $2
  52. ],[
  53. :
  54. $3
  55. ])
  56. ],[
  57. AC_MSG_WARN([could not find the ruby interpreter])
  58. $3
  59. ])
  60. ])