mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
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.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user