Date: Tue, 5 Mar 2013 20:23:57 +0000 (UTC) From: Hiroki Sato <hrs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313478 - in head/x11-wm/windowmaker: . files Message-ID: <201303052023.r25KNvLm016945@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@FreeBSD.org +MAINTAINER= hrs@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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303052023.r25KNvLm016945>