diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-21 23:50:25 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-21 23:50:25 +0000 |
commit | d9316374d4b73788cec34b5ea5d5072198bddf59 (patch) | |
tree | f9b3e4427e16be5d39b2282e3db64112ad072f2c /configure.in | |
parent | fdad216c7a54568e340520a223c5d01d8e466e31 (diff) |
* configure.in (darwin): prohibit loading extension libraries to
miniruby.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@13140 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 6ced76363f..7d0db79b29 100644 --- a/configure.in +++ b/configure.in @@ -1384,7 +1384,7 @@ if test "$enable_shared" = 'yes'; then esac fi if test "$enable_rpath" = yes; then - LIBRUBYARG_SHARED="${linker_flag}-R ${linker_flag}\$(libdir) -L. -L\$(libdir) $LIBRUBYARG_SHARED" + LIBRUBYARG_SHARED="${linker_flag}-R ${linker_flag}\$(libdir) -L\$(libdir) $LIBRUBYARG_SHARED" fi LDFLAGS="-L. $LDFLAGS" @@ -1420,6 +1420,7 @@ case "$target_os" in ;; darwin*) CFLAGS="$CFLAGS -pipe -fno-common" + MINIOBJS=dmydln.o ;; os2-emx) CFLAGS="$CFLAGS -DOS2 -Zmts" @@ -1442,7 +1443,7 @@ case "$target_os" in rm -f /tmp/main.o CFLAGS="$CFLAGS -std" fi - ;; + ;; beos*) case "$target_cpu" in powerpc*) |