Received: by mail.netbsd.org (Postfix, from userid 605) id 9D70784EE2; Fri, 27 Jul 2018 08:01:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E1E0C84E93 for ; Fri, 27 Jul 2018 08:01:30 +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 1trNdJ6YQftX for ; Fri, 27 Jul 2018 08:01:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 624D284DED for ; Fri, 27 Jul 2018 08:01:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5AF10FBEC; Fri, 27 Jul 2018 08:01:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1532678490206920" MIME-Version: 1.0 Date: Fri, 27 Jul 2018 08:01:30 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/devel/ocaml-lwt To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180727080130.5AF10FBEC@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. --_----------=_1532678490206920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Jul 27 08:01:30 UTC 2018 Modified Files: pkgsrc/devel/ocaml-lwt: Makefile Log Message: ocaml-lwt: SunOS needs -D_POSIX_PTHREAD_SEMANTICS. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/devel/ocaml-lwt/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1532678490206920 Content-Disposition: inline Content-Length: 643 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ocaml-lwt/Makefile diff -u pkgsrc/devel/ocaml-lwt/Makefile:1.36 pkgsrc/devel/ocaml-lwt/Makefile:1.37 --- pkgsrc/devel/ocaml-lwt/Makefile:1.36 Fri Apr 13 12:52:00 2018 +++ pkgsrc/devel/ocaml-lwt/Makefile Fri Jul 27 08:01:30 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2018/04/13 12:52:00 jaapb Exp $ +# $NetBSD: Makefile,v 1.37 2018/07/27 08:01:30 jperkin Exp $ # .include "Makefile.common" @@ -18,6 +18,8 @@ CONFIGURE_ARGS= -use-libev false OCAML_USE_JBUILDER= yes +CFLAGS.SunOS+= -D_POSIX_PTHREAD_SEMANTICS + do-configure: cd ${WRKSRC} && ocaml src/util/configure.ml ${CONFIGURE_ARGS} --_----------=_1532678490206920--