mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in: use proper option for Sun linker. A patch from
Shinya Kuwamura <kuwa@labs.fujitsu.com>. [ruby-dev:27603] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8917210760
commit
0107f4506b
2 changed files with 10 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Mon Oct 31 17:34:46 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* configure.in: use proper option for Sun linker. A patch from
|
||||
Shinya Kuwamura <kuwa@labs.fujitsu.com>. [ruby-dev:27603]
|
||||
|
||||
Mon Oct 31 11:27:22 2005 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* test/gdbm/test_gdbm.rb, test/sdbm/test_sdbm.rb (test_s_open_error):
|
||||
|
|
|
|||
|
|
@ -981,7 +981,11 @@ if test "$with_dln_a_out" != yes; then
|
|||
[enable_rpath=$enableval], [enable_rpath="$rb_cv_binary_elf"])
|
||||
if test "$enable_rpath" = yes; then
|
||||
LIBPATHFLAG=" -L'%1\$-s'"
|
||||
RPATHFLAG=" -Wl,-R'%1\$-s'"
|
||||
if test "$GCC" = yes; then
|
||||
RPATHFLAG=" -Wl,-R'%1\$-s'"
|
||||
else
|
||||
RPATHFLAG=" -R'%1\$-s'"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
AC_SUBST(LINK_SO)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue