diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-24 11:54:12 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-24 11:54:12 +0000 |
| commit | d3c6d52f02960c9fe66f202adc490197c09904a7 (patch) | |
| tree | a1947012d8b5f2f9dc25c40c0d3c468b5cf3abd1 | |
| parent | d00b5fd390da24d355097efa8ae5328c0bc644cb (diff) | |
| download | ruby-d3c6d52f02960c9fe66f202adc490197c09904a7.tar.gz ruby-d3c6d52f02960c9fe66f202adc490197c09904a7.tar.xz ruby-d3c6d52f02960c9fe66f202adc490197c09904a7.zip | |
* configure.in (LDSHARED): Fixed typographical error in assignment of
LDSHARED for Rhapsody which caused linking of extension modules to
fail.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5280 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 7 insertions, 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 diff --git a/configure.in b/configure.in index 5f1f1fc5b..bab27ad06 100644 --- a/configure.in +++ b/configure.in @@ -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'} |
