diff options
author | Dave Cottlehuber <dch@FreeBSD.org> | 2023-04-08 21:13:53 +0000 |
---|---|---|
committer | Dave Cottlehuber <dch@FreeBSD.org> | 2023-04-08 21:13:53 +0000 |
commit | 0e7927110ea683c28fcb8fccc6513765f4fad607 (patch) | |
tree | 8dacdf343cb46a46907d6b7240e12b493e62f7c5 | |
parent | 95dbe8240363684fb2ca6a443cab39aa2289d11a (diff) |
comms/owfs: relax warnings to build on current
-rw-r--r-- | comms/owfs/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/comms/owfs/Makefile b/comms/owfs/Makefile index e0d806f38f22..c0f794e07a88 100644 --- a/comms/owfs/Makefile +++ b/comms/owfs/Makefile @@ -1,6 +1,6 @@ PORTNAME= owfs PORTVERSION= 3.2p4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms MASTER_SITES= https://github.com/owfs/owfs/releases/download/v${PORTVERSION}/ @@ -12,11 +12,12 @@ LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/include/uthash.h:devel/uthash -USES= gmake libtool pkgconfig +USES= gmake libtool pkgconfig compiler:c11 GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes +CFLAGS+= -Wno-implicit-function-declaration -Wno-int-conversion .include "Makefile.options" |