Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 59BF31A9217 for ; Sun, 29 Nov 2020 22:01:36 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A02FF84D5B; Sun, 29 Nov 2020 22:01:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DC26C84D51 for ; Sun, 29 Nov 2020 22:01:34 +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 rs_smNX6KWa3 for ; Sun, 29 Nov 2020 22:01:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 41A6884CE7 for ; Sun, 29 Nov 2020 22:01:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3B17AFA9D; Sun, 29 Nov 2020 22:01:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16066872947890" MIME-Version: 1.0 Date: Sun, 29 Nov 2020 22:01:34 +0000 From: "Darrin B. Jewell" Subject: CVS commit: pkgsrc/security/libtasn1 To: pkgsrc-changes@NetBSD.org Reply-To: dbj@netbsd.org X-Mailer: log_accum Message-Id: <20201129220134.3B17AFA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16066872947890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dbj Date: Sun Nov 29 22:01:34 UTC 2020 Modified Files: pkgsrc/security/libtasn1: Makefile Log Message: security/libtasn1: remove obsolete Darwin workarounds the current sources don't check for getopt_long in configure the current sources use -fno-common by default on Darwin To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 pkgsrc/security/libtasn1/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16066872947890 Content-Disposition: inline Content-Length: 820 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/libtasn1/Makefile diff -u pkgsrc/security/libtasn1/Makefile:1.79 pkgsrc/security/libtasn1/Makefile:1.80 --- pkgsrc/security/libtasn1/Makefile:1.79 Thu Mar 26 12:00:45 2020 +++ pkgsrc/security/libtasn1/Makefile Sun Nov 29 22:01:34 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.79 2020/03/26 12:00:45 nia Exp $ +# $NetBSD: Makefile,v 1.80 2020/11/29 22:01:34 dbj Exp $ DISTNAME= libtasn1-4.16.0 CATEGORIES= security devel @@ -14,11 +14,6 @@ USE_TOOLS+= bison makeinfo USE_LANGUAGES= c99 GNU_CONFIGURE= yes -# Mac OS X has no prototype for getopt_long and no declaration for -# struct option, so ignore getopt_long() even though the test succeeds. -CONFIGURE_ENV.Darwin+= ac_cv_func_getopt_long=no - -CFLAGS.Darwin+= -fno-common TEST_TARGET= check INFO_FILES= yes --_----------=_16066872947890--