annotate src/flac-1-ucrt.patch @ 5962:88dfa92d0c86

Add patches for building packages with UCRT. * src/flac-1-ucrt.patch, src/gdal-2-ucrt.patch, src/mesa-2-ucrt.patch: Don't set specific msvcrt version. * src/flac.mk: autoreconf after applying patch. * dist-files.mk: Add new files to build system.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 18 Nov 2021 14:59:34 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5962
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
1 Don't force MSVCRT version on mingw.
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
2
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
3 diff -aur a/configure.ac b/configure.ac
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
4 --- a/configure.ac 2019-08-04 10:26:40.680643000 +0200
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
5 +++ b/configure.ac 2021-11-17 18:56:11.962266940 +0100
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
6 @@ -208,7 +208,6 @@
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
7 os_is_windows=no
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
8 case "$host" in
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
9 *mingw*)
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
10 - CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS"
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
11 os_is_windows=yes
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
12 ;;
88dfa92d0c86 Add patches for building packages with UCRT.
Markus Mützel <markus.muetzel@gmx.de>
parents:
diff changeset
13 esac