Skip to content

Commit c808bd1

Browse files
author
Git for Windows Build Agent
committed
Update 1 package
mingw-w64-i686-pkgconf (1~2.2.0-1 -> 1~2.3.0-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 24ead8e commit c808bd1

File tree

24 files changed

+23
-12
lines changed

24 files changed

+23
-12
lines changed
2.59 KB
Binary file not shown.
2.59 KB
Binary file not shown.

mingw32/bin/libpkgconf-5.dll

2.01 KB
Binary file not shown.

mingw32/bin/pkg-config.exe

2.59 KB
Binary file not shown.

mingw32/bin/pkgconf.exe

2.59 KB
Binary file not shown.

mingw32/include/pkgconf/libpkgconf/libpkgconf.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ typedef struct pkgconf_queue_ pkgconf_queue_t;
8181
#define PKGCONF_FOREACH_LIST_ENTRY_REVERSE(tail, value) \
8282
for ((value) = (tail); (value) != NULL; (value) = (value)->prev)
8383

84-
#define LIBPKGCONF_VERSION 20200
85-
#define LIBPKGCONF_VERSION_STR "2.2.0"
84+
#define LIBPKGCONF_VERSION 20300
85+
#define LIBPKGCONF_VERSION_STR "2.3.0"
8686

8787
struct pkgconf_queue_ {
8888
pkgconf_node_t iter;
@@ -283,6 +283,7 @@ PKGCONF_API void pkgconf_cross_personality_deinit(pkgconf_cross_personality_t *p
283283

284284
#define PKGCONF_PKG_DEPF_INTERNAL 0x1
285285
#define PKGCONF_PKG_DEPF_PRIVATE 0x2
286+
#define PKGCONF_PKG_DEPF_QUERY 0x4
286287

287288
#define PKGCONF_PKG_ERRF_OK 0x0
288289
#define PKGCONF_PKG_ERRF_PACKAGE_NOT_FOUND 0x1
@@ -366,6 +367,7 @@ typedef struct pkgconf_fragment_render_ops_ {
366367

367368
typedef bool (*pkgconf_fragment_filter_func_t)(const pkgconf_client_t *client, const pkgconf_fragment_t *frag, void *data);
368369
PKGCONF_API bool pkgconf_fragment_parse(const pkgconf_client_t *client, pkgconf_list_t *list, pkgconf_list_t *vars, const char *value, unsigned int flags);
370+
PKGCONF_API void pkgconf_fragment_insert(const pkgconf_client_t *client, pkgconf_list_t *list, char type, const char *data, bool tail);
369371
PKGCONF_API void pkgconf_fragment_add(const pkgconf_client_t *client, pkgconf_list_t *list, const char *string, unsigned int flags);
370372
PKGCONF_API void pkgconf_fragment_copy(const pkgconf_client_t *client, pkgconf_list_t *list, const pkgconf_fragment_t *base, bool is_private);
371373
PKGCONF_API void pkgconf_fragment_copy_list(const pkgconf_client_t *client, pkgconf_list_t *list, const pkgconf_list_t *base);

mingw32/lib/libpkgconf.dll.a

706 Bytes
Binary file not shown.

mingw32/lib/pkgconfig/libpkgconf.pc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ libdir=${prefix}/lib
55
Name: libpkgconf
66
Description: a library for accessing and manipulating development framework configuration
77
URL: http://github.com/pkgconf/pkgconf
8-
Version: 2.2.0
8+
Version: 2.3.0
99
Libs: -L${libdir} -lpkgconf
1010
Cflags: -I${includedir}/pkgconf -DPKGCONFIG_IS_NOT_STATIC

mingw32/share/aclocal/pkg.m4

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,21 @@ m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
4646
[m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
4747
])dnl PKG_PREREQ
4848

49-
dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
50-
dnl ----------------------------------
49+
dnl PKG_PROG_PKG_CONFIG([MIN-VERSION], [ACTION-IF-NOT-FOUND])
50+
dnl ---------------------------------------------------------
5151
dnl Since: 0.16
5252
dnl
5353
dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
5454
dnl first found in the path. Checks that the version of pkg-config found
5555
dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
5656
dnl used since that's the first version where most current features of
5757
dnl pkg-config existed.
58+
dnl
59+
dnl If pkg-config is not found or older than specified, it will result
60+
dnl in an empty PKG_CONFIG variable. To avoid widespread issues with
61+
dnl scripts not checking it, ACTION-IF-NOT-FOUND defaults to aborting.
62+
dnl You can specify [PKG_CONFIG=false] as an action instead, which would
63+
dnl result in pkg-config tests failing, but no bogus error messages.
5864
AC_DEFUN([PKG_PROG_PKG_CONFIG],
5965
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
6066
m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
@@ -75,6 +81,9 @@ if test -n "$PKG_CONFIG"; then
7581
AC_MSG_RESULT([no])
7682
PKG_CONFIG=""
7783
fi
84+
fi
85+
if test -z "$PKG_CONFIG"; then
86+
m4_default([$2], [AC_MSG_ERROR([pkg-config not found])])
7887
fi[]dnl
7988
])dnl PKG_PROG_PKG_CONFIG
8089

mingw32/share/doc/pkgconf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ flags like so:
116116

117117

118118
pkgconf is compiled using [Meson](https://mesonbuild.com) on Windows. In theory, you could also use
119-
Meson to build on UNIX, but this is not recommended at this time as it pkgconf is typically built
119+
Meson to build on UNIX, but this is not recommended at this time as pkgconf is typically built
120120
much earlier than Meson.
121121

122122
$ meson setup build -Dtests=disabled

mingw32/share/man/man5/pc.5.gz

16 Bytes
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-git-extra-1.1.641.031e03baf-1/desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ any
2020
1718204230
2121

2222
%INSTALLDATE%
23-
1723173378
23+
1723259912
2424

2525
%PACKAGER%
2626
Johannes Schindelin <[email protected]>
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-pkgconf-1~2.2.0-1/desc renamed to var/lib/pacman/local/mingw-w64-i686-pkgconf-1~2.3.0-1/desc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-i686-pkgconf
33

44
%VERSION%
5-
1~2.2.0-1
5+
1~2.3.0-1
66

77
%BASE%
88
mingw-w64-pkgconf
@@ -17,16 +17,16 @@ https://github.com/pkgconf/pkgconf
1717
any
1818

1919
%BUILDDATE%
20-
1711638252
20+
1723162002
2121

2222
%INSTALLDATE%
23-
1711681999
23+
1723259909
2424

2525
%PACKAGER%
26-
CI (msys2/msys2-autobuild/3e617554/8469314959)
26+
CI (msys2/msys2-autobuild/67d510ec/10311276017)
2727

2828
%SIZE%
29-
554143
29+
568196
3030

3131
%GROUPS%
3232
mingw-w64-i686-toolchain
Binary file not shown.

var/lib/pacman/sync/clang64.db

-16 Bytes
Binary file not shown.

var/lib/pacman/sync/clang64.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw32.db

14 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw32.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw64.db

-141 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw64.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/ucrt64.db

4 Bytes
Binary file not shown.

var/lib/pacman/sync/ucrt64.db.sig

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)