summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2024-07-15 22:09:30 +0900
committernagachika <nagachika@ruby-lang.org>2024-07-15 22:09:30 +0900
commitdb5201ffd531d07747de03c55c4cb1c0e9e5c5bf (patch)
tree3c325f550262d31d1dd9a51582cb18f77c38e458
parent96a82418b2efe98a92f239a9a1cbf30dd396d335 (diff)
Revert "merge revision(s) 5fa6ba9568e87e43e08a4daeba1572254c589fb1: [Backport #20500]"
This reverts commit fc5b9ffad1b0710bd999521d0bf9631af6b762c2.
-rw-r--r--configure.ac4
-rw-r--r--enc/Makefile.in2
-rw-r--r--version.h2
3 files changed, 2 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 747c25932e..2eada551bd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1367,8 +1367,6 @@ AC_ARG_WITH([jemalloc],
[with_jemalloc=$withval], [with_jemalloc=no])
AS_IF([test "x$with_jemalloc" != xno],[
# find jemalloc header first
- save_CPPFLAGS="${CPPFLAGS}"
- CPPFLAGS="${INCFLAGS} ${CPPFLAGS}"
malloc_header=
AC_CHECK_HEADER(jemalloc/jemalloc.h, [malloc_header=jemalloc/jemalloc.h], [
AC_CHECK_HEADER(jemalloc.h, [malloc_header=jemalloc.h])
@@ -1400,8 +1398,6 @@ AS_IF([test "x$with_jemalloc" != xno],[
done
done
])
- CPPFLAGS="${save_CPPFLAGS}"
- unset save_CPPFLAGS
with_jemalloc=${rb_cv_jemalloc_library}
AS_CASE(["$with_jemalloc"],
[no],
diff --git a/enc/Makefile.in b/enc/Makefile.in
index 9d0c367134..dd8ca1b528 100644
--- a/enc/Makefile.in
+++ b/enc/Makefile.in
@@ -51,7 +51,7 @@ optflags = @optflags@
debugflags = @debugflags@
warnflags = @warnflags@
CCDLFLAGS = @CCDLFLAGS@
-INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir) -I$(top_srcdir) @incflags@
+INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir) -I$(top_srcdir)
DEFS = @DEFS@
CPPFLAGS = @CPPFLAGS@ -DONIG_ENC_REGISTER=rb_enc_register
LDFLAGS = @LDFLAGS@
diff --git a/version.h b/version.h
index ca15d33238..8938356fcf 100644
--- a/version.h
+++ b/version.h
@@ -11,7 +11,7 @@
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
#define RUBY_VERSION_TEENY 4
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
-#define RUBY_PATCHLEVEL 199
+#define RUBY_PATCHLEVEL 200
#include "ruby/version.h"
#include "ruby/internal/abi.h"