Received: by mail.netbsd.org (Postfix, from userid 605) id 4993F84D5B; Wed, 29 Nov 2017 18:29:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CA27084D4A for ; Wed, 29 Nov 2017 18:29:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id FPPzn07iu8fh for ; Wed, 29 Nov 2017 18:29:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3919184D46 for ; Wed, 29 Nov 2017 18:29:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 34258FB40; Wed, 29 Nov 2017 18:29:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1511980175275810" MIME-Version: 1.0 Date: Wed, 29 Nov 2017 18:29:35 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/netcdf To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20171129182935.34258FB40@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. --_----------=_1511980175275810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Wed Nov 29 18:29:35 UTC 2017 Modified Files: pkgsrc/devel/netcdf: Makefile Log Message: devel/netcdf: Make this build on platforms without libdl To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 pkgsrc/devel/netcdf/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1511980175275810 Content-Disposition: inline Content-Length: 771 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/netcdf/Makefile diff -u pkgsrc/devel/netcdf/Makefile:1.44 pkgsrc/devel/netcdf/Makefile:1.45 --- pkgsrc/devel/netcdf/Makefile:1.44 Tue Nov 28 17:52:02 2017 +++ pkgsrc/devel/netcdf/Makefile Wed Nov 29 18:29:35 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2017/11/28 17:52:02 minskim Exp $ +# $NetBSD: Makefile,v 1.45 2017/11/29 18:29:35 minskim Exp $ DISTNAME= netcdf-4.4.1.1 CATEGORIES= devel @@ -14,6 +14,10 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --disable-doxygen CONFIGURE_ARGS+= --disable-examples +.include "../../mk/dlopen.buildlink3.mk" + +BUILDLINK_TRANSFORM+= opt:-ldl:${BUILDLINK_LDADD.dl:M*} + .include "../../devel/hdf5/buildlink3.mk" .include "../../www/curl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1511980175275810--