Bump SHARED_LIBS (checked with abi-compliance-checker) Fix LIB_DEPENDS and WANTLIB Merge pkg/PFRAG.shared into pkg/PLIST OK benoit@ (maintainer)
13 lines
493 B
Plaintext
13 lines
493 B
Plaintext
$OpenBSD: patch-obt_xml_c,v 1.2 2013/10/08 11:18:57 dcoppa Exp $
|
|
--- obt/xml.c.orig Mon Aug 12 03:33:24 2013
|
|
+++ obt/xml.c Mon Oct 7 18:29:46 2013
|
|
@@ -146,6 +146,8 @@ static gboolean load_file(ObtXmlInst *i,
|
|
|
|
if (!domain && !filename) /* given a full path to the file */
|
|
path = g_strdup(it->data);
|
|
+ else if (stat(filename, &s) == 0)
|
|
+ path = g_strdup(filename);
|
|
else
|
|
path = g_build_filename(it->data, domain, filename, NULL);
|
|
|