svn commit: r313478 - in head/x11-wm/windowmaker: . files
Hiroki Sato
hrs at FreeBSD.org
Tue Mar 5 20:23:58 UTC 2013
Author: hrs
Date: Tue Mar 5 20:23:57 2013
New Revision: 313478
URL: http://svnweb.freebsd.org/changeset/ports/313478
Log:
- Add workaround for build breakage when libX11 is old.
- Take maintainership.
Added:
head/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h (contents, props changed)
Modified:
head/x11-wm/windowmaker/Makefile
Modified: head/x11-wm/windowmaker/Makefile
==============================================================================
--- head/x11-wm/windowmaker/Makefile Tue Mar 5 20:22:46 2013 (r313477)
+++ head/x11-wm/windowmaker/Makefile Tue Mar 5 20:23:57 2013 (r313478)
@@ -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 at FreeBSD.org
+MAINTAINER= hrs at FreeBSD.org
COMMENT?= GNUstep-compliant NeXTstep window manager clone
LICENSE?= GPLv2
Added: head/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h Tue Mar 5 20:23:57 2013 (r313478)
@@ -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>
More information about the svn-ports-head
mailing list