From 4605b388cf41813dc20463aa3ecd17820cf12457 Mon Sep 17 00:00:00 2001 From: Leonardo Taccari Date: Thu, 4 Dec 2008 21:44:28 +0000 Subject: [PATCH] Update to 5.3. Changes (from Anselm R. Garbe's dwm@suckless.org ML announce): This release contains the spawn() version of Neale and several bugfixes regarding the NOBORDER handling in 5.2, and a new config.h option which allows to set use server grabs during mouse based resizals/movements. --- dwm/Makefile | 4 ++-- dwm/distinfo | 9 +++++---- dwm/options.mk | 9 ++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/dwm/Makefile b/dwm/Makefile index d759cc730f..69b04b14bf 100644 --- a/dwm/Makefile +++ b/dwm/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2008/10/21 20:51:30 leot1990 Exp $ +# $NetBSD: Makefile,v 1.9 2008/12/04 21:44:28 leot1990 Exp $ -DISTNAME= dwm-5.2 +DISTNAME= dwm-5.3 CATEGORIES= wm MASTER_SITES= http://code.suckless.org/dl/dwm/ diff --git a/dwm/distinfo b/dwm/distinfo index e8e33f703f..ada33b0686 100644 --- a/dwm/distinfo +++ b/dwm/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2008/09/09 22:03:56 leot1990 Exp $ +$NetBSD: distinfo,v 1.5 2008/12/04 21:44:28 leot1990 Exp $ -SHA1 (dwm-5.2.tar.gz) = cb606e4c581eafa7e911d6531537d7719b50e834 -RMD160 (dwm-5.2.tar.gz) = 2f3d74c2d588501df1770cbb23cf27567ee0926c -Size (dwm-5.2.tar.gz) = 18372 bytes +SHA1 (dwm-5.3.tar.gz) = 878f6f43509bd065934b48dec89031b52ea50259 +RMD160 (dwm-5.3.tar.gz) = a270464a7697aeb27fdd198679e97fd5057224e3 +Size (dwm-5.3.tar.gz) = 18421 bytes +SHA1 (patch-aa) = bf4588706d00b3cf17f7c695120a24f652285d3d diff --git a/dwm/options.mk b/dwm/options.mk index c98dd49ad2..6f7252222d 100644 --- a/dwm/options.mk +++ b/dwm/options.mk @@ -1,20 +1,19 @@ -# $NetBSD: options.mk,v 1.1.1.1 2008/09/09 21:52:26 leot1990 Exp $ +# $NetBSD: options.mk,v 1.2 2008/12/04 21:44:28 leot1990 Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.dwm PKG_SUPPORTED_OPTIONS= xinerama -PKG_SUGGESTED_OPTIONS= xinerama .include "../../mk/bsd.options.mk" # If we don't want the Xinerama support we delete XINERAMALIBS and # XINERAMAFLAGS lines, otherwise the Xinerama support is the default. .if !empty(PKG_OPTIONS:Mxinerama) -. include "../../x11/libXinerama/buildlink3.mk" -.else SUBST_CLASSES+= options SUBST_STAGE.options= pre-build SUBST_MESSAGE.options= Toggle the Xinerama support SUBST_FILES.options= config.mk -SUBST_SED.options+= -e '/^XINERAMA/ d' +SUBST_SED.options+= -e '/XINERAMA/ s/^\#//' +. include "../../x11/libXinerama/buildlink3.mk" +.else . include "../../x11/libX11/buildlink3.mk" .endif