diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2006-08-10 07:37:32 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2006-08-10 07:37:32 +0000 |
commit | 8abf80ec98b3f928e93133405f5cd084124d92d0 (patch) | |
tree | 696facf5ab0f98d6c98f1b0a404e24001c7ca8e5 /lang/f2c/files/patch-f2c_f2c.h | |
parent | - Update to 0.03 (diff) |
- Upgrade to 20060506;
- Remove FreeBSD specificities.
PR: ports/101054
Security: VuXML ID 43cb40b3-c8c2-11da-a672-000e0c2e438a
Diffstat (limited to 'lang/f2c/files/patch-f2c_f2c.h')
-rw-r--r-- | lang/f2c/files/patch-f2c_f2c.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/lang/f2c/files/patch-f2c_f2c.h b/lang/f2c/files/patch-f2c_f2c.h deleted file mode 100644 index ba8a7ff56830..000000000000 --- a/lang/f2c/files/patch-f2c_f2c.h +++ /dev/null @@ -1,44 +0,0 @@ ---- f2c/f2c.h.orig Mon Jan 1 12:03:53 2001 -+++ f2c/f2c.h Tue Oct 4 19:30:53 2005 -@@ -6,22 +6,23 @@ - - #ifndef F2C_INCLUDE - #define F2C_INCLUDE -+#include <sys/types.h> - --typedef long int integer; --typedef unsigned long int uinteger; -+typedef int32_t integer; -+typedef uint32_t uinteger; - typedef char *address; - typedef short int shortint; - typedef float real; - typedef double doublereal; - typedef struct { real r, i; } complex; - typedef struct { doublereal r, i; } doublecomplex; --typedef long int logical; -+typedef int32_t logical; - typedef short int shortlogical; - typedef char logical1; - typedef char integer1; - #ifdef INTEGER_STAR_8 /* Adjust for integer*8. */ --typedef long long longint; /* system-dependent */ --typedef unsigned long long ulongint; /* system-dependent */ -+typedef int64_t longint; /* system-dependent */ -+typedef uint64_t ulongint; /* system-dependent */ - #define qbit_clear(a,b) ((a) & ~((ulongint)1 << (b))) - #define qbit_set(a,b) ((a) | ((ulongint)1 << (b))) - #endif -@@ -42,9 +43,9 @@ - typedef short ftnlen; - typedef short ftnint; - #else --typedef long int flag; --typedef long int ftnlen; --typedef long int ftnint; -+typedef int32_t flag; -+typedef int32_t ftnlen; -+typedef int32_t ftnint; - #endif - - /*external read, write*/ |