mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-04-04 22:30:43 +02:00
* pkg.c (recursive_fill_list): Make sure to act recursively with
Requires.private, making them much more useful. Special thanks to Matthias Clasen for lots and lots of nagging. Freedesktop #8788
This commit is contained in:
parent
9c6db22935
commit
8ac159cd5e
2 changed files with 5 additions and 1 deletions
|
|
@ -1,5 +1,9 @@
|
|||
2007-06-18 Tollef Fog Heen <tfheen@err.no>
|
||||
|
||||
* pkg.c (recursive_fill_list): Make sure to act recursively with
|
||||
Requires.private, making them much more useful. Special thanks to
|
||||
Matthias Clasen for lots and lots of nagging. Freedesktop #8788
|
||||
|
||||
* glib-patches/remove-strsignal-prototype.diff: define _GNU_SOURCE
|
||||
there to get strsignal prototype, addresses the rest of
|
||||
Freedesktop 10652.
|
||||
|
|
|
|||
2
pkg.c
2
pkg.c
|
|
@ -617,7 +617,7 @@ recursive_fill_list (Package *pkg, GetListFunc func, GSList **listp)
|
|||
|
||||
fill_one_level (pkg, func, listp);
|
||||
|
||||
tmp = pkg->requires;
|
||||
tmp = (*func) (pkg);
|
||||
|
||||
while (tmp != NULL)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue