summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ext/extmk.rb.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e8911e6c4..2f1dfbfeda 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Apr 9 16:14:24 2003 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * ext/extmk.rb.in (create_makefile): link @LIBS@.
+
Wed Mar 26 20:26:17 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* dln.c (dln_find_1): break if path list end, even for too long
diff --git a/ext/extmk.rb.in b/ext/extmk.rb.in
index 2ffc01bb21..a626a2eef3 100644
--- a/ext/extmk.rb.in
+++ b/ext/extmk.rb.in
@@ -382,7 +382,7 @@ def create_makefile(target)
# end
if $configure_args['--enable-shared'] or "@LIBRUBY@" != "@LIBRUBY_A@"
- $libs = "@LIBRUBYARG@ " + $libs
+ $libs = "@LIBRUBYARG@ " + $libs + " @LIBS@"
$LIBPATH.unshift $topdir
end