diff options
author | linimon <linimon@FreeBSD.org> | 2004-02-11 12:26:45 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2004-02-11 12:26:45 +0800 |
commit | c14fee990871ef59abbecff9405b49d5b5475d94 (patch) | |
tree | b2c2de956dde9d62ed60eb2e57ef71b9cabc9767 /x11/wdm | |
parent | cb633f12fa4f6e1e5c4ada31bd3d08c2dc29a359 (diff) | |
download | freebsd-ports-gnome-c14fee990871ef59abbecff9405b49d5b5475d94.tar.gz freebsd-ports-gnome-c14fee990871ef59abbecff9405b49d5b5475d94.tar.zst freebsd-ports-gnome-c14fee990871ef59abbecff9405b49d5b5475d94.zip |
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)
Diffstat (limited to 'x11/wdm')
-rw-r--r-- | x11/wdm/Makefile | 3 | ||||
-rw-r--r-- | x11/wdm/distinfo | 2 | ||||
-rw-r--r-- | x11/wdm/files/patch-src::wdm::loghelpers.c | 24 |
3 files changed, 2 insertions, 27 deletions
diff --git a/x11/wdm/Makefile b/x11/wdm/Makefile index 8eda495e65bf..5e0ccd2f7fff 100644 --- a/x11/wdm/Makefile +++ b/x11/wdm/Makefile @@ -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/ \ diff --git a/x11/wdm/distinfo b/x11/wdm/distinfo index 4ed9302b9d4c..f2cf12aab93c 100644 --- a/x11/wdm/distinfo +++ b/x11/wdm/distinfo @@ -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 diff --git a/x11/wdm/files/patch-src::wdm::loghelpers.c b/x11/wdm/files/patch-src::wdm::loghelpers.c deleted file mode 100644 index ddaa4081d49d..000000000000 --- a/x11/wdm/files/patch-src::wdm::loghelpers.c +++ /dev/null @@ -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 |