ipkg: replace wget with libcurl functions
[oweals/opkg-lede.git] / ipkg_configure.c
1 /* ipkg_configure.c - the itsy package management system
2
3    Carl D. Worth
4
5    Copyright (C) 2001 University of Southern California
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17
18 #include "ipkg.h"
19
20 #include "ipkg_configure.h"
21
22 int ipkg_configure(ipkg_conf_t *conf, pkg_t *pkg)
23 {
24     int err;
25
26     /* DPKG_INCOMPATIBILITY:
27        dpkg actually does some conffile handling here, rather than at the
28        end of ipkg_install(). Do we care? */
29     /* DPKG_INCOMPATIBILITY:
30        dpkg actually includes a version number to this script call */
31     err = pkg_run_script(conf, pkg, "postinst", "configure");
32     if (err) {
33         printf("ERROR: %s.postinst returned %d\n", pkg->name, err);
34         return err;
35     }
36
37     ipkg_state_changed++;
38     return 0;
39 }
40