* configure.in: a patch to build on GNU/kOpenSolaris from Robert

Millan at [ruby-core:21888].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-02-12 07:50:28 +00:00
Родитель 04e2a72f1e
Коммит 9565e98b6e
2 изменённых файлов: 9 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu Feb 12 16:50:27 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in: a patch to build on GNU/kOpenSolaris from Rober
Millan at [ruby-core:21888].
Thu Feb 12 15:28:04 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* iseq.c (simple_default_value): allow plain strings as default

Просмотреть файл

@ -1398,7 +1398,7 @@ if test "$rb_cv_binary_elf" = yes; then
fi
case "$target_os" in
when(linux* | gnu* | k*bsd*-gnu | bsdi*)
when(linux* | gnu* | k*bsd*-gnu | bsdi* | kopensolaris*-gnu)
if test "$rb_cv_binary_elf" = no; then
with_dln_a_out=yes
else
@ -1491,7 +1491,7 @@ if test "$with_dln_a_out" != yes; then
when(*shlicc*) : ${LDSHARED="$CC -r"}
rb_cv_dlopen=yes ;;
esac ;;
when(linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi*)
when(linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu)
: ${LDSHARED='${CC} -shared'}
if test "$rb_cv_binary_elf" = yes; then
LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
@ -1684,7 +1684,7 @@ else
fi
case "$target_os" in
when(linux* | gnu* | k*bsd*-gnu)
when(linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu)
STRIP='strip -S -x';;
when(nextstep* | openstep* | rhapsody* | darwin*)
STRIP='strip -A -n';;
@ -1777,7 +1777,7 @@ if test "$enable_shared" = 'yes'; then
when(sunos4*)
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) lib$(RUBY_SO_NAME).so'
;;
when(linux* | gnu* | k*bsd*-gnu | atheos*)
when(linux* | gnu* | k*bsd*-gnu | atheos* | kopensolaris*-gnu)
LIBRUBY_DLDFLAGS='-Wl,-soname,lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR)'
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) lib$(RUBY_SO_NAME).so'
;;