Update to wdm 1.26. Highlights of changes:
- daemon mode works again - spanish and czech translations added - en locale is now different from C locale. - fixed problem with wdm not reacting to signals sent to process with pid written to pid file. - removed unused code - many other bugfixes See NEWS, README, and ChangeLog for the complete list. PR: ports/57010 Submitted by: Ports Fury Approved by: maintainer timeout (>3 months)
This commit is contained in:
parent
5133b08f18
commit
f0410f5a4b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=100626
3 changed files with 2 additions and 27 deletions
|
@ -6,8 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= wdm
|
||||
PORTVERSION= 1.25
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 1.26
|
||||
CATEGORIES= x11 windowmaker
|
||||
MASTER_SITES= http://voins.program.ru/wdm/ \
|
||||
http://www.de.freebsd.org/de/gif/bsd/ \
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (wdm/wdm-1.25.tar.bz2) = 7e9c6f1a9755529d4336b9212fb1b7de
|
||||
MD5 (wdm/wdm-1.26.tar.bz2) = 88467fb7f4a8fb3a6cc4c04ea184bf98
|
||||
MD5 (wdm/beastie.xpm) = 0891d7d8ac81514f10aafeb8f8a89ca2
|
||||
MD5 (wdm/daemon1-HQ-1280x960.jpg) = b38f175cf6b7167484afac423837ed1a
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
--- src/wdm/loghelpers.c.orig Sun Jun 1 17:00:09 2003
|
||||
+++ src/wdm/loghelpers.c Sun Jun 1 23:30:40 2003
|
||||
@@ -26,6 +26,21 @@
|
||||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
|
||||
+#ifdef __FreeBSD__
|
||||
+static char *
|
||||
+wstrndup(const char *src, size_t size)
|
||||
+{
|
||||
+ char *dst;
|
||||
+
|
||||
+ dst = malloc(size + 1);
|
||||
+ if (dst == NULL)
|
||||
+ return (NULL);
|
||||
+ dst[size] = '\0';
|
||||
+ strncpy(dst, src, size);
|
||||
+ return (dst);
|
||||
+}
|
||||
+#endif
|
||||
+
|
||||
/*
|
||||
* Function that treats buffer as set of lines separated with '\n'
|
||||
* These lines will be directed to WDMLogMessage function with
|
Loading…
Reference in a new issue