diff options
author | joerg <joerg> | 2006-07-18 18:02:09 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-07-18 18:02:09 +0000 |
commit | defd91a1be6db0dc05e060f23a4769c0acd89143 (patch) | |
tree | 8cb7bb6302d6384419e37254819343d34b8ff5e2 /lang | |
parent | 6c8c03e4c92714b3d994394d94b303240ab55f16 (diff) | |
download | pkgsrc-defd91a1be6db0dc05e060f23a4769c0acd89143.tar.gz |
Include sys/types.h before sys/socket.h to fix socklen_t detection
on DragonFly.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/guile/distinfo | 3 | ||||
-rw-r--r-- | lang/guile/patches/patch-ak | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/lang/guile/distinfo b/lang/guile/distinfo index 5a1810809da..0e74936921f 100644 --- a/lang/guile/distinfo +++ b/lang/guile/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.28 2006/07/12 20:11:39 wiz Exp $ +$NetBSD: distinfo,v 1.29 2006/07/18 18:02:09 joerg Exp $ SHA1 (guile-1.6.8.tar.gz) = 5c244f730d7aaee32db4b0cc77b688f74a5caa71 RMD160 (guile-1.6.8.tar.gz) = 9c2c6a6afe2adce458e30e97da782ae18ce75b5c @@ -11,3 +11,4 @@ SHA1 (patch-ag) = a4b5f490e9c9520120bcb2824004cb8bfa1027e1 SHA1 (patch-ah) = e66596a5ecc5c2d4fd09833507499b4d02c7af8a SHA1 (patch-ai) = 73e4a95dc9e9ede4d423e3a73fc2b0ac4f4802e0 SHA1 (patch-aj) = 2d55986fd8161bdc32c6e2ef7fe3d89310ab20cd +SHA1 (patch-ak) = 8cb47bf5d2c3818f860c459180507d4b2eae0b60 diff --git a/lang/guile/patches/patch-ak b/lang/guile/patches/patch-ak new file mode 100644 index 00000000000..571518aba02 --- /dev/null +++ b/lang/guile/patches/patch-ak @@ -0,0 +1,12 @@ +$NetBSD: patch-ak,v 1.4 2006/07/18 18:02:09 joerg Exp $ + +--- configure.orig 2006-07-18 17:48:48.000000000 +0000 ++++ configure +@@ -30498,6 +30498,7 @@ _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ ++#include <sys/types.h> + #include <sys/socket.h> + + int |