diff options
author | reed <reed@pkgsrc.org> | 2005-08-23 14:07:25 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-08-23 14:07:25 +0000 |
commit | 7a9f5a527f2e44c31a0d5a2ba3807fc7956a782e (patch) | |
tree | ffef55fbbf4e75a022be530d27ac397925c978d8 /security/heimdal/patches | |
parent | 5d7413e27a844a78448488fa5b1bb1beb3f5bb3a (diff) | |
download | pkgsrc-7a9f5a527f2e44c31a0d5a2ba3807fc7956a782e.tar.gz |
Include sys/types.h. This fixes configure on DragonFly. Bump PKGREVISION.
Okayed by lha@. I tested on Linux and DragonFly. I got this from
Joerg Sonnenberger.
On DragonFly, the configure errored like:
/usr/include/openssl/md5.h:110: error: syntax error before "size_t"
In file included from conftest.c:34:
/usr/include/openssl/sha.h:109: error: syntax error before "size_t"
This caused tests to break and it ended up building and installing libdes
and des.h, md4.h, and related headers.
So later libgssapi needed this libdes which was not buildlinked which
broke kdelibs3 build.
Diffstat (limited to 'security/heimdal/patches')
-rw-r--r-- | security/heimdal/patches/patch-ad | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/security/heimdal/patches/patch-ad b/security/heimdal/patches/patch-ad index 5ba870a2b88..81b03a611a3 100644 --- a/security/heimdal/patches/patch-ad +++ b/security/heimdal/patches/patch-ad @@ -1,6 +1,6 @@ -$NetBSD: patch-ad,v 1.5 2004/12/14 19:24:29 jlam Exp $ +$NetBSD: patch-ad,v 1.6 2005/08/23 14:07:25 reed Exp $ ---- configure.orig 2004-09-13 08:27:10.000000000 -0400 +--- configure.orig 2005-06-14 14:29:16.000000000 +0000 +++ configure @@ -3176,9 +3176,6 @@ fi @@ -12,3 +12,35 @@ $NetBSD: patch-ad,v 1.5 2004/12/14 19:24:29 jlam Exp $ # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 +@@ -22000,6 +21997,7 @@ cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + + #undef KRB5 /* makes md4.h et al unhappy */ ++ #include <sys/types.h> + #ifdef HAVE_OPENSSL + #include <openssl/md4.h> + #include <openssl/md5.h> +@@ -22096,6 +22094,7 @@ cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + + #undef KRB5 /* makes md4.h et al unhappy */ ++ #include <sys/types.h> + #ifdef HAVE_OPENSSL + #include <openssl/md4.h> + #include <openssl/md5.h> +@@ -22192,6 +22191,7 @@ cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + + #undef KRB5 /* makes md4.h et al unhappy */ ++ #include <sys/types.h> + #ifdef HAVE_OPENSSL + #include <openssl/md4.h> + #include <openssl/md5.h> +@@ -22319,6 +22319,7 @@ cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + + #undef KRB5 /* makes md4.h et al unhappy */ ++ #include <sys/types.h> + #ifdef HAVE_OPENSSL + #include <openssl/md4.h> + #include <openssl/md5.h> |