summaryrefslogtreecommitdiff
path: root/lang/guile/patches/patch-ag
diff options
context:
space:
mode:
Diffstat (limited to 'lang/guile/patches/patch-ag')
-rw-r--r--lang/guile/patches/patch-ag19
1 files changed, 0 insertions, 19 deletions
diff --git a/lang/guile/patches/patch-ag b/lang/guile/patches/patch-ag
deleted file mode 100644
index e4ed757bcac..00000000000
--- a/lang/guile/patches/patch-ag
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-ag,v 1.5 2007/07/20 00:09:22 gdt Exp $
-
-solaris-2.9 does not have stdint.h but does have inttypes.h
-
---- libguile/c-tokenize.c.orig 2007-06-13 18:00:56.000000000 -0400
-+++ libguile/c-tokenize.c
-@@ -39,7 +39,12 @@
- #define __STDC_LIMIT_MACROS 1
- #endif
-
-+#ifdef HAVE_STDINT_H
-+#include <stdint.h> /* May break IA64 test-noansi-r */
-+#else
- #include <inttypes.h>
-+#endif
-+
- typedef int8_t flex_int8_t;
- typedef uint8_t flex_uint8_t;
- typedef int16_t flex_int16_t;