head	1.6;
access;
symbols
	pkgsrc-2026Q1:1.6.0.12
	pkgsrc-2026Q1-base:1.6
	pkgsrc-2025Q4:1.6.0.10
	pkgsrc-2025Q4-base:1.6
	pkgsrc-2025Q3:1.6.0.8
	pkgsrc-2025Q3-base:1.6
	pkgsrc-2025Q2:1.6.0.6
	pkgsrc-2025Q2-base:1.6
	pkgsrc-2025Q1:1.6.0.4
	pkgsrc-2025Q1-base:1.6
	pkgsrc-2024Q4:1.6.0.2
	pkgsrc-2024Q4-base:1.6
	pkgsrc-2024Q3:1.5.0.12
	pkgsrc-2024Q3-base:1.5
	pkgsrc-2024Q2:1.5.0.10
	pkgsrc-2024Q2-base:1.5
	pkgsrc-2024Q1:1.5.0.8
	pkgsrc-2024Q1-base:1.5
	pkgsrc-2023Q4:1.5.0.6
	pkgsrc-2023Q4-base:1.5
	pkgsrc-2023Q3:1.5.0.4
	pkgsrc-2023Q3-base:1.5
	pkgsrc-2023Q2:1.5.0.2
	pkgsrc-2023Q2-base:1.5
	pkgsrc-2023Q1:1.4.0.20
	pkgsrc-2023Q1-base:1.4
	pkgsrc-2022Q4:1.4.0.18
	pkgsrc-2022Q4-base:1.4
	pkgsrc-2022Q3:1.4.0.16
	pkgsrc-2022Q3-base:1.4
	pkgsrc-2022Q2:1.4.0.14
	pkgsrc-2022Q2-base:1.4
	pkgsrc-2022Q1:1.4.0.12
	pkgsrc-2022Q1-base:1.4
	pkgsrc-2021Q4:1.4.0.10
	pkgsrc-2021Q4-base:1.4
	pkgsrc-2021Q3:1.4.0.8
	pkgsrc-2021Q3-base:1.4
	pkgsrc-2021Q2:1.4.0.6
	pkgsrc-2021Q2-base:1.4
	pkgsrc-2021Q1:1.4.0.4
	pkgsrc-2021Q1-base:1.4
	pkgsrc-2020Q4:1.4.0.2
	pkgsrc-2020Q4-base:1.4
	pkgsrc-2020Q3:1.3.0.2
	pkgsrc-2020Q3-base:1.3
	pkgsrc-2020Q2:1.2.0.2
	pkgsrc-2020Q2-base:1.2
	pkgsrc-2020Q1:1.1.0.4
	pkgsrc-2020Q1-base:1.1
	pkgsrc-2019Q4:1.1.0.6
	pkgsrc-2019Q4-base:1.1
	pkgsrc-2019Q3:1.1.0.2
	pkgsrc-2019Q3-base:1.1;
locks; strict;
comment	@# @;


1.6
date	2024.11.28.20.32.43;	author ryoon;	state Exp;
branches;
next	1.5;
commitid	mxzZypmdimbgbszF;

1.5
date	2023.06.06.12.40.26;	author riastradh;	state Exp;
branches;
next	1.4;
commitid	xhspr6Z8JLQOWSrE;

1.4
date	2020.10.02.16.49.36;	author ryoon;	state Exp;
branches;
next	1.3;
commitid	yTzrkllHoIdUJlqC;

1.3
date	2020.08.31.18.06.53;	author wiz;	state Exp;
branches;
next	1.2;
commitid	7zxRbfOkDOoxbfmC;

1.2
date	2020.05.31.16.04.39;	author rillig;	state Exp;
branches;
next	1.1;
commitid	XeXBbtcQ0vkFtpaC;

1.1
date	2019.09.18.15.32.47;	author ryoon;	state Exp;
branches;
next	;
commitid	N3drSfLwPEKUwvDB;


desc
@@


1.6
log
@cross/mingw-w64-i686-winpthreads-ucrt: Update to 12.0.0

Changelog:
v12.0.0: 2024-05-29

Important: UCRT is now the default CRT runtime instead of MSVCRT, check the mingw-w64-doc/howto-build/ucrt-vs-msvcrt.txt document for details. Both header set and CRT must be configured and built with the same settings consistently for proper functionality. Switching runtimes requires all libraries to be rebuilt, including GCC.

