diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-30 15:14:55 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-30 15:14:55 +0000 |
commit | 214f426c18757e94d456001809b5e3896165d520 (patch) | |
tree | dbba2c3c7e76be0c029761757eb13ca9d076ff1d /configure.in | |
parent | bf2a2ccc81e691748459ba7ded039cfc424b9294 (diff) |
* configure.in: should test isinf for Solaris with GCC compiler.
a patch from <ville.mattila at stonesoft.com>. [ruby-core:07791]
* configure.in: -shared patch from Andrew Morrow
<andrew.c.morrow at gmail.com>. [ruby-core:08100]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 0385010e1d..dbc9eb148d 100644 --- a/configure.in +++ b/configure.in @@ -912,10 +912,9 @@ if test "$with_dln_a_out" != yes; then : ${LIBPATHENV=SHLIB_PATH} rb_cv_dlopen=yes;; solaris*) if test "$GCC" = yes; then - : ${LDSHARED='$(CC) -Wl,-G'} + : ${LDSHARED='$(CC) -shared'} if test "$rb_cv_prog_gnu_ld" = yes; then LDFLAGS="$LDFLAGS -Wl,-E" - LDSHARED="$LDSHARED -shared" fi else : ${LDSHARED='ld -G'} |