mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-17 23:36:50 +00:00
* Add --without-rlm_json to fix: configure: error: set --without-rlm_json to disable it explicitly * Add --without-rlm_cache_redis to fix: configure: error: set --without-rlm_cache_redis to disable it explicitly. * Drop 0017-add-python.m4-for-detecting-python-3.10.patch and add 0017-Add-acinclude.m4-to-include-required-macros.patch to fix python3 related build errors * Rebased other patches for 3.2.3. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From e4ff7a2a9834e2589bc7bdda4b74f5bc962b15e6 Mon Sep 17 00:00:00 2001
|
|
From: Jackie Huang <jackie.huang@windriver.com>
|
|
Date: Wed, 27 Jan 2016 05:07:19 -0500
|
|
Subject: [PATCH] rlm_python: add PY_INC_DIR in search dir
|
|
|
|
configure option --with-rlm-python-include-dir is used to set
|
|
PY_INC_DIR which is never used and it fails to find Python.h,
|
|
so add it into search dir to fix it.
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
|
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
|
|
---
|
|
src/modules/rlm_python/configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/modules/rlm_python/configure.ac b/src/modules/rlm_python/configure.ac
|
|
index c79c327064..5f4d274990 100644
|
|
--- a/src/modules/rlm_python/configure.ac
|
|
+++ b/src/modules/rlm_python/configure.ac
|
|
@@ -103,7 +103,7 @@ FR_MODULE_TEST_PASS_DO([
|
|
|
|
old_CFLAGS=$CFLAGS
|
|
CFLAGS="$CFLAGS $PY_CFLAGS"
|
|
- smart_try_dir="$PY_PREFIX/include/python$PY_SYS_VERSION"
|
|
+ smart_try_dir="$PY_PREFIX/include/python$PY_SYS_VERSION $PY_INC_DIR"
|
|
FR_SMART_CHECK_INCLUDE(Python.h)
|
|
CFLAGS=$old_CFLAGS
|
|
|