Skip to content

Commit

Permalink
* include/ruby/win32.h, bcc32/Makefile.sub (config.h): bcc 5.8 has
Browse files Browse the repository at this point in the history
  stdint.h.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Aug 5, 2008
1 parent 49f7b3e commit 5133fc6
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 24 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Tue Aug 5 16:38:59 2008 Nobuyoshi Nakada <[email protected]>

* include/ruby/win32.h, bcc32/Makefile.sub (config.h): bcc 5.8 has
stdint.h.

Tue Aug 5 16:13:05 2008 Shugo Maeda <[email protected]>

* lib/net/imap.rb (disconnect): do not refer SSL::SSLSocket for
Expand Down
20 changes: 11 additions & 9 deletions bcc32/Makefile.sub
Original file line number Diff line number Diff line change
Expand Up @@ -287,25 +287,27 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/bcc32/Makefile.sub
\#define rb_pid_t int
\#define HAVE_STRUCT_STAT_ST_RDEV 1
\#define HAVE_ST_RDEV 1
!if $(BORLANDC) < 0x0580
\#define int8_t signed char
\#define HAVE_UINT8_T 1
\#define uint8_t unsigned char
\#define HAVE_INT16_T 1
\#define int16_t short
\#define HAVE_UINT16_T 1
\#define uint16_t unsigned short
\#define HAVE_INT32_T 1
\#define int32_t int
\#define HAVE_UINT32_T 1
\#define uint32_t unsigned int
\#define HAVE_INT64_T HAVE_LONG_LONG
\#define int64_t __int64
\#define HAVE_UINT64_T HAVE_LONG_LONG
\#define uint64_t unsigned __int64
\#define ssize_t int
!endif
\#define HAVE_UINT8_T 1
\#define HAVE_INT16_T 1
\#define HAVE_UINT16_T 1
\#define HAVE_INT32_T 1
\#define HAVE_UINT32_T 1
\#define HAVE_INT64_T HAVE_LONG_LONG
\#define HAVE_UINT64_T HAVE_LONG_LONG
\#define HAVE_INTPTR_T 1
\#define HAVE_UINTPTR_T 1
\#define HAVE_SSIZE_T 1
\#define ssize_t int
\#define GETGROUPS_T int
\#define RETSIGTYPE void
\#define HAVE_ALLOCA 1
Expand Down Expand Up @@ -345,7 +347,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/bcc32/Makefile.sub
\#define RSHIFT(x,y) ((x)>>(int)y)
\#define FILE_COUNT level
\#define FILE_READPTR curp
\#define RUBY_SETJMP(env) _setjmp(env)
\#define RUBY_SETJMP(env) setjmp(env)
\#define RUBY_LONGJMP(env,val) longjmp(env,val)
\#define RUBY_JMP_BUF jmp_buf
\#define inline __inline
Expand Down
16 changes: 9 additions & 7 deletions bcc32/mkexports.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
require 'win32/mkexports'

class Exports::Bcc < Exports
Forwards = /^rb_w32_(\w+)/

def forwarding(internal, export)
internal[/\A_?/]+export
end

def each_export(objs)
def each_line(objs, &block)
objs.each do |obj|
opt = /\.(?:so|dll)\z/i =~ obj ? "-ee" : "-oiPUBDEF -oiPUBD32"
IO.foreach("|tdump -q #{opt} #{obj.tr('/', '\\')} < nul") do |l|
opt = /\.(?:so|dll)\z/i =~ obj ? "-ee" : "-oiPUBDEF -oiPUBD32"
IO.foreach("|tdump -q #{opt} #{obj.tr('/', '\\')} < nul", &block)
end
end

def each_export(objs)
objdump(objs) do |l|
next unless /(?:PUBDEF|PUBD32|EXPORT)/ =~ l
yield $1 if /'(.*?)'/ =~ l
end
yield $1 if /'(.*?)'/ =~ l
end
yield "_strcasecmp", "_stricmp"
yield "_strncasecmp", "_strnicmp"
Expand Down
4 changes: 3 additions & 1 deletion bcc32/setup.mak
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ BASERUBY = $(BASERUBY)
!if !defined(BASERUBY)
@for %I in (ruby.exe) do @echo BASERUBY = "%~$$PATH:I" >> $(MAKEFILE)
!endif
@$(APPEND) $(BANG)endif
@type >> $(MAKEFILE) &&|
$(BANG)endif
|
!if exist(confargs.mk)
@type confargs.mk >> $(MAKEFILE)
@del confargs.mk
Expand Down
2 changes: 1 addition & 1 deletion include/ruby/win32.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ extern "C++" { /* template without extern "C++" */
#endif
#include <io.h>
#include <malloc.h>
#ifdef __MINGW32__
#if defined __MINGW32__ || __BORLANDC__ >= 0x0580
# include <stdint.h>
#else
# if !defined(_INTPTR_T_DEFINED)
Expand Down
6 changes: 0 additions & 6 deletions regint.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,14 +217,8 @@

#include <ctype.h>
#ifdef HAVE_SYS_TYPES_H
#ifndef __BORLANDC__
#include <sys/types.h>
#endif
#endif

#ifdef __BORLANDC__
#include <malloc.h>
#endif

#ifdef ONIG_DEBUG
# include <stdio.h>
Expand Down

0 comments on commit 5133fc6

Please sign in to comment.