Add lin-config tool to facilitate polling
[AGL/meta-agl-demo.git] / recipes-support / lin-config / files / 0001-Change-Makefile-to-use-pkg-config-for-libxml-2.0.patch
1 From 59acd73ba3bd6cc4151b890d135c6d690a83374d Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Jan-Simon=20M=C3=B6ller?= <jsmoeller@linuxfoundation.org>
3 Date: Tue, 1 Oct 2019 15:24:07 +0000
4 Subject: [PATCH] Change Makefile to use pkg-config for libxml-2.0
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 instead of xml2-config.
10
11 Upstream-Status: Pending
12
13 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
14 ---
15  lin_config/src/Makefile | 5 ++---
16  1 file changed, 2 insertions(+), 3 deletions(-)
17
18 diff --git a/Makefile b/Makefile
19 index cf5c515..3fc4df1 100644
20 --- a/Makefile
21 +++ b/Makefile
22 @@ -1,6 +1,5 @@
23 -CC=gcc
24 -CFLAGS=-std=gnu99 -Wall -pedantic $(DEBUG) `xml2-config --cflags` `pkg-config --cflags libnl-route-3.0` -I$(INCLUDE)
25 -LIBS=`xml2-config --libs` `pkg-config --libs libnl-route-3.0`
26 +CFLAGS=-std=gnu99 -Wall -pedantic $(DEBUG) `pkg-config --cflags libxml-2.0` `pkg-config --cflags libnl-route-3.0` -I$(INCLUDE)
27 +LIBS=`pkg-config --libs libxml-2.0` `pkg-config --libs libnl-route-3.0`
28  INCLUDE=../../sllin
29  DEBUG=-ggdb
30  
31 -- 
32 2.16.4
33