Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From f0e764826e3a85488047f7f4e94ebf91460d2c12 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Fri, 16 Jun 2017 20:10:49 -0700
|
|
Subject: [PATCH] rlm_mschap: Use includedir instead of hardcoding /usr/include
|
|
|
|
OE QA flags it correctly as a voilation of cross compilation
|
|
namespace
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
src/modules/rlm_mschap/configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/modules/rlm_mschap/configure.ac b/src/modules/rlm_mschap/configure.ac
|
|
index 953336f475..77a18af55d 100644
|
|
--- a/src/modules/rlm_mschap/configure.ac
|
|
+++ b/src/modules/rlm_mschap/configure.ac
|
|
@@ -77,7 +77,7 @@ else
|
|
FR_MODULE_FEATURE([opendirectory], [without opendirectory support])
|
|
fi
|
|
|
|
-smart_try_dir="$winbind_include_dir /usr/include/samba-4.0"
|
|
+smart_try_dir="$winbind_include_dir =/usr/include/samba-4.0"
|
|
FR_SMART_CHECK_INCLUDE(wbclient.h, [#include <stdint.h>
|
|
#include <stdbool.h>])
|
|
if test "x$ac_cv_header_wbclient_h" != "xyes"; then
|