aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-config_os_headers-Error-Fix.patch
blob: bfc55a08ac64b82ae0d3fedde579ec12872e461c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
From 7ae2ce8dbf1c54d4e2db4a5f49397a239baadc49 Mon Sep 17 00:00:00 2001
From: Li xin <lixin.fnst@cn.fujitsu.com>
Date: Fri, 21 Aug 2015 18:23:13 +0900
Subject: [PATCH] config_os_headers: Error Fix

ERROR: This autoconf log indicates errors, it looked at host include
and/or library paths while determining system capabilities.
cc1: warning: include location "/usr/local/include" is unsafe for cross-compilation [-Wpoison-system-directories]
conftest.c:168:17: fatal error: pkg.h: No such file or directory
 #include <pkg.h>
                 ^

Upstream-Status: pending

Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>

---
 configure.d/config_os_headers | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.d/config_os_headers b/configure.d/config_os_headers
index af99746..83b2e31 100644
--- a/configure.d/config_os_headers
+++ b/configure.d/config_os_headers
@@ -489,8 +489,8 @@ then
     unset ac_cv_header_pkg_h
     netsnmp_save_CPPFLAGS="$CPPFLAGS"
     netsnmp_save_LDFLAGS="$LDFLAGS"
-    CPPFLAGS="$CPPFLAGS -I/usr/local/include"
-    LDFLAGS="$LDFLAGS -L/usr/local/lib"
+    CPPFLAGS="$CPPFLAGS"
+    LDFLAGS="$LDFLAGS"
     AC_CHECK_HEADERS(pkg.h,
         NETSNMP_SEARCH_LIBS(pkg_init, pkg,
 	    AC_DEFINE(HAVE_LIBPKG, 1, [define if you have BSD pkg-ng])))