diff options
author | antoine <antoine@FreeBSD.org> | 2014-10-13 04:51:13 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-10-13 04:51:13 +0800 |
commit | 33a9bb8231da0431166f79dd15a587394da79e04 (patch) | |
tree | 0d6b9850f43506578ecb101c236dca125e7b6e96 /databases | |
parent | 28a70b879d99705f8a4ca730fb0e8ceaec1e90df (diff) | |
download | freebsd-ports-graphics-33a9bb8231da0431166f79dd15a587394da79e04.tar.gz freebsd-ports-graphics-33a9bb8231da0431166f79dd15a587394da79e04.tar.zst freebsd-ports-graphics-33a9bb8231da0431166f79dd15a587394da79e04.zip |
Mark BROKEN: Fails to build
with gcc:
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../../include -I../../include -I/usr/local/include -D_REENTRANT -D_THREAD_SAFE -DDEBUG=1 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wpointer-arith -D_THREAD_SAFE -pthread -O2 -pipe -fno-strict-aliasing -I/usr/include -Wdeclaration-after-statement -MT threadsafe.lo -MD -MP -MF .deps/threadsafe.Tpo -c -o threadsafe.lo threadsafe.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../include -I../../include -I/usr/local/include -D_REENTRANT -D_THREAD_SAFE -DDEBUG=1 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wpointer-arith -D_THREAD_SAFE -pthread -O2 -pipe -fno-strict-aliasing -I/usr/include -Wdeclaration-after-statement -MT threadsafe.lo -MD -MP -MF .deps/threadsafe.Tpo -c threadsafe.c -fPIC -DPIC -o .libs/threadsafe.o
In file included from threadsafe.c:84:
../../include/freetds/tds.h:149: warning: function declaration isn't a prototype
../../include/freetds/tds.h:149: error: bit-field '__res_state' has invalid type
Makefile:439: recipe for target 'threadsafe.lo' failed
with clang:
/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../../include -I../../include -I/usr/local/include -D_REENTRANT -D_THREAD_SAFE -DDEBUG=1 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wpointer-arith -D_THREAD_SAFE -pthread -O2 -pipe -fno-strict-aliasing -I/usr/include -Wdeclaration-after-statement -MT threadsafe.lo -MD -MP -MF .deps/threadsafe.Tpo -c -o threadsafe.lo threadsafe.c
libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../include -I../../include -I/usr/local/include -D_REENTRANT -D_THREAD_SAFE -DDEBUG=1 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wpointer-arith -D_THREAD_SAFE -pthread -O2 -pipe -fno-strict-aliasing -I/usr/include -Wdeclaration-after-statement -MT threadsafe.lo -MD -MP -MF .deps/threadsafe.Tpo -c threadsafe.c -fPIC -DPIC -o .libs/threadsafe.o
In file included from threadsafe.c:84:
../../include/freetds/tds.h:149:16: error: bit-field '__res_state' has non-integral type 'TDS_USMALLINT (*())'
TDS_USMALLINT _res:10;
^ ~~
/usr/include/resolv.h:282:16: note: expanded from macro '_res'
#define _res (*__res_state())
^
1 error generated.
Makefile:439: recipe for target 'threadsafe.lo' failed
Reported by: pkg-fallout
Diffstat (limited to 'databases')
-rw-r--r-- | databases/freetds-devel/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/databases/freetds-devel/Makefile b/databases/freetds-devel/Makefile index a252c273a9b..d58140d9a6b 100644 --- a/databases/freetds-devel/Makefile +++ b/databases/freetds-devel/Makefile @@ -14,6 +14,8 @@ COMMENT= Sybase/Microsoft TDS protocol library LICENSE= LGPL20 +BROKEN= Fails to build + WRKSRC= ${WRKDIR}/${PORTNAME}-dev.${PORTVERSION} TDS_VER?= 7.2 USES= gmake iconv libtool:keepla pkgconfig tar:bzip2 |