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 "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 7EC677A168 for ; Sun, 18 Sep 2016 22:17:48 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 2B4D785F19; Sun, 18 Sep 2016 22:17:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B03C285E85 for ; Sun, 18 Sep 2016 22:17:47 +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 aIyZLzlNaghU for ; Sun, 18 Sep 2016 22:17:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4F88084CFD for ; Sun, 18 Sep 2016 22:17:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4AB46FBD1; Sun, 18 Sep 2016 22:17:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1474237067226910" MIME-Version: 1.0 Date: Sun, 18 Sep 2016 22:17:47 +0000 From: "Sebastian Wiedenroth" Subject: CVS commit: pkgsrc/net/freerdp To: pkgsrc-changes@NetBSD.org Reply-To: wiedi@netbsd.org X-Mailer: log_accum Message-Id: <20160918221747.4AB46FBD1@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1474237067226910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiedi Date: Sun Sep 18 22:17:47 UTC 2016 Modified Files: pkgsrc/net/freerdp: Makefile Log Message: fix int types for SunOS To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/freerdp/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1474237067226910 Content-Disposition: inline Content-Length: 681 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/freerdp/Makefile diff -u pkgsrc/net/freerdp/Makefile:1.18 pkgsrc/net/freerdp/Makefile:1.19 --- pkgsrc/net/freerdp/Makefile:1.18 Wed Aug 17 00:06:45 2016 +++ pkgsrc/net/freerdp/Makefile Sun Sep 18 22:17:47 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2016/08/17 00:06:45 ryoon Exp $ +# $NetBSD: Makefile,v 1.19 2016/09/18 22:17:47 wiedi Exp $ DISTNAME= freerdp-1.0.2 PKGREVISION= 17 @@ -18,6 +18,8 @@ USE_OLD_DES_API=yes PKGCONFIG_OVERRIDE+= freerdp.pc.in +CFLAGS.SunOS+= -Du_int8_t=uint8_t -Du_int16_t=uint16_t -Du_int32_t=uint32_t -Du_int64_t=uint64_t + .include "options.mk" .include "../../converters/libiconv/buildlink3.mk" --_----------=_1474237067226910--