2020-04-10 01:11:40 -04:00
|
|
|
#ifndef RUBY_TOPLEVEL_VERSION_H /*-*-C-*-vi:se ft=c:*/
|
|
|
|
#define RUBY_TOPLEVEL_VERSION_H
|
|
|
|
/**
|
|
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
|
|
|
* @copyright This file is a part of the programming language Ruby.
|
|
|
|
* Permission is hereby granted, to either redistribute and/or
|
|
|
|
* modify this file, provided that the conditions mentioned in the
|
|
|
|
* file COPYING are met. Consult the file for details.
|
|
|
|
*/
|
2018-12-27 21:12:34 -05:00
|
|
|
# define RUBY_VERSION_MAJOR RUBY_API_VERSION_MAJOR
|
|
|
|
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
|
|
|
|
#define RUBY_VERSION_TEENY 0
|
2015-12-25 08:43:29 -05:00
|
|
|
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
|
2009-02-02 02:07:59 -05:00
|
|
|
#define RUBY_PATCHLEVEL -1
|
2008-06-21 11:49:38 -04:00
|
|
|
|
2009-05-13 02:23:20 -04:00
|
|
|
#include "ruby/version.h"
|
2022-02-22 16:40:32 -05:00
|
|
|
#include "ruby/internal/abi.h"
|
2008-06-21 11:49:38 -04:00
|
|
|
|
2022-09-17 08:16:06 -04:00
|
|
|
#ifndef RUBY_REVISION
|
|
|
|
#include "revision.h"
|
|
|
|
|
2015-12-25 08:43:29 -05:00
|
|
|
#ifndef TOKEN_PASTE
|
|
|
|
#define TOKEN_PASTE(x,y) x##y
|
|
|
|
#endif
|
|
|
|
#define ONLY_ONE_DIGIT(x) TOKEN_PASTE(10,x) < 1000
|
2016-01-08 19:23:04 -05:00
|
|
|
#define WITH_ZERO_PADDING(x) TOKEN_PASTE(0,x)
|
2016-01-08 21:03:22 -05:00
|
|
|
#define RUBY_BIRTH_YEAR_STR STRINGIZE(RUBY_BIRTH_YEAR)
|
2015-12-25 08:43:29 -05:00
|
|
|
#define RUBY_RELEASE_YEAR_STR STRINGIZE(RUBY_RELEASE_YEAR)
|
|
|
|
#if ONLY_ONE_DIGIT(RUBY_RELEASE_MONTH)
|
2016-01-08 19:23:04 -05:00
|
|
|
#define RUBY_RELEASE_MONTH_STR STRINGIZE(WITH_ZERO_PADDING(RUBY_RELEASE_MONTH))
|
2015-12-25 08:43:29 -05:00
|
|
|
#else
|
|
|
|
#define RUBY_RELEASE_MONTH_STR STRINGIZE(RUBY_RELEASE_MONTH)
|
|
|
|
#endif
|
|
|
|
#if ONLY_ONE_DIGIT(RUBY_RELEASE_DAY)
|
2016-01-08 19:23:04 -05:00
|
|
|
#define RUBY_RELEASE_DAY_STR STRINGIZE(WITH_ZERO_PADDING(RUBY_RELEASE_DAY))
|
2015-12-25 08:43:29 -05:00
|
|
|
#else
|
|
|
|
#define RUBY_RELEASE_DAY_STR STRINGIZE(RUBY_RELEASE_DAY)
|
|
|
|
#endif
|
|
|
|
|
2022-09-17 08:16:06 -04:00
|
|
|
#endif
|
|
|
|
|
2022-07-12 03:44:57 -04:00
|
|
|
#ifdef RUBY_ABI_VERSION
|
|
|
|
# define RUBY_ABI_VERSION_SUFFIX "+"STRINGIZE(RUBY_ABI_VERSION)
|
|
|
|
#else
|
|
|
|
# define RUBY_ABI_VERSION_SUFFIX ""
|
|
|
|
#endif
|
2009-03-06 05:25:41 -05:00
|
|
|
#if !defined RUBY_LIB_VERSION && defined RUBY_LIB_VERSION_STYLE
|
|
|
|
# if RUBY_LIB_VERSION_STYLE == 3
|
2022-02-22 16:40:32 -05:00
|
|
|
# define RUBY_LIB_VERSION STRINGIZE(RUBY_API_VERSION_MAJOR)"."STRINGIZE(RUBY_API_VERSION_MINOR) \
|
2022-07-12 03:44:57 -04:00
|
|
|
"."STRINGIZE(RUBY_API_VERSION_TEENY) RUBY_ABI_VERSION_SUFFIX
|
2009-03-06 05:25:41 -05:00
|
|
|
# elif RUBY_LIB_VERSION_STYLE == 2
|
2022-02-22 16:40:32 -05:00
|
|
|
# define RUBY_LIB_VERSION STRINGIZE(RUBY_API_VERSION_MAJOR)"."STRINGIZE(RUBY_API_VERSION_MINOR) \
|
2022-07-12 03:44:57 -04:00
|
|
|
RUBY_ABI_VERSION_SUFFIX
|
2009-03-06 05:25:41 -05:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2009-02-02 02:07:59 -05:00
|
|
|
#if RUBY_PATCHLEVEL == -1
|
|
|
|
#define RUBY_PATCHLEVEL_STR "dev"
|
2022-07-12 03:44:57 -04:00
|
|
|
#elif defined RUBY_ABI_VERSION
|
|
|
|
#error RUBY_ABI_VERSION is defined in non-development branch
|
2009-02-02 02:07:59 -05:00
|
|
|
#else
|
2022-01-26 19:55:41 -05:00
|
|
|
#define RUBY_PATCHLEVEL_STR ""
|
2009-02-02 02:07:59 -05:00
|
|
|
#endif
|
2009-01-10 06:28:41 -05:00
|
|
|
|
2020-04-10 01:11:40 -04:00
|
|
|
#endif /* RUBY_TOPLEVEL_VERSION_H */
|