diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2004-02-11 04:26:45 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2004-02-11 04:26:45 +0000 |
commit | f0410f5a4b28dfb464e945de71d37d7c109f6aa7 (patch) | |
tree | 5168ea38937b03736a3fd92d5e4fae0ce1d1a262 /x11/wdm | |
parent | 5133b08f182713f5cfdeee6bf62112ae45f4bb5c (diff) | |
download | ports-f0410f5a4b28dfb464e945de71d37d7c109f6aa7.tar.gz ports-f0410f5a4b28dfb464e945de71d37d7c109f6aa7.zip |
Notes
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 |