From owner-svn-ports-head@freebsd.org Sun Nov 18 21:36:20 2018 Return-Path: Delivered-To: svn-ports-head@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 8753A1123BA5; Sun, 18 Nov 2018 21:36:20 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C78A72371; Sun, 18 Nov 2018 21:36:19 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.west.internal (Postfix) with ESMTP id 64DA1966; Sun, 18 Nov 2018 16:36:18 -0500 (EST) Received: from web4 ([10.202.2.214]) by compute4.internal (MEProxy); Sun, 18 Nov 2018 16:36:18 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=TcGJjrqL7OcSaKQI+d3qPht89ocg75CC4OHZaKyy7 uU=; b=JIt5EDJXDCsSxOS2Q5tQ2c5GhK1fFlhGStb/XOV2tXjFNsgm0rNADEoPL UeFE+9bkqTJ7W6Rg0J154eKLC3vDM0EsaRpRac8T2rEVC4kUDSPAx4E2VynJ3woP fHGMcmulf9QbpjTc7gWtGvYOXqvNgzgqbc0jbz0B0c6Ndt6UTcTX+3q3adnc3LAL cExPK/7viee0rBdzVXCMYFlxmFrCyobexqjqcqnLoXusgpHfEy21bG1k6WpgWQv3 DL37xUkNdz7daVn7mqqqaoGPM5/Lv9MCPWSezcPTSg97dcQgpgFzqi6ENKhLKV8E iBLND5zXZikpKIWDoq5NF0NkMGI8g== X-ME-Sender: X-ME-Proxy: Received: by mailuser.nyi.internal (Postfix, from userid 99) id A1042BA7C4; Sun, 18 Nov 2018 16:36:17 -0500 (EST) Message-Id: <1542576977.2386261.1581155040.7C79847F@webmail.messagingengine.com> From: Tobias Kortkamp To: Muhammad Moinur Rahman , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-2d882eb6 Date: Sun, 18 Nov 2018 22:36:17 +0100 In-Reply-To: <201811182108.wAIL80n6030392@repo.freebsd.org> Subject: Re: svn commit: r485274 - head/net/nbd-server References: <201811182108.wAIL80n6030392@repo.freebsd.org> X-Rspamd-Queue-Id: 0C78A72371 X-Spamd-Result: default: False [-0.26 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.09)[-0.087,0]; NEURAL_HAM_SHORT(-0.17)[-0.173,0]; ASN(0.00)[asn:11403, ipnet:64.147.123.0/24, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Nov 2018 21:36:20 -0000 On Sun, Nov 18, 2018, at 22:08, Muhammad Moinur Rahman wrote: > Author: bofh > Date: Sun Nov 18 21:08:00 2018 > New Revision: 485274 > URL: https://svnweb.freebsd.org/changeset/ports/485274 > > Log: > net/nbd-server: Update 3.5=>3.18 > > - Add LICENSE_FILE > - Add OPTION GNUTLS > - Add USES=gnome > - Pet portlint > > PR: 230977 > Submitted by: ndowens@yahoo.com > Reported by: wouter@grep.be It fails to build: nbd-server.c:607:17: warning: implicit declaration of function 'atoll' is invalid in C99 [-Wimplicit-function-declaration] es = (off_t)atoll(optarg); ^ nbd-server.c:711:9: error: use of undeclared identifier 'DT_UNKNOWN' case DT_UNKNOWN: ^ nbd-server.c:722:9: error: use of undeclared identifier 'DT_REG' case DT_REG: ^ nbd-server.c:3426:5: warning: implicit declaration of function 'daemon' is invalid in C99 [-Wimplicit-function-declaration] if(daemon(0,0)<0) { ^ nbd-server.c:3473:3: warning: implicit declaration of function 'setgroups' is invalid in C99 [-Wimplicit-function-declaration] setgroups(0, NULL); ^ > Modified: > head/net/nbd-server/Makefile > head/net/nbd-server/distinfo > > Modified: head/net/nbd-server/Makefile > ============================================================================== > --- head/net/nbd-server/Makefile Sun Nov 18 20:44:30 2018 (r485273) > +++ head/net/nbd-server/Makefile Sun Nov 18 21:08:00 2018 (r485274) > @@ -2,8 +2,7 @@ > # $FreeBSD$ > > PORTNAME= nbd > -PORTVERSION= 3.5 > -PORTREVISION= 1 > +PORTVERSION= 3.18 > PORTEPOCH= 1 > CATEGORIES= net > MASTER_SITES= SF > @@ -13,17 +12,25 @@ MAINTAINER= bofh@FreeBSD.org > COMMENT= Server for the Linux network block device (nbd) > > LICENSE= GPLv2 > +LICENSE_FILE= ${WRKSRC}/COPYING > > -USES= pkgconfig tar:bzip2 > +USES= gnome pkgconfig > USE_GNOME= glib20 > + > GNU_CONFIGURE= yes > CONFIGURE_ARGS= --enable-lfs --enable-syslog > TEST_TARGET= check > > +OPTIONS_DEFINE= GNUTLS > +GNUTLS_CONFIGURE_WITH= gnutls > +GNUTLS_BUILD_DEPENDS= gnutls>0:security/gnutls > +GNUTLS_RUN_DEPENDS= gnutls>0:security/gnutls Did you mean GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls ?