From 680fb208b9be9b145c062938e90bc6d96cbdf3c3 Mon Sep 17 00:00:00 2001 From: marino Date: Mon, 2 Feb 2015 19:05:11 +0000 Subject: [PATCH] sysutils/pmt: Rework patch handle POSIX issues on both fbsd and dfly A few years ago, _XSI_VISIBLE was defined to re-expose gettimeofday on FreeBSD. Recent changes to DragonFly's signal.h headers resulted in the failure of the building of pmt. By defining _XOPEN_SOURCE=500 instead, pmt on both platforms. --- sysutils/pmt/files/patch-config.mak | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sysutils/pmt/files/patch-config.mak b/sysutils/pmt/files/patch-config.mak index ebefc54091cb..ffd2d35b62d8 100644 --- a/sysutils/pmt/files/patch-config.mak +++ b/sysutils/pmt/files/patch-config.mak @@ -1,10 +1,10 @@ ---- ./config.mak.orig 2010-01-06 08:21:36.000000000 -0500 -+++ ./config.mak 2010-01-06 08:21:54.000000000 -0500 +--- config.mak.orig 2005-06-14 19:50:57 UTC ++++ config.mak @@ -1,6 +1,6 @@ VERSION = 0.2 MAKEFLAGS += --print-directory -PMT_CFLAGS = -std=c99 -Wall -Werror -pedantic \ -+PMT_CFLAGS = -std=c99 -Wall -Werror -pedantic -D__XSI_VISIBLE \ ++PMT_CFLAGS = -std=c99 -Wall -Werror -pedantic -D_XOPEN_SOURCE=500 \ -D_POSIX_SOURCE -DVERSION='$(VERSION)' \ -I. -Ilibowfat