diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-19 08:43:04 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-19 08:43:04 +0000 |
| commit | 3ac1480a27be3153e839548948c7181e5d26e931 (patch) | |
| tree | f7836720514f475012ea59d37f681372d1ba7661 | |
| parent | 232547b3bf17527c6463e12286f16454a77d546b (diff) | |
| download | ruby-3ac1480a27be3153e839548948c7181e5d26e931.tar.gz ruby-3ac1480a27be3153e839548948c7181e5d26e931.tar.xz ruby-3ac1480a27be3153e839548948c7181e5d26e931.zip | |
* configure.in: applied OS/2 support patch from Brendan Oakley
<gentux2@gmail.com> in [ruby-core:18707].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Fri Sep 19 17:41:56 2008 Yukihiro Matsumoto <matz@ruby-lang.org> + + * configure.in: applied OS/2 support patch from Brendan Oakley + <gentux2@gmail.com> in [ruby-core:18707]. + Fri Sep 19 09:29:26 2008 Yukihiro Matsumoto <matz@ruby-lang.org> * dln.c: newer BeOS support. a patch from Pete Goodeve diff --git a/configure.in b/configure.in index 83fad09a4..6783b8299 100644 --- a/configure.in +++ b/configure.in @@ -1457,7 +1457,7 @@ if test "$with_dln_a_out" != yes; then hiuxmpp) : ${LDSHARED='ld -r'} ;; atheos*) : ${LDSHARED="$CC -shared"} rb_cv_dlopen=yes ;; - os2-emx*) LDFLAGS="$LDFLAGS -Zbsd-signals" + os2-emx*) LDFLAGS="$LDFLAGS -Zomf" ;; *) : ${LDSHARED='ld'} ;; esac @@ -1801,7 +1801,7 @@ case "$target_os" in MINIDLNOBJ=dmydln.o ;; os2-emx) - CFLAGS="$CFLAGS -DOS2 -Zmts" + CFLAGS="$CFLAGS -DOS2" LIBRUBY_A=`echo $LIBRUBY_A | sed 's/^lib//'` LIBRUBY_SO=`echo $LIBRUBY_SO | sed 's/^lib//'` LIBRUBY_ALIASES=`for i in $LIBRUBY_ALIASES; do echo "$i"; done | sed 's/^lib//'` |
