diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2006-11-09 08:55:20 +0000 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2006-11-09 08:55:20 +0000 |
commit | 20eb0805bb081e64544ce6b74677228429eadc26 (patch) | |
tree | cbeabfdfbd94ce747638533e8e60a89c261d1a80 /sysutils/wmmon/files/patch-ab | |
parent | - Drop maintainership (diff) |
Remove expired ports:
2006-11-05 deskutils/offix-trash: development ceased in 1996
2006-11-04 devel/mingw: use mingw32-* ports instead
2006-11-04 devel/mingw-binutils: use mingw32-* ports instead
2006-11-04 devel/mingw-bin-msvcrt: use mingw32-* ports instead
2006-11-04 devel/mingw-gcc: use mingw32-* ports instead
2006-11-04 devel/mingw-opengl-headers: use mingw32-* ports instead
2006-11-05 editors/offix-editor: developement ceased in 1996
2006-11-05 print/offix-printer: development ceased in 1996
2006-11-05 sysutils/wmmon: no longer available from mastersite
2006-11-04 sysutils/xsysinfo: no longer available from mastersite
2006-11-04 textproc/xmlada: no longer available from mastersite; 2.0 is available
2006-11-05 www/p5-CGI-Application-ValidateRM: no longer available from mastersites
2006-11-05 x11/offix-clipboard: development ceased in 1996
2006-11-05 x11/offix-execute: development ceased in 1996
2006-11-05 x11-fm/offix-files: development ceased in 1996
2006-11-05 x11-wm/icepref: is for IceWM version 1.04 (6 years old)
Diffstat (limited to 'sysutils/wmmon/files/patch-ab')
-rw-r--r-- | sysutils/wmmon/files/patch-ab | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/sysutils/wmmon/files/patch-ab b/sysutils/wmmon/files/patch-ab deleted file mode 100644 index ca5cd9ee390d..000000000000 --- a/sysutils/wmmon/files/patch-ab +++ /dev/null @@ -1,34 +0,0 @@ -*** ../../wmmon.app/wmgeneral/list.c.orig Tue May 19 17:13:23 1998 ---- ../../wmmon.app/wmgeneral/list.c Mon May 24 21:26:26 1999 -*************** -*** 44,51 **** - LinkedList* cell; - - cell = (LinkedList*)malloc(sizeof(LinkedList)); -! cell->head = head; -! cell->tail = tail; - return cell; - } - ---- 44,54 ---- - LinkedList* cell; - - cell = (LinkedList*)malloc(sizeof(LinkedList)); -! if (cell) -! { -! cell->head = head; -! cell->tail = tail; -! } - return cell; - } - -*************** -*** 84,89 **** ---- 87,93 ---- - INLINE void - list_remove_head(LinkedList** list) - { -+ if (!list) return; - if (!*list) return; - if ((*list)->tail) - { |