Received: by mail.netbsd.org (Postfix, from userid 605) id F25D684DA9; Tue, 12 Feb 2019 14:43:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 79D2184DA4 for ; Tue, 12 Feb 2019 14:43:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id wt6uzty7JXKh for ; Tue, 12 Feb 2019 14:43:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0617084D9E for ; Tue, 12 Feb 2019 14:43:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 03FD8FB16; Tue, 12 Feb 2019 14:43:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_154998259862690" MIME-Version: 1.0 Date: Tue, 12 Feb 2019 14:43:18 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/bwm-ng To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20190212144318.03FD8FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_154998259862690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Feb 12 14:43:17 UTC 2019 Modified Files: pkgsrc/net/bwm-ng: distinfo Added Files: pkgsrc/net/bwm-ng/patches: patch-src_bwm-ng.c Log Message: bwm-ng: fix build Make sure init() exists, even though it's inline. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/bwm-ng/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/net/bwm-ng/patches/patch-src_bwm-ng.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_154998259862690 Content-Disposition: inline Content-Length: 1513 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/bwm-ng/distinfo diff -u pkgsrc/net/bwm-ng/distinfo:1.2 pkgsrc/net/bwm-ng/distinfo:1.3 --- pkgsrc/net/bwm-ng/distinfo:1.2 Tue Jan 15 09:28:25 2019 +++ pkgsrc/net/bwm-ng/distinfo Tue Feb 12 14:43:17 2019 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.2 2019/01/15 09:28:25 wiz Exp $ +$NetBSD: distinfo,v 1.3 2019/02/12 14:43:17 wiz Exp $ SHA1 (bwm-ng-0.6.1.tar.gz) = 9445885d05e2430ca174739e3aba343afce94076 RMD160 (bwm-ng-0.6.1.tar.gz) = 9edfb0ef5e7e502bfb23248cf6a32b7e50357e4b SHA512 (bwm-ng-0.6.1.tar.gz) = 3f8d4a10f5cbf743d6aee9c6170f334c4274224a2f1886f04338c9a1bf0cf13af5be4aaea0445c9e5b5d361915cc3a93bbfe7c4abf69a0d24e42bc414d8056cd Size (bwm-ng-0.6.1.tar.gz) = 162620 bytes +SHA1 (patch-src_bwm-ng.c) = a9fd7812bb2a9d40b28d244207ca6d4900ddf7d7 SHA1 (patch-src_help.c) = 4886d8b608d65f8bdf1fa9ba6ab3cbebb53897cc Added files: Index: pkgsrc/net/bwm-ng/patches/patch-src_bwm-ng.c diff -u /dev/null pkgsrc/net/bwm-ng/patches/patch-src_bwm-ng.c:1.1 --- /dev/null Tue Feb 12 14:43:17 2019 +++ pkgsrc/net/bwm-ng/patches/patch-src_bwm-ng.c Tue Feb 12 14:43:17 2019 @@ -0,0 +1,15 @@ +$NetBSD: patch-src_bwm-ng.c,v 1.1 2019/02/12 14:43:17 wiz Exp $ + +Make sure init() exists, even though inline. + +--- src/bwm-ng.c.orig 2015-07-23 05:17:29.000000000 +0000 ++++ src/bwm-ng.c +@@ -26,7 +26,7 @@ + + /* handle interrupt signal */ + void sigint(int sig) FUNCATTR_NORETURN; +-inline void init(void); ++static inline void init(void); + + /* clear stuff and exit */ + #ifdef __STDC__ --_----------=_154998259862690--