mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in (LDSHARED): Fixed typographical error in assignment of
LDSHARED for Rhapsody which caused linking of extension modules to fail. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5280 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e9e100aa48
commit
42da260543
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Dec 24 20:37:37 2003 Eric Sunshine <sunshine@sunshineco.com>
|
||||
|
||||
* configure.in (LDSHARED): Fixed typographical error in assignment of
|
||||
LDSHARED for Rhapsody which caused linking of extension modules to
|
||||
fail.
|
||||
|
||||
Wed Dec 24 16:46:08 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* eval.c (catch_timer): do not call rb_thread_schedule() inside to
|
||||
|
|
|
@ -897,7 +897,7 @@ if test "$with_dln_a_out" != yes; then
|
|||
openstep*) : ${LDSHARED='cc -dynamic -bundle -undefined suppress'}
|
||||
: ${LDFLAGS=""}
|
||||
rb_cv_dlopen=yes ;;
|
||||
rhapsody*) : $LDSHARED='cc -dynamic -bundle -undefined suppress'}
|
||||
rhapsody*) : ${LDSHARED='cc -dynamic -bundle -undefined suppress'}
|
||||
: ${LDFLAGS=""}
|
||||
rb_cv_dlopen=yes ;;
|
||||
darwin*) : ${LDSHARED='cc -dynamic -bundle -undefined suppress -flat_namespace'}
|
||||
|
|
Loading…
Reference in a new issue