diff options
author | brooks <brooks@FreeBSD.org> | 2018-03-03 06:34:53 +0800 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2018-03-03 06:34:53 +0800 |
commit | 2770369de4372bb3b959b5e3eed35f5457e3f815 (patch) | |
tree | 74598255802a1be780cec8e6fed3805dd3777ae6 /ftp | |
parent | 7c39fc5b64d6f513d4378960f349476dbd662ed6 (diff) | |
download | freebsd-ports-gnome-2770369de4372bb3b959b5e3eed35f5457e3f815.tar.gz freebsd-ports-gnome-2770369de4372bb3b959b5e3eed35f5457e3f815.tar.zst freebsd-ports-gnome-2770369de4372bb3b959b5e3eed35f5457e3f815.zip |
Work around the lack of definition of union semun per POSIX.
When feasible do this by adding -D_WANT_SEMUN to CFLAGS or CXXFLAGS.
Where this fails due to ports not honoring C*FLAGS, patch using
__FreeBSD_version to enable the definition.
PR: 224300, 224443 (exp-run)
Approved by: portmgr (antoine)
Exp-run: antoine
Sponsored by: DARPA, AFRL
Differential Revision: https://reviews.freebsd.org/D14137
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/gftp/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ftp/gftp/Makefile b/ftp/gftp/Makefile index 551722073df5..c1d7ab95e8c7 100644 --- a/ftp/gftp/Makefile +++ b/ftp/gftp/Makefile @@ -15,6 +15,7 @@ LICENSE= GPLv2 USES= pathfix pkgconfig tar:bzip2 ssl GNU_CONFIGURE= yes USE_GNOME= glib20 gtk20 +CFLAGS+= -D_WANT_SEMUN OPTIONS_DEFINE= NLS OPTIONS_SUB= yes |