Received: by mail.netbsd.org (Postfix, from userid 605) id 619F784EFA; Fri, 13 May 2022 06:44:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A87D84EF8 for ; Fri, 13 May 2022 06:44:50 +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 P-8UY38-xCto for ; Fri, 13 May 2022 06:44:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F038E84D13 for ; Fri, 13 May 2022 06:44:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 084D9FA94; Fri, 13 May 2022 06:45:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1652424312208500" MIME-Version: 1.0 Date: Fri, 13 May 2022 06:45:12 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/databases/unixodbc To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20220513064512.084D9FA94@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1652424312208500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri May 13 06:45:11 UTC 2022 Modified Files: pkgsrc/databases/unixodbc: Makefile Log Message: unixodbc: SunOS needs -D_POSIX_PTHREAD_SEMANTICS. To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 pkgsrc/databases/unixodbc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1652424312208500 Content-Disposition: inline Content-Length: 744 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/unixodbc/Makefile diff -u pkgsrc/databases/unixodbc/Makefile:1.44 pkgsrc/databases/unixodbc/Makefile:1.45 --- pkgsrc/databases/unixodbc/Makefile:1.44 Mon May 9 11:16:27 2022 +++ pkgsrc/databases/unixodbc/Makefile Fri May 13 06:45:11 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2022/05/09 11:16:27 adam Exp $ +# $NetBSD: Makefile,v 1.45 2022/05/13 06:45:11 jperkin Exp $ DISTNAME= unixODBC-2.3.11 PKGNAME= ${DISTNAME:S/ODBC/odbc/} @@ -31,6 +31,7 @@ CONFIGURE_ARGS+= --enable-gnuthreads CONFIGURE_ARGS+= --with-pth=${PTHREADBASE:Q} .endif +CFLAGS.SunOS+= -D_POSIX_PTHREAD_SEMANTICS LIBS.SunOS+= -lsocket -lnsl # Override the local definitions that point to the self-contained libtool --_----------=_1652424312208500--