summaryrefslogtreecommitdiff
path: root/math/mpfr
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2006-03-24 10:35:29 +0000
committerjoerg <joerg@pkgsrc.org>2006-03-24 10:35:29 +0000
commitff9923ceb36db48429327716dcff5f03d35b6557 (patch)
tree1075837cd3271d271c431cd88bf5b86e9f03f8df /math/mpfr
parent53643e022452336dbecfe3954f59967c0bbe2490 (diff)
downloadpkgsrc-ff9923ceb36db48429327716dcff5f03d35b6557.tar.gz
Fix DragonFly: include stdint.h.
Diffstat (limited to 'math/mpfr')
-rw-r--r--math/mpfr/distinfo3
-rw-r--r--math/mpfr/patches/patch-aa15
2 files changed, 17 insertions, 1 deletions
diff --git a/math/mpfr/distinfo b/math/mpfr/distinfo
index be9bd6fdaba..2b963fb17c9 100644
--- a/math/mpfr/distinfo
+++ b/math/mpfr/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2006/03/02 19:09:39 drochner Exp $
+$NetBSD: distinfo,v 1.4 2006/03/24 10:35:29 joerg Exp $
SHA1 (mpfr-2.2.0-060221/mpfr-2.2.0.tar.gz) = 4b284df87e0adac4d00b573d48ab77ff8ef6de75
RMD160 (mpfr-2.2.0-060221/mpfr-2.2.0.tar.gz) = ea16ccba121eaa3f92b4b2fac31e9a60de9b118b
@@ -6,3 +6,4 @@ Size (mpfr-2.2.0-060221/mpfr-2.2.0.tar.gz) = 944299 bytes
SHA1 (mpfr-2.2.0-060221/patches) = 3c4680500722e349d4dd4d515098b64e535fd054
RMD160 (mpfr-2.2.0-060221/patches) = 031e2a081318bce2a9faaa6d912995ec74fbadaf
Size (mpfr-2.2.0-060221/patches) = 44540 bytes
+SHA1 (patch-aa) = afb281d1f954af759f81b7ed2039c97a285065da
diff --git a/math/mpfr/patches/patch-aa b/math/mpfr/patches/patch-aa
new file mode 100644
index 00000000000..cda4fe93345
--- /dev/null
+++ b/math/mpfr/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.3 2006/03/24 10:35:29 joerg Exp $
+
+--- mpfr.h.orig 2006-03-24 10:17:08.000000000 +0000
++++ mpfr.h
+@@ -22,6 +22,10 @@ MA 02110-1301, USA. */
+ #ifndef __MPFR_H
+ #define __MPFR_H
+
++#ifdef HAVE_STDINT_H
++#include <stdint.h>
++#endif
++
+ /* Define MPFR version number */
+ #define MPFR_VERSION_MAJOR 2
+ #define MPFR_VERSION_MINOR 2