2020-04-10 08:11:40 +03: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-28 05:12:34 +03: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 16:43:29 +03:00
|
|
|
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
|
2009-02-02 10:07:59 +03:00
|
|
|
#define RUBY_PATCHLEVEL -1
|
2008-06-21 19:49:38 +04:00
|
|
|
|
2009-05-13 10:23:20 +04:00
|
|
|
#include "ruby/version.h"
|
2022-02-23 00:40:32 +03:00
|
|
|
#include "ruby/internal/abi.h"
|
2008-06-21 19:49:38 +04:00
|
|
|
|
2022-09-17 15:16:06 +03:00
|
|
|
#ifndef RUBY_REVISION
|
|
|
|
#include "revision.h"
|
|
|
|
|
2015-12-25 16:43:29 +03:00
|
|
|
#ifndef TOKEN_PASTE
|
|
|
|
#define TOKEN_PASTE(x,y) x##y
|
|
|
|
#endif
|
|
|
|
#define ONLY_ONE_DIGIT(x) TOKEN_PASTE(10,x) < 1000
|
2016-01-09 03:23:04 +03:00
|
|
|
#define WITH_ZERO_PADDING(x) TOKEN_PASTE(0,x)
|
2016-01-09 05:03:22 +03:00
|
|
|
#define RUBY_BIRTH_YEAR_STR STRINGIZE(RUBY_BIRTH_YEAR)
|
2015-12-25 16:43:29 +03:00
|
|
|
#define RUBY_RELEASE_YEAR_STR STRINGIZE(RUBY_RELEASE_YEAR)
|
|
|
|
#if ONLY_ONE_DIGIT(RUBY_RELEASE_MONTH)
|
2016-01-09 03:23:04 +03:00
|
|
|
#define RUBY_RELEASE_MONTH_STR STRINGIZE(WITH_ZERO_PADDING(RUBY_RELEASE_MONTH))
|
2015-12-25 16:43:29 +03:00
|
|
|
#else
|
|
|
|
#define RUBY_RELEASE_MONTH_STR STRINGIZE(RUBY_RELEASE_MONTH)
|
|
|
|
#endif
|
|
|
|
#if ONLY_ONE_DIGIT(RUBY_RELEASE_DAY)
|
2016-01-09 03:23:04 +03:00
|
|
|
#define RUBY_RELEASE_DAY_STR STRINGIZE(WITH_ZERO_PADDING(RUBY_RELEASE_DAY))
|
2015-12-25 16:43:29 +03:00
|
|
|
#else
|
|
|
|
#define RUBY_RELEASE_DAY_STR STRINGIZE(RUBY_RELEASE_DAY)
|
|
|
|
#endif
|
|
|
|
|
2022-09-17 15:16:06 +03:00
|
|
|
#endif
|
|
|
|
|
2022-07-12 10:44:57 +03:00
|
|
|
#ifdef RUBY_ABI_VERSION
|
|
|
|
# define RUBY_ABI_VERSION_SUFFIX "+"STRINGIZE(RUBY_ABI_VERSION)
|
|
|
|
#else
|
|
|
|
# define RUBY_ABI_VERSION_SUFFIX ""
|
|
|
|
#endif
|
2009-03-06 13:25:41 +03:00
|
|
|
#if !defined RUBY_LIB_VERSION && defined RUBY_LIB_VERSION_STYLE
|
|
|
|
# if RUBY_LIB_VERSION_STYLE == 3
|
2022-02-23 00:40:32 +03:00
|
|
|
# define RUBY_LIB_VERSION STRINGIZE(RUBY_API_VERSION_MAJOR)"."STRINGIZE(RUBY_API_VERSION_MINOR) \
|
2022-07-12 10:44:57 +03:00
|
|
|
"."STRINGIZE(RUBY_API_VERSION_TEENY) RUBY_ABI_VERSION_SUFFIX
|
2009-03-06 13:25:41 +03:00
|
|
|
# elif RUBY_LIB_VERSION_STYLE == 2
|
2022-02-23 00:40:32 +03:00
|
|
|
# define RUBY_LIB_VERSION STRINGIZE(RUBY_API_VERSION_MAJOR)"."STRINGIZE(RUBY_API_VERSION_MINOR) \
|
2022-07-12 10:44:57 +03:00
|
|
|
RUBY_ABI_VERSION_SUFFIX
|
2009-03-06 13:25:41 +03:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2009-02-02 10:07:59 +03:00
|
|
|
#if RUBY_PATCHLEVEL == -1
|
2023-10-03 19:19:54 +03:00
|
|
|
# ifdef RUBY_PATCHLEVEL_NAME
|
|
|
|
# define RUBY_PATCHLEVEL_STR STRINGIZE(RUBY_PATCHLEVEL_NAME)
|
|
|
|
# else
|
|
|
|
# define RUBY_PATCHLEVEL_STR "dev"
|
|
|
|
# endif
|
2022-07-12 10:44:57 +03:00
|
|
|
#elif defined RUBY_ABI_VERSION
|
2023-10-03 19:19:54 +03:00
|
|
|
# error RUBY_ABI_VERSION is defined in non-development branch
|
2009-02-02 10:07:59 +03:00
|
|
|
#else
|
2023-10-03 19:19:54 +03:00
|
|
|
# define RUBY_PATCHLEVEL_STR ""
|
2009-02-02 10:07:59 +03:00
|
|
|
#endif
|
2009-01-10 14:28:41 +03:00
|
|
|
|
2020-04-10 08:11:40 +03:00
|
|
|
#endif /* RUBY_TOPLEVEL_VERSION_H */
|