From owner-svn-ports-all@freebsd.org Mon Apr 29 08:03:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA31315847DA; Mon, 29 Apr 2019 08:03:47 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5EA146A895; Mon, 29 Apr 2019 08:03:47 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 390361F2DF; Mon, 29 Apr 2019 08:03:47 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3T83lj4014234; Mon, 29 Apr 2019 08:03:47 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3T83kiw014232; Mon, 29 Apr 2019 08:03:46 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201904290803.x3T83kiw014232@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Mon, 29 Apr 2019 08:03:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500395 - in head/security/tinc-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: in head/security/tinc-devel: . files X-SVN-Commit-Revision: 500395 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5EA146A895 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Apr 2019 08:03:48 -0000 Author: dinoex Date: Mon Apr 29 08:03:46 2019 New Revision: 500395 URL: https://svnweb.freebsd.org/changeset/ports/500395 Log: - fix __nonnull__ attribute PR: 237602 Submitted by: pe82.de Added: head/security/tinc-devel/files/patch-configure (contents, props changed) Modified: head/security/tinc-devel/Makefile Modified: head/security/tinc-devel/Makefile ============================================================================== --- head/security/tinc-devel/Makefile Mon Apr 29 07:50:31 2019 (r500394) +++ head/security/tinc-devel/Makefile Mon Apr 29 08:03:46 2019 (r500395) @@ -2,7 +2,7 @@ PORTNAME= tinc PORTVERSION= 1.1pre17 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= https://www.tinc-vpn.org/packages/ \ http://www.tinc-vpn.org/packages/ Added: head/security/tinc-devel/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/tinc-devel/files/patch-configure Mon Apr 29 08:03:46 2019 (r500395) @@ -0,0 +1,35 @@ +--- configure.orig 2019-04-27 11:57:13 UTC ++++ configure +@@ -6192,8 +6192,8 @@ else + CFLAGS="$CFLAGS -Wall -Werror" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-void *test(void) __attribute__ ((__malloc__)); +- void *test(void) { return (void *)0; } ++void *test(void *x) __attribute__ ((__malloc__)); ++ void *test(void *x) { return (void *)0; } + + _ACEOF + if ac_fn_c_try_compile "$LINENO"; then : +@@ -6226,8 +6226,8 @@ else + CFLAGS="$CFLAGS -Wall -Werror" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-void *test(void) __attribute__ ((__nonnull__)); +- void *test(void) { return (void *)0; } ++void *test(void *x) __attribute__ ((__nonnull__)); ++ void *test(void *x) { return (void *)0; } + + _ACEOF + if ac_fn_c_try_compile "$LINENO"; then : +@@ -6260,8 +6260,8 @@ else + CFLAGS="$CFLAGS -Wall -Werror" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-void *test(void) __attribute__ ((__warn_unused_result__)); +- void *test(void) { return (void *)0; } ++void *test(void *x) __attribute__ ((__warn_unused_result__)); ++ void *test(void *x) { return (void *)0; } + + _ACEOF + if ac_fn_c_try_compile "$LINENO"; then :