diff options
author | antoine <antoine@FreeBSD.org> | 2014-02-22 17:15:57 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-02-22 17:15:57 +0800 |
commit | 591a1cdf4f9f6d56ef8fda1e6fc14f35e3a4a34a (patch) | |
tree | 2aa3d7ef46627e8807b45c6d357df496cf35a4a3 /security/gnutls-devel | |
parent | 536e3d56c749928a7b4b8b44715cd9fb0ebcaf43 (diff) | |
download | freebsd-ports-gnome-591a1cdf4f9f6d56ef8fda1e6fc14f35e3a4a34a.tar.gz freebsd-ports-gnome-591a1cdf4f9f6d56ef8fda1e6fc14f35e3a4a34a.tar.zst freebsd-ports-gnome-591a1cdf4f9f6d56ef8fda1e6fc14f35e3a4a34a.zip |
Mark broken: Does not build
With gcc:
gnome-libtool: compile: cc -std=gnu99 -DHAVE_CONFIG_H -I. -I../.. -I./../../gl -I./../includes -I./../includes -I./.. -I/usr/local/include -fPIC -O2 -pipe -fno-strict-aliasing -I/usr/local/include/p11-kit-1 -MT x509.lo -MD -MP -MF .deps/x509.Tpo -c x509.c -fPIC -DPIC -o .libs/x509.o
x509.c: In function 'gnutls_x509_dn_get_rdn_ava':
x509.c:2018: error: dereferencing pointer to incomplete type
x509.c:2019: error: dereferencing pointer to incomplete type
x509.c:2033: error: dereferencing pointer to incomplete type
x509.c:2034: error: dereferencing pointer to incomplete type
With clang:
x509.c:2018:23: error: incomplete definition of type 'struct asn1_node_st'
ava->oid.data = elem->value;
~~~~^
/usr/local/include/libtasn1.h:117:18: note: forward declaration of 'struct asn1_node_st'
typedef struct asn1_node_st asn1_node_st;
^
x509.c:2019:23: error: incomplete definition of type 'struct asn1_node_st'
ava->oid.size = elem->value_len;
~~~~^
/usr/local/include/libtasn1.h:117:18: note: forward declaration of 'struct asn1_node_st'
typedef struct asn1_node_st asn1_node_st;
^
x509.c:2033:13: error: incomplete definition of type 'struct asn1_node_st'
ptr = elem->value;
~~~~^
/usr/local/include/libtasn1.h:117:18: note: forward declaration of 'struct asn1_node_st'
typedef struct asn1_node_st asn1_node_st;
^
x509.c:2034:16: error: incomplete definition of type 'struct asn1_node_st'
remlen = elem->value_len;
~~~~^
/usr/local/include/libtasn1.h:117:18: note: forward declaration of 'struct asn1_node_st'
typedef struct asn1_node_st asn1_node_st;
^
Reported by: pkg-fallout since november 2013
Diffstat (limited to 'security/gnutls-devel')
-rw-r--r-- | security/gnutls-devel/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/gnutls-devel/Makefile b/security/gnutls-devel/Makefile index 80b405075961..a842b1ed32d6 100644 --- a/security/gnutls-devel/Makefile +++ b/security/gnutls-devel/Makefile @@ -12,6 +12,8 @@ PKGNAMESUFFIX= -devel MAINTAINER= novel@FreeBSD.org COMMENT= GNU Transport Layer Security library +BROKEN= Does not build + LIB_DEPENDS= gpg-error.0:${PORTSDIR}/security/libgpg-error \ nettle.4:${PORTSDIR}/security/nettle \ p11-kit.0:${PORTSDIR}/security/p11-kit |