mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
2873edeafb
* https://github.com/k-takata/Onigmo/blob/Onigmo-6.0.0/HISTORY * fix for ruby 2.4: https://github.com/k-takata/Onigmo/pull/78 * suppress warning: https://github.com/k-takata/Onigmo/pull/79 * include/ruby/oniguruma.h: include onigmo.h. * template/encdb.h.tmpl: ignore duplicated definition of EUC-CN in enc/euc_kr.c. It is defined in enc/gb2313.c with CRuby macro. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
8 lines
262 B
C
8 lines
262 B
C
#ifndef ONIGURUMA_H
|
|
#define ONIGURUMA_H
|
|
#include "onigmo.h"
|
|
#define ONIGURUMA
|
|
#define ONIGURUMA_VERSION_MAJOR ONIGMO_VERSION_MAJOR
|
|
#define ONIGURUMA_VERSION_MINOR ONIGMO_VERSION_MINOR
|
|
#define ONIGURUMA_VERSION_TEENY ONIGMO_VERSION_TEENY
|
|
#endif /* ONIGURUMA_H */
|