Notable changes:

    C++ overloads for _strdate_s and _strtime_s, _makepath_s, wcsncat_s.
    gdtoa updated against netlib.org, up to January 2023.
    genlib tool removed in favor of llvm-dlltool, created by the same author.
    Make it possible to use winpthreads with MSVC.
    Updated wine header imports.
    Many other new win32 APIs.
    UCRT configurations now primarily use (faster) math functions from UCRT, rather than libmingwex
@
text
@# $NetBSD: Makefile,v 1.5 2023/06/06 12:40:26 riastradh Exp $

.include "../../cross/mingw-w64-x86_64-winpthreads/Makefile.common"

PKGNAME=		${DISTNAME:S/mingw-w64-v/mingw-w64-i686-winpthreads-${CRT_TYPE}-/}
COMMENT=		Mingw-w64 winpthreads library  for win32 cross-development (${CRT_TYPE)}

TOOL_DEPENDS+=		mingw-w64-i686-gcc-bootstrap-ucrt-[0-9]*:../../cross/mingw-w64-i686-gcc-bootstrap

CRT_TYPE=		ucrt
MINGW_TARGET=		${MINGW_W64_32_TARGET}

BUILDLINK_DEPMETHOD.mingw-w64-i686-headers-ucrt=	build
.include "../../cross/mingw-w64-i686-headers/buildlink3.mk"
BUILDLINK_DEPMETHOD.mingw-w64-i686-crt-ucrt=		build
.include "../../cross/mingw-w64-i686-crt/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
@


1.5
log
@Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.

Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).

No change to BUILD_DEPENDS as used correctly inside buildlink3.

As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.4 2020/10/02 16:49:36 ryoon Exp $
d5 2
a6 2
PKGNAME=		${DISTNAME:S/mingw-w64-v/mingw-w64-i686-winpthreads-/}
COMMENT=		Mingw-w64 winpthreads library  for win32 cross-development
d8 1
a8 1
TOOL_DEPENDS+=		mingw-w64-i686-gcc-bootstrap-[0-9]*:../../cross/mingw-w64-i686-gcc-bootstrap
d10 1
d13 1
a13 1
BUILDLINK_DEPMETHOD.mingw-w64-i686-headers=	build
d15 1
a15 1
BUILDLINK_DEPMETHOD.mingw-w64-i686-crt=		build
@


1.4
log
@mingw-w64-*: Update to mingw-w64 to 8.0.0

* Update GCC to 10.2.0.
* Update Binutils to 2.35.1

Changelog:
v8.0.0: 2020-09-18

Notable changes:

    New Hyper-V headers and libraries by Biswapriyo Nath
    Many headers updated from Wine by Jacek Caban.
    ARM math improvements by Martin Storsjo
    floating point fixes by Liu Hao
    many *printf compatibility fixes by Liu Hao and Martin Storsjo
    massive Windows App Store API updates by Steve Lhomme
    winstorecompat library updates by Martin Storsjo
    __USE_MINGW_ANSI_STDIO now automatically enabled in C99 and C11 mode when not using UCRT by Pali Rohar
    wdm and ddk updates by Zebediah Figura
    UCRT for Windows Store Apps (-lucrtapp) by Martin Storsjo
    Audioclient and ActivateAudioInterfaceAsync API updates by Liu Hao
    DirectX SDKs are now always installed
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.3 2020/08/31 18:06:53 wiz Exp $
d8 1
a8 1
BUILD_DEPENDS+=		mingw-w64-i686-gcc-bootstrap-[0-9]*:../../cross/mingw-w64-i686-gcc-bootstrap
@


1.3
log
@*: bump PKGREVISION for perl-5.32.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.2 2020/05/31 16:04:39 rillig Exp $
a2 1
PKGREVISION= 1
@


1.2
log
@mingw-w64-i686-winpthreads: remove unknown configure options

These options are only for crt, not for winpthreads.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2019/09/18 15:32:47 ryoon Exp $
d3 1
@


1.1
log
@cross/mingw-w64-i686-winpthreads: import mingw-w64-i686-winpthreads-6.0.0

Mingw-w64 is an advancement of the original mingw.org project,
created to support the GCC compiler on Windows systems. It has
forked it in 2007 in order to provide support for 64 bits and new
APIs. It has since then gained widespread use and distribution.

This package provides winpthreads library for mingw-w64 i386 target.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.5 2019/08/11 13:18:17 wiz Exp $
a10 2
CONFIGURE_ARGS+=	--enable-lib32
CONFIGURE_ARGS+=	--disable-lib64
@

