pkg_depends: add missing parse_replacelist() prototype
[oweals/opkg-lede.git] / libopkg / opkg_configure.c
index 154d3e6f30bbdaebd1b025fd055eb26c47b0c141..dc05f1e491f704521844721bbc42730ed0025726 100644 (file)
    General Public License for more details.
 */
 
-#include "includes.h"
+#include <stdio.h>
+
 #include "sprintf_alloc.h"
 #include "opkg_configure.h"
 #include "opkg_message.h"
 #include "opkg_cmd.h"
 
-int
-opkg_configure(pkg_t *pkg)
+int opkg_configure(pkg_t * pkg)
 {
-    int err;
-
-    /* DPKG_INCOMPATIBILITY:
-       dpkg actually does some conffile handling here, rather than at the
-       end of opkg_install(). Do we care? */
-    /* DPKG_INCOMPATIBILITY:
-       dpkg actually includes a version number to this script call */
-
-    err = pkg_run_script(pkg, "postinst", "configure");
-    if (err) {
-       opkg_msg(ERROR, "%s.postinst returned %d.\n", pkg->name, err);
-       return err;
-    }
-
-    opkg_state_changed++;
-    return 0;
-}
+       int err;
+
+       /* DPKG_INCOMPATIBILITY:
+          dpkg actually does some conffile handling here, rather than at the
+          end of opkg_install(). Do we care? */
+       /* DPKG_INCOMPATIBILITY:
+          dpkg actually includes a version number to this script call */
 
+       err = pkg_run_script(pkg, "postinst", "configure");
+       if (err) {
+               opkg_msg(ERROR, "%s.postinst returned %d.\n", pkg->name, err);
+               return err;
+       }
+
+       return 0;
+}