File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ Mon Mar 20 12:05:18 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
2
+
3
+ * configure.in: Solaris SunPro compiler -rapth patch from
4
+ <kuwa at labs.fujitsu.com>. [ruby-dev:28443]
5
+
1
6
Mon Mar 20 09:40:23 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
2
7
3
8
* configure.in: remove enable_rpath=no for Solaris.
Original file line number Diff line number Diff line change @@ -1276,7 +1276,11 @@ if test "$enable_shared" = 'yes'; then
1276
1276
esac
1277
1277
fi
1278
1278
if test "$enable_rpath" = yes; then
1279
- LIBRUBYARG_SHARED='-Wl,-R -Wl,$(libdir) -L$(libdir) -L. '"$LIBRUBYARG_SHARED"
1279
+ if test "$GCC" = yes; then
1280
+ LIBRUBYARG_SHARED='-Wl,-R -Wl,$(libdir) -L$(libdir) -L. '"$LIBRUBYARG_SHARED"
1281
+ else
1282
+ LIBRUBYARG_SHARED='-R $(libdir) -L$(libdir) -L. '"$LIBRUBYARG_SHARED"
1283
+ fi
1280
1284
fi
1281
1285
1282
1286
XLDFLAGS="$XLDFLAGS -L."
You can’t perform that action at this time.
0 commit comments