From owner-svn-ports-head@freebsd.org Mon Sep 16 12:39:58 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 63EF4FF678; Mon, 16 Sep 2019 12:39:58 +0000 (UTC) (envelope-from tobik@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 46X5Rf1zzkz4b9C; Mon, 16 Sep 2019 12:39:58 +0000 (UTC) (envelope-from tobik@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 28D3E2056B; Mon, 16 Sep 2019 12:39:58 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8GCdw7D049767; Mon, 16 Sep 2019 12:39:58 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8GCdv3s049764; Mon, 16 Sep 2019 12:39:57 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201909161239.x8GCdv3s049764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 16 Sep 2019 12:39:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512176 - in head: Mk/Uses dns/doh-proxy X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head: Mk/Uses dns/doh-proxy X-SVN-Commit-Revision: 512176 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Mon, 16 Sep 2019 12:39:58 -0000 Author: tobik Date: Mon Sep 16 12:39:57 2019 New Revision: 512176 URL: https://svnweb.freebsd.org/changeset/ports/512176 Log: Mk/Uses/cargo.mk: Add gmake build dependency for jemalloc-sys Modified: head/Mk/Uses/cargo.mk head/dns/doh-proxy/Makefile Modified: head/Mk/Uses/cargo.mk ============================================================================== --- head/Mk/Uses/cargo.mk Mon Sep 16 12:32:11 2019 (r512175) +++ head/Mk/Uses/cargo.mk Mon Sep 16 12:39:57 2019 (r512176) @@ -133,6 +133,10 @@ CARGO_ENV+= GETTEXT_BIN_DIR=${LOCALBASE}/bin \ GETTEXT_LIB_DIR=${LOCALBASE}/lib .endif +.if ${CARGO_CRATES:Mjemalloc-sys-[0-9]*} +BUILD_DEPENDS+= gmake:devel/gmake +.endif + .for libc in ${CARGO_CRATES:Mlibc-[0-9]*} # FreeBSD 12.0 changed ABI: r318736 and r320043 # https://github.com/rust-lang/libc/commit/78f93220d70e Modified: head/dns/doh-proxy/Makefile ============================================================================== --- head/dns/doh-proxy/Makefile Mon Sep 16 12:32:11 2019 (r512175) +++ head/dns/doh-proxy/Makefile Mon Sep 16 12:39:57 2019 (r512176) @@ -12,9 +12,6 @@ COMMENT= DNS-over-HTTP server proxy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -# jemalloc-sys-0.1.8 needs gmake -BUILD_DEPENDS= gmake:devel/gmake - USES= cargo USE_GITHUB= yes GH_ACCOUNT= jedisct1