openbsd-ports/net/poco/patches/patch-Foundation_Makefile
sebastia ca6ddd823f Import poco
POCO C++ libraries for network based applications

C++ class libraries for network-centric, portable applications, 
integrated perfectly with the C++ Standard Library. Includes 
network protocols (Sockets, HTTP, FTP, SMTP, POP3, etc.) and an 
XML parser.

With a lot of feedback from landry@ 
Finally OK from dcoppa@
2010-07-28 18:13:00 +00:00

16 lines
544 B
Plaintext

$OpenBSD: patch-Foundation_Makefile,v 1.1.1.1 2010/07/28 18:13:01 sebastia Exp $
we do not want to mix system pcre with bundled pcre
--- Foundation/Makefile.orig Fri Jan 15 13:13:34 2010
+++ Foundation/Makefile Tue Jul 27 08:18:50 2010
@@ -43,7 +43,7 @@ pcre_objects = pcre_chartables pcre_compile pcre_globa
pcre_utf8_objects = pcre_ucd pcre_tables
ifdef POCO_UNBUNDLED
- objects += $(pcre_utf8_objects)
+ #objects += $(pcre_utf8_objects)
SYSLIBS += -lpcre -lz
else
objects += $(zlib_objects) $(pcre_objects) $(pcre_utf8_objects)