diff options
author | joerg <joerg> | 2006-01-06 14:13:23 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-01-06 14:13:23 +0000 |
commit | f09f0d4dd0cbce8ac8ae9085aca580ed6cc51e04 (patch) | |
tree | dce06aed6f7b74aa06fff3f4255871fa714d96e5 /lang/umb-scheme/patches | |
parent | 49d630014dcd4f078a31ffff7896ae271dea7bc7 (diff) | |
download | pkgsrc-f09f0d4dd0cbce8ac8ae9085aca580ed6cc51e04.tar.gz |
DragonFly needs float.h as well for DBL_MIN.
Diffstat (limited to 'lang/umb-scheme/patches')
-rw-r--r-- | lang/umb-scheme/patches/patch-ag | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/umb-scheme/patches/patch-ag b/lang/umb-scheme/patches/patch-ag index e3273dffb54..42e2e4a1777 100644 --- a/lang/umb-scheme/patches/patch-ag +++ b/lang/umb-scheme/patches/patch-ag @@ -1,4 +1,4 @@ -$NetBSD: patch-ag,v 1.2 2005/07/02 03:29:07 minskim Exp $ +$NetBSD: patch-ag,v 1.3 2006/01/06 14:13:23 joerg Exp $ --- real.c.orig 1996-01-21 16:15:52.000000000 -0600 +++ real.c @@ -7,7 +7,7 @@ $NetBSD: patch-ag,v 1.2 2005/07/02 03:29:07 minskim Exp $ functions. */ +#include <limits.h> -+#ifdef __APPLE__ ++#if defined(__APPLE__) || defined(__DragonFly__) +#include <float.h> +#endif #include "portable.h" |