mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in: Interix(SFU) support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5528 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
27e4c2fc27
commit
72592e35ae
2 changed files with 8 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Jan 21 23:52:39 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* configure.in: Interix(SFU) support.
|
||||
|
||||
Wed Jan 21 23:03:45 2004 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
|
||||
|
||||
* lib/drb/drb.rb: remove O_NONBLOCK, thanks \ay
|
||||
|
|
11
configure.in
11
configure.in
|
@ -811,13 +811,7 @@ if test "$with_dln_a_out" != yes; then
|
|||
openstep*) CCDLFLAGS="$CCDLFLAGS -fno-common";;
|
||||
rhapsody*) CCDLFLAGS="$CCDLFLAGS -fno-common";;
|
||||
darwin*) CCDLFLAGS="$CCDLFLAGS -fno-common";;
|
||||
human*) ;;
|
||||
bsdi*) ;;
|
||||
beos*) ;;
|
||||
cygwin*) ;;
|
||||
mingw*) ;;
|
||||
aix*) ;;
|
||||
netbsd*) CCDLFLAGS="$CCDLFLAGS -fPIC";;
|
||||
human*|bsdi*|beos*|cygwin*|mingw*|aix*|interix*) ;;
|
||||
*) CCDLFLAGS="$CCDLFLAGS -fPIC";;
|
||||
esac
|
||||
else
|
||||
|
@ -859,6 +853,9 @@ if test "$with_dln_a_out" != yes; then
|
|||
rb_cv_dlopen=yes ;;
|
||||
linux*) : ${LDSHARED="$CC -shared"}
|
||||
rb_cv_dlopen=yes ;;
|
||||
interix*) : ${LDSHARED="$CC -shared"}
|
||||
XLDFLAGS="$XLDFLAGS -Wl,-E"
|
||||
rb_cv_dlopen=yes ;;
|
||||
gnu*) : ${LDSHARED="$CC -shared"}
|
||||
rb_cv_dlopen=yes
|
||||
LDFLAGS="$LDFLAGS -rdynamic" ;;
|
||||
|
|
Loading…
Reference in a new issue