summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-03 07:49:19 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-06-03 07:49:19 +0000
commit30efd6b3a62975cb4094f4e414d6b7ee9849cf3f (patch)
treeb20ef50093f2792b578e386f93a369112cbd0ba6
parentbba5fea7fd0a77276a868498410ade3cbdc36823 (diff)
see ChangeLog.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog8
-rw-r--r--cygwin/GNUmakefile.in1
-rw-r--r--ext/tcltklib/tcltklib.c2
-rw-r--r--instruby.rb4
4 files changed, 8 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d670b15e7..0e9557b826 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Sat Jun 3 16:42:27 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
+
+ * cygwin/GNUmakefile: remove unused import.h
+
+ * instruby.rb: ditto.
+
+ * ext/tcltklib/tcltklib.c: remove declaration of rb_argv0.
+
Thu Jun 1 00:58:11 2000 Yukihiro Matsumoto <matz@netlab.co.jp>
* eval.c (mcall): args == nil if no argument given.
diff --git a/cygwin/GNUmakefile.in b/cygwin/GNUmakefile.in
index fb30e09ea1..ca16e32e48 100644
--- a/cygwin/GNUmakefile.in
+++ b/cygwin/GNUmakefile.in
@@ -6,4 +6,3 @@ miniruby$(EXEEXT): $(RUBYCWDLL)
$(RUBYCWDLL): $(OBJS) dmyext.o
$(LDSHARED) $(DLDFLAGS) -o $(RUBYCWDLL) --output-lib=$(LIBRUBY_SO) --dllname=$(RUBYCWDLL) -Wl,-e,__cygwin_noncygwin_dll_entry@12 --add-stdcall-alias $(OBJS) dmyext.o
- nm --extern-only $(OBJS) dmyext.o | sed -n '/^........ [CD] _\(.*\)$$/s//#define \1 (*__imp_\1)/p' >import.h
diff --git a/ext/tcltklib/tcltklib.c b/ext/tcltklib/tcltklib.c
index 314246869e..0760b36b3f 100644
--- a/ext/tcltklib/tcltklib.c
+++ b/ext/tcltklib/tcltklib.c
@@ -489,8 +489,6 @@ _macinit()
void
Init_tcltklib()
{
- extern VALUE rb_argv0; /* the argv[0] */
-
VALUE lib = rb_define_module("TclTkLib");
VALUE ip = rb_define_class("TclTkIp", rb_cObject);
diff --git a/instruby.rb b/instruby.rb
index 444b7e6465..483d139fef 100644
--- a/instruby.rb
+++ b/instruby.rb
@@ -57,10 +57,6 @@ File.makedirs archlibdir, true
File.makedirs sitelibdir, true
File.makedirs sitearchlibdir, true
-if RUBY_PLATFORM =~ /cygwin/ and File.exist? "import.h"
- File.install "import.h", archlibdir, 0644, true
-end
-
if RUBY_PLATFORM =~ /-aix/
File.install "ruby.imp", archlibdir, 0644, true
end