1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* Makefile.in, configure.in (MINIOBJS): miniruby on HP-UX can not load

extension libraries.

* bignum.c (bignew_1, bigadd): K&R style argument actually can't be
  defined as char.

* missing/vsnprintf.c: ANSI compiler supports const keyword.

* ext/digest/sha2/extconf.rb: reject platforms which has inttypes.h
  but no 64bit integer.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9089 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2005-09-06 23:23:04 +00:00
parent cca72f1d09
commit c0af1a72a1
7 changed files with 22 additions and 13 deletions

View file

@ -95,7 +95,7 @@
# endif
#endif
#if defined(__hpux) && !defined(__GNUC__)
#if defined(__hpux) && !defined(__GNUC__) && !defined(__STDC__)
#define const
#endif