Blame view

buildroot/buildroot-2016.08.1/package/aircrack-ng/0001-Makefile-use-pkg-config-to-find-libpcre-it-s-more-cros.patch 1.13 KB
6b13f685e   김민수   BSP 최초 추가
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
36
37
38
  From 98149c7664e99cc8ce9c9b1abf2fa90d9cd68e0d Mon Sep 17 00:00:00 2001
  From: Gustavo Zacarias <gustavo@zacarias.com.ar>
  Date: Wed, 5 Nov 2014 09:38:12 -0300
  Subject: [PATCH] Makefile: use pkg-config to find libpcre, it's more
   cross-compile friendly
  
  Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  ---
  Status: Upstream http://trac.aircrack-ng.org/ticket/1526
  
  diff --git a/common.mak b/common.mak
  index 6e5694b..d875708 100644
  --- a/common.mak
  +++ b/common.mak
  @@ -39,7 +39,7 @@ PCRE            = true
   endif
   
   ifeq ($(PCRE), true)
  -COMMON_CFLAGS += $(shell pcre-config --cflags) -DHAVE_PCRE
  +COMMON_CFLAGS += $(shell $(PKG_CONFIG) --cflags libpcre) -DHAVE_PCRE
   endif
   
   ifeq ($(OSNAME), cygwin)
  diff --git a/src/Makefile b/src/Makefile
  index f9217f9..14350b6 100644
  --- a/src/Makefile
  +++ b/src/Makefile
  @@ -16,7 +16,7 @@ BINFILES        = aircrack-ng$(EXE) airdecap-ng$(EXE) packetforge-ng$(EXE) \
   
   LIBPCRE		=
   ifeq ($(PCRE), true)
  -	LIBPCRE	= $(shell pcre-config --libs)
  +	LIBPCRE = $(shell $(PKG_CONFIG) --libs libpcre)
   endif
   
   ifneq ($(OSNAME), cygwin) #There is yet no libpcap support for windows, so we skip the crawler
  -- 
  2.0.4