From 181a3a2af5df88d145b73a060d51fe437c8c4ad4 Mon Sep 17 00:00:00 2001 From: eban Date: Thu, 29 Jan 2004 14:18:42 +0000 Subject: * configure.in (DLEXT2): removed. Ruby does not treat ".dll" as a extention library anymore. * bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub (DLEXT2): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ bcc32/Makefile.sub | 2 -- configure.in | 4 +--- win32/Makefile.sub | 2 -- wince/Makefile.sub | 2 -- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3a1ed3f8cb..2cf512df72 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Thu Jan 29 23:11:57 2004 WATANABE Hirofumi + + * configure.in (DLEXT2): removed. Ruby does not treat + ".dll" as a extention library anymore. + + * bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub (DLEXT2): + ditto. + Thu Jan 29 22:41:53 2004 Dave Thomas * lib/rdoc/generators/html_generator.rb: Allow 'link:' in Tidylinks. diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index b735a80ace..5c2a744d31 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -263,7 +263,6 @@ config.h: \#define FILE_READPTR curp \#define DEFAULT_KCODE KCODE_NONE \#define DLEXT ".so" -\#define DLEXT2 ".dll" \#define RUBY_LIB "/lib/ruby/$(MAJOR).$(MINOR)" \#define RUBY_SITE_LIB "/lib/ruby/site_ruby" \#define RUBY_SITE_LIB2 "/lib/ruby/site_ruby/$(MAJOR).$(MINOR)" @@ -357,7 +356,6 @@ s,@STATIC@,$(STATIC),;t t s,@CCDLFLAGS@,,;t t s,@LDSHARED@,$(LDSHARED),;t t s,@DLEXT@,so,;t t -s,@DLEXT2@,dll,;t t s,@LIBEXT@,lib,;t t s,@STRIP@,$(STRIP),;t t s,@EXTSTATIC@,$(EXTSTATIC),;t t diff --git a/configure.in b/configure.in index 4a875aba58..9792d5a6ce 100644 --- a/configure.in +++ b/configure.in @@ -985,9 +985,7 @@ else os2-emx*) DLEXT=dll AC_DEFINE(DLEXT, ".dll");; cygwin*|mingw*) DLEXT=so - AC_DEFINE(DLEXT, ".so") - DLEXT2=dll - AC_DEFINE(DLEXT2, ".dll");; + AC_DEFINE(DLEXT, ".so");; *) DLEXT=so AC_DEFINE(DLEXT, ".so");; esac diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 75f426c06c..e69ae82458 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -289,7 +289,6 @@ config.h: #define FILE_READPTR _ptr #define DEFAULT_KCODE KCODE_NONE #define DLEXT ".so" -#define DLEXT2 ".dll" #define RUBY_LIB "/lib/ruby/$(MAJOR).$(MINOR)" #define RUBY_SITE_LIB "/lib/ruby/site_ruby" #define RUBY_SITE_LIB2 "/lib/ruby/site_ruby/$(MAJOR).$(MINOR)" @@ -359,7 +358,6 @@ s,@STATIC@,$(STATIC),;t t s,@CCDLFLAGS@,,;t t s,@LDSHARED@,$(LDSHARED),;t t s,@DLEXT@,so,;t t -s,@DLEXT2@,dll,;t t s,@LIBEXT@,lib,;t t s,@STRIP@,$(STRIP),;t t s,@EXTSTATIC@,$(EXTSTATIC),;t t diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 0406f643fd..2b0e53209e 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -290,7 +290,6 @@ config.h: #define RSHIFT(x,y) ((x)>>(int)y) #define DEFAULT_KCODE KCODE_NONE #define DLEXT ".so" -#define DLEXT2 ".dll" #define RUBY_LIB "/lib/ruby/$(MAJOR).$(MINOR)" #define RUBY_SITE_LIB "/lib/ruby/site_ruby" #define RUBY_SITE_LIB2 "/lib/ruby/site_ruby/$(MAJOR).$(MINOR)" @@ -387,7 +386,6 @@ s,@STATIC@,$(STATIC),;t t s,@CCDLFLAGS@,-DIMPORT,;t t s,@LDSHARED@,$(LDSHARED),;t t s,@DLEXT@,so,;t t -s,@DLEXT2@,dll,;t t s,@LIBEXT@,lib,;t t s,@STRIP@,$(STRIP),;t t s,@EXTSTATIC@,$(EXTSTATIC),;t t -- cgit v1.2.3