upgrade to fluxbox 0.9.3

--
From: MAINTAINER
This commit is contained in:
brad 2003-06-12 14:04:26 +00:00
parent 46075731de
commit b7f1d32c30
4 changed files with 18 additions and 17 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.20 2003/01/04 17:17:55 lebel Exp $
# $OpenBSD: Makefile,v 1.21 2003/06/12 14:04:26 brad Exp $
COMMENT= "window manager based on the original Blackbox code"
VERSION= 0.1.14
VERSION= 0.9.3
DISTNAME= fluxbox-${VERSION}
PKGNAME= ${DISTNAME} #p2
CATEGORIES= x11

View File

@ -1,3 +1,3 @@
MD5 (fluxbox-0.1.14.tar.gz) = f097b97127461fa3f6f4af4048c75cfc
RMD160 (fluxbox-0.1.14.tar.gz) = 674f4ea0336f7dc062a6424000987f2fcde073ad
SHA1 (fluxbox-0.1.14.tar.gz) = 323bd101ae99fed56e320651c721815c7a36509a
MD5 (fluxbox-0.9.3.tar.gz) = 22b3323e948c32ff81afef9e18aa2ac6
RMD160 (fluxbox-0.9.3.tar.gz) = eb29273ae07d8311fd1449978787080b0c83efd3
SHA1 (fluxbox-0.9.3.tar.gz) = 2709a24b2eaeac0cf63c24de1b2fba0ef72e2796

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-src_BaseDisplay_cc,v 1.1 2003/03/02 21:22:22 pvalchev Exp $
--- src/BaseDisplay.cc.orig Sun Mar 2 11:38:30 2003
+++ src/BaseDisplay.cc Sun Mar 2 11:38:48 2003
@@ -123,7 +123,7 @@ void bexec(const char *command, char *di
if (! fork()) {
setsid();
putenv(displaystring);
- execl("/bin/sh", "/bin/sh", "-c", command, 0);
+ execl("/bin/sh", "/bin/sh", "-c", command, (void *)NULL);
exit(0);
}
}

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_FbCommands_cc,v 1.1 2003/06/12 14:04:26 brad Exp $
cast NULL sentinel to void * to make sure it's 64-bit on 64-bit architectures
--- src/FbCommands.cc.orig Wed Jun 11 05:38:07 2003
+++ src/FbCommands.cc Wed Jun 11 05:38:51 2003
@@ -49,7 +49,7 @@ void ExecuteCmd::execute() {
displaystring += intbuff;
setsid();
putenv(const_cast<char *>(displaystring.c_str()));
- execl("/bin/sh", "/bin/sh", "-c", m_cmd.c_str(), 0);
+ execl("/bin/sh", "/bin/sh", "-c", m_cmd.c_str(), (void *)NULL);
exit(0);
}
#else // __EMX__