Skip to content

Commit a082e2b

Browse files
author
Charlie Somerville
committed
roll back to v2_4_2 tag rather than tip of ruby_2_4 branch
1 parent 91298c2 commit a082e2b

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

configure.in

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1403,15 +1403,13 @@ AC_ARG_WITH([gmp],
14031403
AS_IF([test "x$with_gmp" != xno],
14041404
[AC_CHECK_HEADERS(gmp.h)
14051405
AS_IF([test "x$ac_cv_header_gmp_h" != xno],
1406-
AC_SEARCH_LIBS([__gmpz_init], [gmp],
1407-
[AC_DEFINE(HAVE_LIBGMP, 1)]))])
1406+
AC_SEARCH_LIBS([__gmpz_init], [gmp]))])
14081407

14091408
AC_ARG_WITH([jemalloc],
14101409
[AS_HELP_STRING([--with-jemalloc],[use jemalloc allocator])],
14111410
[with_jemalloc=$withval], [with_jemalloc=no])
14121411
AS_IF([test "x$with_jemalloc" = xyes],[
1413-
AC_SEARCH_LIBS([malloc_conf], [jemalloc],
1414-
[AC_DEFINE(HAVE_LIBJEMALLOC, 1)], [with_jemalloc=no])
1412+
AC_SEARCH_LIBS([malloc_conf], [jemalloc], [], [with_jemalloc=no])
14151413
AC_CHECK_HEADER(jemalloc/jemalloc.h, [
14161414
AC_DEFINE(RUBY_ALTERNATIVE_MALLOC_HEADER, [<jemalloc/jemalloc.h>])
14171415
])

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#define RUBY_VERSION "2.4.3"
2-
#define RUBY_RELEASE_DATE "2017-09-15"
3-
#define RUBY_PATCHLEVEL 200
1+
#define RUBY_VERSION "2.4.2"
2+
#define RUBY_RELEASE_DATE "2017-09-14"
3+
#define RUBY_PATCHLEVEL 198
44

55
#define RUBY_RELEASE_YEAR 2017
66
#define RUBY_RELEASE_MONTH 9
7-
#define RUBY_RELEASE_DAY 15
7+
#define RUBY_RELEASE_DAY 14
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)