1ccfb03ab8
Fix DoS vulnerability in rexml. (CVE-2024-39908) (CVE-2024-41946) (CVE-2024-43398) Fix REXML DoS when parsing an XML having many specific characters such as whitespace character, >] and ]>. (CVE-2024-41123) Upgrade by merging Fedora changes up to commit:b7e197fb88
Exclude: - Generate RPM dependencies with RPM 4.20 API6bed1e3bd5
We don't have new enough RPM. Resolves: RHEL-55409 Resolves: RHEL-57049 Resolves: RHEL-52783 Resolves: RHEL-57054 Resolves: RHEL-57069
26 lines
775 B
Diff
26 lines
775 B
Diff
From 07c666ba5c3360dd6f43605a8ac7c85c99c1721f Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
|
|
Date: Tue, 1 Oct 2013 12:22:40 +0200
|
|
Subject: [PATCH] Allow to configure libruby.so placement.
|
|
|
|
---
|
|
configure.ac | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index d261ea57b5..3c13076b82 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -3482,6 +3482,11 @@ AS_IF([test ${multiarch+set}], [
|
|
])
|
|
|
|
archlibdir='${libdir}/${arch}'
|
|
+AC_ARG_WITH(archlibdir,
|
|
+ AS_HELP_STRING([--with-archlibdir=DIR],
|
|
+ [prefix for libruby [[LIBDIR/ARCH]]]),
|
|
+ [archlibdir="$withval"])
|
|
+
|
|
sitearchlibdir='${libdir}/${sitearch}'
|
|
archincludedir='${includedir}/${arch}'
|
|
sitearchincludedir='${includedir}/${sitearch}'
|