mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
configure.in: check API version
* configure.in: check if the API version number is consistent with the program version number. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53498 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
948c7689c9
commit
c97c37a5ca
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Jan 11 09:50:24 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in: check if the API version number is consistent with
|
||||||
|
the program version number.
|
||||||
|
|
||||||
Sun Jan 10 20:57:25 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sun Jan 10 20:57:25 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* compile.c (compile_massign_lhs): when index ends with splat,
|
* compile.c (compile_massign_lhs): when index ends with splat,
|
||||||
|
|
|
@ -224,6 +224,7 @@ fi
|
||||||
GNU_LD=$rb_cv_prog_gnu_ld
|
GNU_LD=$rb_cv_prog_gnu_ld
|
||||||
AC_SUBST(GNU_LD)])
|
AC_SUBST(GNU_LD)])
|
||||||
|
|
||||||
|
eval `sed -n 's/^#define RUBY_API_VERSION_\([A-Z][A-Z_0-9]*\) \([0-9][0-9]*\)/API_\1=\2/p' $srcdir/include/ruby/version.h`
|
||||||
RUBY_PROGRAM_VERSION=`sed -n 's/^#define RUBY_VERSION "\(.*\)"/\1/p' $srcdir/version.h`
|
RUBY_PROGRAM_VERSION=`sed -n 's/^#define RUBY_VERSION "\(.*\)"/\1/p' $srcdir/version.h`
|
||||||
MAJOR=`echo $RUBY_PROGRAM_VERSION | cut -d. -f1`
|
MAJOR=`echo $RUBY_PROGRAM_VERSION | cut -d. -f1`
|
||||||
MINOR=`echo $RUBY_PROGRAM_VERSION | cut -d. -f2`
|
MINOR=`echo $RUBY_PROGRAM_VERSION | cut -d. -f2`
|
||||||
|
@ -233,6 +234,9 @@ for v in MAJOR MINOR TEENY; do
|
||||||
AC_MSG_ERROR(could not determine $v number from version.h)
|
AC_MSG_ERROR(could not determine $v number from version.h)
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
AS_IF([test "$MAJOR.$MINOR" != "$API_MAJOR.$API_MINOR"], [
|
||||||
|
AC_MSG_ERROR([API version $API_MAJOR.$API_MINOR differs from program version $MAJOR.$MINOR])
|
||||||
|
])
|
||||||
AC_SUBST(MAJOR)
|
AC_SUBST(MAJOR)
|
||||||
AC_SUBST(MINOR)
|
AC_SUBST(MINOR)
|
||||||
AC_SUBST(TEENY)
|
AC_SUBST(TEENY)
|
||||||
|
|
Loading…
Reference in a new issue