diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 2002-07-25 12:03:41 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 2002-07-25 12:03:41 +0000 |
commit | 90c1ebc2d2e08d7220f8b145199e9c76fb101642 (patch) | |
tree | 13ee1426b71c967cc62da7480ba7fe4df9fc5476 /x11 | |
parent | 8a37734a3864c0802c958bb085e802c94301b318 (diff) | |
download | ports-90c1ebc2d2e08d7220f8b145199e9c76fb101642.tar.gz ports-90c1ebc2d2e08d7220f8b145199e9c76fb101642.zip |
Notes
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xwit/Makefile | 5 | ||||
-rw-r--r-- | x11/xwit/distinfo | 2 | ||||
-rw-r--r-- | x11/xwit/files/patch-dsimple.c | 29 |
3 files changed, 32 insertions, 4 deletions
diff --git a/x11/xwit/Makefile b/x11/xwit/Makefile index 9b9155765a19..c5aa43af1a87 100644 --- a/x11/xwit/Makefile +++ b/x11/xwit/Makefile @@ -6,10 +6,9 @@ # PORTNAME= xwit -PORTVERSION= 1.0 +PORTVERSION= 3.4 CATEGORIES= x11 -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= tg +MASTER_SITES= http://www.x.org/contrib/utilities/ MAINTAINER= tg@FreeBSD.org diff --git a/x11/xwit/distinfo b/x11/xwit/distinfo index e6b8c8460741..0ed2b35d4732 100644 --- a/x11/xwit/distinfo +++ b/x11/xwit/distinfo @@ -1 +1 @@ -MD5 (xwit-1.0.tar.gz) = 8a93a770785ad1a7db9333819904149b +MD5 (xwit-3.4.tar.gz) = 627a2ff424ae5593be929f3def62dd1e diff --git a/x11/xwit/files/patch-dsimple.c b/x11/xwit/files/patch-dsimple.c new file mode 100644 index 000000000000..e1b2fd4bb27c --- /dev/null +++ b/x11/xwit/files/patch-dsimple.c @@ -0,0 +1,29 @@ +--- dsimple.c~ Thu Oct 19 00:59:17 1995 ++++ dsimple.c Wed Jul 24 15:49:26 2002 +@@ -5,6 +5,8 @@ + #include <X11/Xutil.h> + #include <X11/cursorfont.h> + #include <stdio.h> ++#include <stdlib.h> ++ + /* + * Other_stuff.h: Definitions of routines in other_stuff. + * +@@ -46,7 +48,7 @@ + char *Malloc(size) + unsigned size; + { +- char *data, *malloc(); ++ char *data; + + if (!(data = malloc(size))) + Fatal_Error("Out of memory!"); +@@ -62,7 +64,7 @@ + char *ptr; + int size; + { +- char *new_ptr, *realloc(); ++ char *new_ptr; + + if (!ptr) + return(Malloc(size)); |