summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-19 08:43:04 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-19 08:43:04 +0000
commit69b4c69a7298ac54427ff53f52e5526bc93131f8 (patch)
treef7836720514f475012ea59d37f681372d1ba7661
parentd7de44a8fcb6bdbcb3f6d9b97bb6164a8382dbbd (diff)
* configure.in: applied OS/2 support patch from Brendan Oakley
<gentux2@gmail.com> in [ruby-core:18707]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--configure.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 02793bde17..41c71b3d00 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 83fad09a4c..6783b82994 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//'`