openbsd-ports/net/poco/patches/patch-build_rules_global
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

24 lines
573 B
Plaintext

$OpenBSD: patch-build_rules_global,v 1.1.1.1 2010/07/28 18:13:01 sebastia Exp $
we do not want to build the debug libraries
--- build/rules/global.orig Mon Jul 19 19:35:21 2010
+++ build/rules/global Mon Jul 19 19:37:42 2010
@@ -189,13 +189,13 @@ LINKMODE = BOTH
endif
ifeq ($(LINKMODE),SHARED)
-DEFAULT_TARGET = all_shared
+DEFAULT_TARGET = shared_release
endif
ifeq ($(LINKMODE),STATIC)
-DEFAULT_TARGET = all_static
+DEFAULT_TARGET = static_release
endif
ifeq ($(LINKMODE),BOTH)
-DEFAULT_TARGET = all_static all_shared
+DEFAULT_TARGET = all_release
endif
#