1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00

- Add workaround for build breakage when libX11 is old.

- Take maintainership.
This commit is contained in:
Hiroki Sato 2013-03-05 20:23:57 +00:00
parent cc78cb8bb5
commit af890865cb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=313478
2 changed files with 17 additions and 2 deletions

View File

@ -3,13 +3,12 @@
PORTNAME?= windowmaker
PORTVERSION= 0.95.4
PORTREVISION?= 0
CATEGORIES= x11-wm windowmaker
MASTER_SITES= http://windowmaker.org/pub/%SUBDIR%/
MASTER_SITE_SUBDIR= source/release
DISTNAME= WindowMaker-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
MAINTAINER= hrs@FreeBSD.org
COMMENT?= GNUstep-compliant NeXTstep window manager clone
LICENSE?= GPLv2

View File

@ -0,0 +1,16 @@
--- WINGs/WINGs/WINGsP.h.orig 2013-03-06 03:52:04.000000000 +0900
+++ WINGs/WINGs/WINGsP.h 2013-03-06 03:51:32.000000000 +0900
@@ -14,7 +14,13 @@
#include <assert.h>
+#ifdef _XLOCALE_H_ /* workaround for libX11<1.4 */
+#undef _XLOCALE_H_
+#include <stdlib.h>
+#define _XLOCALE_H_
+#else
#include <stdlib.h>
+#endif
#include <string.h>
#include <strings.h>
#include <stdio.h>