[前][次][番号順一覧][スレッド一覧]

ruby-changes:55033

From: nagachika <ko1@a...>
Date: Wed, 13 Mar 2019 09:06:26 +0900 (JST)
Subject: [ruby-changes:55033] nagachika:r67240 (ruby_2_5): merge revision(s) 66779: [Backport #15520]

nagachika	2019-03-13 09:06:19 +0900 (Wed, 13 Mar 2019)

  New Revision: 67240

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67240

  Log:
    merge revision(s) 66779: [Backport #15520]
    
    configure: refuse to build with jemalloc when header is missing
    
    [ruby-core:90964] [Bug #15520]
    
    Freom: Misty De Meo <mistydemeo@g...>

  Modified directories:
    branches/ruby_2_5/
  Modified files:
    branches/ruby_2_5/configure.ac
    branches/ruby_2_5/version.h
Index: ruby_2_5/version.h
===================================================================
--- ruby_2_5/version.h	(revision 67239)
+++ ruby_2_5/version.h	(revision 67240)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_5/version.h#L1
 #define RUBY_VERSION "2.5.4"
 #define RUBY_RELEASE_DATE "2019-03-13"
-#define RUBY_PATCHLEVEL 152
+#define RUBY_PATCHLEVEL 153
 
 #define RUBY_RELEASE_YEAR 2019
 #define RUBY_RELEASE_MONTH 3
Index: ruby_2_5/configure.ac
===================================================================
--- ruby_2_5/configure.ac	(revision 67239)
+++ ruby_2_5/configure.ac	(revision 67240)
@@ -1319,7 +1319,8 @@ AS_IF([test "x$with_jemalloc" = xyes],[ https://github.com/ruby/ruby/blob/trunk/ruby_2_5/configure.ac#L1319
     [AC_DEFINE(HAVE_LIBJEMALLOC, 1)], [with_jemalloc=no])
   AC_CHECK_HEADER(jemalloc/jemalloc.h, [
     AC_DEFINE(RUBY_ALTERNATIVE_MALLOC_HEADER, [<jemalloc/jemalloc.h>])
-  ])
+  ],
+  [test x$with_jemalloc = xyes && with_jemalloc=no])
   AS_IF([test "x$with_jemalloc" = xno], [
     AC_CACHE_CHECK([for jemalloc with JEMALLOC_MANGLE], rb_cv_jemalloc_demangle,
       [AC_LINK_IFELSE([AC_LANG_PROGRAM([@%:@define JEMALLOC_MANGLE 1
Index: ruby_2_5
===================================================================
--- ruby_2_5	(revision 67239)
+++ ruby_2_5	(revision 67240)

Property changes on: ruby_2_5
___________________________________________________________________
Modified: svn:mergeinfo
## -0,0 +0,1 ##
   Merged /trunk:r66779

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]