mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/Makefile.sub (config.h): add VC++4/5 support about noreturn
directive. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7ee0812aee
commit
62f83f9f13
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Sat May 18 21:18:00 2002 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* win32/Makefile.sub (config.h): add VC++4/5 support about noreturn
|
||||||
|
directive.
|
||||||
|
|
||||||
Fri May 17 16:16:19 2002 WATANABE Hirofumi <eban@ruby-lang.org>
|
Fri May 17 16:16:19 2002 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* sampl/test.rb: use eval instead of './miniruby -c',
|
* sampl/test.rb: use eval instead of './miniruby -c',
|
||||||
|
|
|
@ -182,7 +182,11 @@ config.h: Makefile $(srcdir)/win32/Makefile.sub
|
||||||
#define HAVE_PROTOTYPES 1
|
#define HAVE_PROTOTYPES 1
|
||||||
#define TOKEN_PASTE(x,y) x##y
|
#define TOKEN_PASTE(x,y) x##y
|
||||||
#define HAVE_STDARG_PROTOTYPES 1
|
#define HAVE_STDARG_PROTOTYPES 1
|
||||||
|
#if _MSC_VER > 1100 && !defined NORETURN
|
||||||
#define NORETURN(x) __declspec(noreturn) x
|
#define NORETURN(x) __declspec(noreturn) x
|
||||||
|
#else
|
||||||
|
#define NORETURN(x) x
|
||||||
|
#endif
|
||||||
#define HAVE_DECL_SYS_NERR 1
|
#define HAVE_DECL_SYS_NERR 1
|
||||||
#define STDC_HEADERS 1
|
#define STDC_HEADERS 1
|
||||||
#define HAVE_STDLIB_H 1
|
#define HAVE_STDLIB_H 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue