File tree Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change
1
+ Tue Jun 17 22:14:41 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
+
3
+ * configure.in (LIBPATHFLAG, RPATHFLAG): no needs to be quoted,
4
+ it is done by libpathflag in mkmf.rb.
5
+
1
6
Mon Jun 16 19:18:35 2008 NAKAMURA Usaku <usa@ruby-lang.org>
2
7
3
8
* lib/mkmf.rb: fixed the bug of handling COMMON_MACROS.
Original file line number Diff line number Diff line change @@ -936,7 +936,7 @@ AC_SUBST(DLEXT2)dnl
936
936
AC_SUBST(LIBEXT)dnl
937
937
938
938
STATIC=
939
- : ${LIBPATHFLAG=' -L"%s" '}
939
+ : ${LIBPATHFLAG=' -L%s '}
940
940
: ${PATHFLAG=''}
941
941
942
942
if test "$with_dln_a_out" != yes; then
@@ -1000,7 +1000,7 @@ if test "$with_dln_a_out" != yes; then
1000
1000
rb_cv_dlopen=yes ;;
1001
1001
interix*) : ${LDSHARED="$CC -shared"}
1002
1002
XLDFLAGS="$XLDFLAGS -Wl,-E"
1003
- LIBPATHFLAG=" -L' %1\$-s' "
1003
+ LIBPATHFLAG=" -L%1\$-s"
1004
1004
rb_cv_dlopen=yes ;;
1005
1005
freebsd*|dragonfly*) : ${LDSHARED="$CC -shared"}
1006
1006
if test "$rb_cv_binary_elf" = yes; then
@@ -1081,11 +1081,11 @@ if test "$with_dln_a_out" != yes; then
1081
1081
[ --disable-rpath embed run path into extension libraries.],
1082
1082
[enable_rpath=$enableval], [enable_rpath="$rb_cv_binary_elf"])
1083
1083
if test "$enable_rpath" = yes; then
1084
- LIBPATHFLAG=" -L' %1\$-s' "
1084
+ LIBPATHFLAG=" -L%1\$-s"
1085
1085
if test "$GCC" = yes; then
1086
- RPATHFLAG=" -Wl,-R' %1\$-s' "
1086
+ RPATHFLAG=" -Wl,-R%1\$-s"
1087
1087
else
1088
- RPATHFLAG=" -R' %1\$-s' "
1088
+ RPATHFLAG=" -R%1\$-s"
1089
1089
fi
1090
1090
fi
1091
1091
fi
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "1.8.5"
2
- #define RUBY_RELEASE_DATE "2008-06-16 "
2
+ #define RUBY_RELEASE_DATE "2008-06-17 "
3
3
#define RUBY_VERSION_CODE 185
4
- #define RUBY_RELEASE_CODE 20080616
5
- #define RUBY_PATCHLEVEL 223
4
+ #define RUBY_RELEASE_CODE 20080617
5
+ #define RUBY_PATCHLEVEL 224
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
9
9
#define RUBY_VERSION_TEENY 5
10
10
#define RUBY_RELEASE_YEAR 2008
11
11
#define RUBY_RELEASE_MONTH 6
12
- #define RUBY_RELEASE_DAY 16
12
+ #define RUBY_RELEASE_DAY 17
13
13
14
14
#ifdef RUBY_EXTERN
15
15
RUBY_EXTERN const char ruby_version [];
You can’t perform that action at this time.
0 commit comments