summaryrefslogtreecommitdiff
path: root/devel/poco/patches/patch-Foundation_Makefile
blob: a30b2565f824bf63b2258fe1d2b256f9248af2ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-Foundation_Makefile,v 1.1 2016/01/16 12:15:12 ryoon Exp $

Fix build with unbundled PCRE.
https://github.com/buildroot/buildroot/blob/master/package/poco/0004-fix-unbundled-pcre-usage.patch

--- Foundation/Makefile.orig	2015-08-04 05:20:56.000000000 +0000
+++ Foundation/Makefile
@@ -46,6 +46,7 @@ pcre_utf8_objects = pcre_ucd pcre_tables
 
 ifdef POCO_UNBUNDLED
 	SYSLIBS += -lpcre -lz
+	objects += $(pcre_utf8_objects)
 else
 	objects += $(zlib_objects) $(pcre_objects) $(pcre_utf8_objects)
 endif