add modularity to pkg_queue_walk() #32

Closed
opened 2012-07-29 08:44:36 +00:00 by ariadne · 0 comments

currently, pkg_queue_walk() is monolithic -- adding new ways to crunch the pkg-config data in the frontend involves modifying the function.

something like the following would be better:

{
   pkg_t world = { ... };
   pkg_queue_compile(queue, &world);
   pkg_traverse(&world, ...);
}
currently, pkg_queue_walk() is monolithic -- adding new ways to crunch the pkg-config data in the frontend involves modifying the function. something like the following would be better: ``` C { pkg_t world = { ... }; pkg_queue_compile(queue, &world); pkg_traverse(&world, ...); } ```
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: ariadne/pkgconf#32
There is no content yet.