diff options
author | Rene Ladan <rene@FreeBSD.org> | 2011-04-18 22:25:41 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2011-04-18 22:25:41 +0000 |
commit | 48f1d8c469aeb67c4c7838bd2bdf17f28eacbc79 (patch) | |
tree | 5509f9ae2d797f02944d429c11a7b43a3c3d2cf3 /devel/cocktail/files/patch-reuse-m2c-SYSTEM_.h | |
parent | Repair pkg-plist to remove directories created by NLS option. (diff) |
Remove most expired ports:
2011-04-17 cad/tclspice: has been broken for more than a year
2011-04-17 comms/hcfmdm: does not compile on 7.X or higher
2011-04-17 databases/mysqlcc: has been broken for almost a year
2011-04-17 devel/ruby-rjudy: does not compile on FreeBSD 7.x or newer
2011-04-17 devel/xfc: does not compile on FreeBSD 7.x or newer
2011-04-17 devel/lamson: has been broken for a half year
2011-04-17 devel/cocktail: does not build on FreeBSD 7.x or newer
2011-04-17 devel/djgpp-gcc: has been broken for half a year
2011-04-17 devel/gauche-sdl: has been broken for a year
2011-04-17 devel/gdb53-act: does not compile on FreeBSD 7.x and up
2011-04-17 editors/zed: does not compile on FreeBSD 7.x or newer
2011-04-17 games/aqbubble: does not compile on FreeBSD 7.x or newer
2011-04-17 graphics/libvisual-plugins: has been broken for 3 years
2011-04-17 japanese/roundcube: has been broken for almost a year
2011-04-17 japanese/tkstep80: does not compile on FreeBSD 7.x or newer
2011-04-17 lang/u++: has been broken for over a half year
2011-04-17 lang/pugs: has been broken for over a year
2011-04-17 lang/mozart: does not compile on FreeBSD 7.x or newer
2011-04-17 math/linalg: does not build on FreeBSD 7.x or newer
2011-04-17 math/R-cran-igraph: has been broken for over a half year
2011-04-17 misc/ftree: has been broken for over a half year
2011-04-17 multimedia/katchtv: has been broken for a half year
2011-04-17 multimedia/libomxil-bellagio: has been broken for almost a year
2011-04-17 multimedia/banshee-mirage: has been broken for over a half year
2011-04-17 net-p2p/trackerbt: has been broken for a half year
2011-04-17 net/cap: does not compile on FreeBSD 7.x or newer
2011-04-17 net/ggsd: does not compile on FreeBSD 7.x or newer
2011-04-17 net/b2bua: does not compile on FreeBSD 7.x or newer
2011-04-17 net/penguintv: has been broken for a half year
2011-04-17 news/openftd: has been broken for almost a year
2011-04-17 palm/romeo: does not compile on FreeBSD 7.x or newer
2011-04-17 science/pcp: does not compile on FreeBSD 7.x or newer
2011-04-17 science/elmer-fem: has been broken for over a year
2011-04-17 security/newpki-lib: does not compile on FreeBSD 7.x or newer
2011-04-17 security/newpki-server: does not compile on FreeBSD 7.x or newer
2011-04-17 security/xmlsec: does not compile on FreeBSD 7.x or newer
2011-04-17 security/f-protd: has been broken for over a year
2011-04-17 sysutils/xwlans: does not compile on FreeBSD 7.x or newer
2011-04-17 www/bk_edit: does not compile on FreeBSD 7.x and newer
2011-04-17 www/bricolage: has been broken for a half year
2011-04-17 x11-toolkits/gauche-gtk: has been broken for a year
2011-04-17 x11-toolkits/gambas2-gb-qt: has been broken for over a year
2011-04-17 x11-toolkits/php-gtk2: has been broken for over a half year
2011-04-17 x11-toolkits/p5-Tcl-Tk: has been broken for 2 year
2011-04-17 x11/metisse: has been broken for over a half year
Notes
Notes:
svn path=/head/; revision=272897
Diffstat (limited to 'devel/cocktail/files/patch-reuse-m2c-SYSTEM_.h')
-rw-r--r-- | devel/cocktail/files/patch-reuse-m2c-SYSTEM_.h | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/devel/cocktail/files/patch-reuse-m2c-SYSTEM_.h b/devel/cocktail/files/patch-reuse-m2c-SYSTEM_.h deleted file mode 100644 index 278a0bf209a7..000000000000 --- a/devel/cocktail/files/patch-reuse-m2c-SYSTEM_.h +++ /dev/null @@ -1,104 +0,0 @@ ---- reuse/m2c/SYSTEM_.h.orig Wed Feb 16 00:26:45 1994 -+++ reuse/m2c/SYSTEM_.h Fri Dec 17 09:21:56 2004 -@@ -16,10 +16,18 @@ - /* */ - /************************************************************************/ - -+#define DEFINITION_SYSTEM_ -+ -+# include <stdlib.h> -+# include <string.h> -+# include <limits.h> -+ - # ifdef __STDC__ - # define ARGS(parameters) parameters -+# define NOARGS void - # else - # define ARGS(parameters) () -+# define NOARGS - # endif - - /* -@@ -30,6 +38,7 @@ - #define TRUE ((BOOLEAN)1) - - #define NIL 0L -+#define DEAD_ALLOCATE 0xd0d0d0d0d0d0d0d0L - - /* - * Definition of basic types -@@ -55,7 +64,7 @@ - - typedef unsigned long BITSET; - --typedef void (*PROC)(); -+typedef void (*PROC)(NOARGS); - - typedef unsigned char WORD; - typedef WORD BYTE; -@@ -85,14 +94,14 @@ - #define TRUNC(x) ((CARDINAL) (x)) - #define VAL(T,x) ((T) (x)) - --#define MIN_SHORTINT (-32768) --#define MAX_SHORTINT 32767 --#define MIN_LONGINT (-2147483648L) --#define MAX_LONGINT 2147483647L -+#define MIN_SHORTINT __SHRT_MIN -+#define MAX_SHORTINT __SHRT_MAX -+#define MIN_LONGINT __INT_MIN -+#define MAX_LONGINT __INT_MAX - #define MIN_SHORTCARD 0 - #define MAX_SHORTCARD 65535 - #define MIN_LONGCARD ((LONGCARD)0L) --#define MAX_LONGCARD ((LONGCARD)4294967295L) -+#define MAX_LONGCARD ((LONGCARD)__ULONG_MAX) - - #define MIN_BOOLEAN FALSE - #define MAX_BOOLEAN TRUE -@@ -129,7 +138,12 @@ - #define SYSTEM_MaxSet (sizeof (unsigned long) * 8 - 1) - - #define SET_ELEM(el) (0X1L << (el)) --#define SET_cRNG(lo,hi) ((lo) <= (hi) ? ((unsigned) (((unsigned) ~0X0L) >> (lo) << (lo) + SYSTEM_MaxSet - (hi))) >> SYSTEM_MaxSet - (hi) : 0X0L) -+#define SET_cRNG(lo,hi) \ -+ ((lo) <= (hi) \ -+ ? (( (~(0X0UL)) >> (lo) ) \ -+ << (lo + SYSTEM_MaxSet - hi) ) \ -+ >> (SYSTEM_MaxSet - hi) \ -+ : 0X0L) - #define SET_RANGE(lo,hi) SET_RANGE1((CARDINAL)(lo), (CARDINAL)(hi)) - - extern unsigned long SET_RANGE1 ARGS((CARDINAL lo, CARDINAL hi)); -@@ -177,7 +191,7 @@ - #define OPEN_ARRAY_LOCALS char *BLOCK_POINTER, *FREE_POINTER; - #define ALLOC_OPEN_ARRAYS(size, arrays) \ - BLOCK_POINTER = FREE_POINTER = \ -- malloc((unsigned)((size) + (arrays) * (SYSTEM_ALIGN - 1))); -+ calloc(1, (unsigned)((size) + (arrays) * (SYSTEM_ALIGN - 1))); - #define FREE_OPEN_ARRAYS free(BLOCK_POINTER); - - #endif -@@ -205,21 +219,4 @@ - - extern void CaseError ARGS((char file[], int line)); - extern void ReturnError ARGS((char file[], int line)); -- --/* -- * Definition of library functions -- */ -- --#ifdef StackAlloc --extern char *alloca(); --#else --/* #include "malloc.h" */ --extern char *malloc(); --extern void free(); --#endif -- --# ifndef BCOPY --/* extern char *memcpy(); */ --# endif --extern char *strncpy(); --extern void exit(); -+extern void BEGIN_MODULE ARGS((NOARGS)); |