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.
This commit is contained in:
Leonardo Taccari 2008-12-04 21:44:28 +00:00 committed by Thomas Klausner
parent dd41443aa1
commit 4605b388cf
3 changed files with 11 additions and 11 deletions

View file

@ -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/

View file

@ -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

View file

@ -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