libopkg: do not clobber package flags during parsing
[oweals/opkg-lede.git] / libopkg / active_list.h
index 396e0512aba9a6daaa06850704c9a90004d7bc30..e20a3380e4a05bf489ac29ebfcc35c20f225448b 100644 (file)
 #define ACTIVE_LIST_H
 
 #include "list.h"
+#include "pkg.h"
 
 struct active_list {
        struct list_head node;
        struct list_head depend;
        struct active_list *depended;
+       pkg_t *pkg;
 };
 
 struct active_list *active_list_head_new(void);