diff --git a/ChangeLog b/ChangeLog index 7cb8499c2b..9ddc51e93e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Wed Dec 24 20:37:37 2003 Eric Sunshine + + * 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 * eval.c (catch_timer): do not call rb_thread_schedule() inside to diff --git a/configure.in b/configure.in index 5f1f1fc5b7..bab27ad065 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'}