summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-30 03:36:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-30 03:36:17 +0000
commit7cfd27c0e10dbf9dd45290f65040d3908bccf19e (patch)
treee8b37b290e3e8002447e7cd7e17f329d7ece1e91
parenta0d6167d15bdac8fb1e9b68bb782c116d859646d (diff)
* configure.in (MINIOBJS): use dmydln.o on all platforms.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@27103 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--configure.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 9b5fec3e47..80c982c9d9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,6 @@
-Tue Mar 30 10:33:05 2010 Nobuyoshi Nakada <[email protected]>
+Tue Mar 30 12:36:11 2010 Nobuyoshi Nakada <[email protected]>
+
+ * configure.in (MINIOBJS): use dmydln.o on all platforms.
* common.mk (COMMONOBJS): moved dln.o to OBJS not to conflict with
dmydln.o.
diff --git a/configure.in b/configure.in
index a47db72355..d747ff9e4e 100644
--- a/configure.in
+++ b/configure.in
@@ -1655,7 +1655,6 @@ case "$target_os" in
;;
darwin*)
CFLAGS="$CFLAGS -pipe -fno-common"
- MINIOBJS=dmydln.o
;;
os2-emx)
CFLAGS="$CFLAGS -DOS2"
@@ -1716,7 +1715,6 @@ case "$target_os" in
LIBRUBY='lib$(RUBY_SO_NAME).a'
LIBRUBYARG='-l$(RUBY_SO_NAME)'
fi
- MINIOBJS=dmydln.o
;;
hpux*)
case "$YACC" in
@@ -1725,11 +1723,11 @@ case "$target_os" in
YACC="$YACC -Nl40000 -Nm40000"
;;
esac
- MINIOBJS=dmydln.o
;;
*)
;;
esac
+MINIOBJS=dmydln.o
case "$build_os" in
*msdosdjgpp*) FIRSTMAKEFILE=GNUmakefile:djgpp/GNUmakefile.in;;