diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-30 03:36:17 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-30 03:36:17 +0000 |
commit | 7cfd27c0e10dbf9dd45290f65040d3908bccf19e (patch) | |
tree | e8b37b290e3e8002447e7cd7e17f329d7ece1e91 | |
parent | a0d6167d15bdac8fb1e9b68bb782c116d859646d (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-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -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;; |