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/files | |
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/files')
-rw-r--r-- | x11/wdm/files/patch-src::wdm::loghelpers.c | 24 |
1 files changed, 0 insertions, 24 deletions
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 |