pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/archivers/hpack



Module Name:    pkgsrc
Committed By:   maya
Date:           Mon Aug  5 19:21:12 UTC 2019

Modified Files:
        pkgsrc/archivers/hpack: Makefile

Log Message:
hpack: use -std=gnu89 for older GNU inline semantics.
(Code requires expertise in C archaeology to understand...)

Fixes build on newer MacOS.
>From Clement Bouvier in PR pkg/54358


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 pkgsrc/archivers/hpack/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/archivers/hpack/Makefile
diff -u pkgsrc/archivers/hpack/Makefile:1.40 pkgsrc/archivers/hpack/Makefile:1.41
--- pkgsrc/archivers/hpack/Makefile:1.40        Tue Jan  2 05:37:22 2018
+++ pkgsrc/archivers/hpack/Makefile     Mon Aug  5 19:21:12 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.40 2018/01/02 05:37:22 maya Exp $
+# $NetBSD: Makefile,v 1.41 2019/08/05 19:21:12 maya Exp $
 
 DISTNAME=      hpack79src
 PKGNAME=       hpack-0.79
@@ -14,9 +14,12 @@ WRKSRC=              ${WRKDIR}
 MAKE_FILE=     makefile
 MAKE_FLAGS+=   CFLAGS=${HPACK_CFLAGS:Q} CMDL=${HPACK_LDFLAGS:Q}
 BUILD_TARGET=  hpack
+USE_LANGUAGES= c
 
 .include "../../mk/bsd.prefs.mk"
 
+CFLAGS+=       -std=gnu89
+
 .if ${OPSYS} == "Linux"
 HPACK_CFLAGS=  -DLINUX
 .else



Home | Main Index | Thread Index | Old Index