Skip to content

Commit

Permalink
2000-06-08
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@737 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
eban committed Jun 7, 2000
1 parent e7520fc commit c9e5e47
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
Thu Jun 8 00:31:04 2000 WATANABE Hirofumi <eban@os.rim.or.jp>

* regex.h: export re_mbctab properly on cygwin.

* dln.c: use dlopen instead of LoadLibrary on cygwin.

Mon Jun 5 00:18:08 2000 WATANABE Hirofumi <eban@os.rim.or.jp>

* bignum.c: avoid conflict with USHORT on mingw32.
Expand Down
8 changes: 4 additions & 4 deletions dln.c
Expand Up @@ -71,7 +71,7 @@ char *getenv();

int eaccess();

#if defined(HAVE_DLOPEN) && !defined(USE_DLN_A_OUT) && !defined(__CYGWIN32__) && !defined(_AIX)
#if defined(HAVE_DLOPEN) && !defined(USE_DLN_A_OUT) && !defined(_AIX)
/* dynamic load with dlopen() */
# define USE_DLN_DLOPEN
#endif
Expand Down Expand Up @@ -1103,7 +1103,7 @@ dln_sym(name)
#endif


#ifdef _WIN32
#if defined _WIN32 && !defined __CYGWIN__
#include <windows.h>
#endif

Expand Down Expand Up @@ -1135,7 +1135,7 @@ dln_strerror()
return (char*)dlerror();
#endif

#ifdef _WIN32
#if defined _WIN32 && !defined __CYGWIN__
static char message[1024];
int error = GetLastError();
char *p = message;
Expand Down Expand Up @@ -1210,7 +1210,7 @@ void
dln_load(file)
const char *file;
{
#ifdef _WIN32
#if defined _WIN32 && !defined __CYGWIN__
HINSTANCE handle;
char winfile[MAXPATHLEN];
void (*init_fct)();
Expand Down
2 changes: 1 addition & 1 deletion file.c
Expand Up @@ -2167,7 +2167,7 @@ Init_File()
rb_define_singleton_method(rb_cFile, "split", rb_file_s_split, 1);
rb_define_singleton_method(rb_cFile, "join", rb_file_s_join, -2);

#ifdef DOSISH
#if defined DOSISH && !defined __CYGWIN__
rb_define_const(rb_cFile, "ALT_SEPARATOR", rb_str_new2("\\"));
#else
rb_define_const(rb_cFile, "ALT_SEPARATOR", Qnil);
Expand Down
2 changes: 1 addition & 1 deletion regex.h
Expand Up @@ -90,7 +90,7 @@
#define MBCTYPE_SJIS 2
#define MBCTYPE_UTF8 3

#if defined IMPORT
#if defined IMPORT || defined USEIMPORTLIB
extern __declspec(dllimport)
#elif defined EXPORT
extern __declspec(dllexport)
Expand Down

0 comments on commit c9e5e47

Please sign in to comment.