16 lines
515 B
Plaintext
16 lines
515 B
Plaintext
$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
|