opkg: update md5.{c,h} with latest version from gnulib
[oweals/opkg-lede.git] / opkg.h.in
1 /* opkg.h - 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 #ifndef OPKG_H
19 #define OPKG_H
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #if 0
26 #define OPKG_DEBUG_NO_TMP_CLEANUP
27 #endif
28
29 #include "includes.h"
30 #include "opkg_conf.h"
31 #include "opkg_message.h"
32
33 #define OPKG_PKG_EXTENSION ".ipk"
34 #define DPKG_PKG_EXTENSION ".deb"
35
36 #define OPKG_LEGAL_PKG_NAME_CHARS "abcdefghijklmnopqrstuvwxyz0123456789.+-"
37 #define OPKG_PKG_VERSION_SEP_CHAR '_'
38
39 #define OPKG_STATE_DIR_PREFIX OPKGLIBDIR"/opkg"
40 #define OPKG_LISTS_DIR_SUFFIX "lists"
41 #define OPKG_INFO_DIR_SUFFIX "info"
42 #define OPKG_STATUS_FILE_SUFFIX "status"
43
44 #define OPKG_BACKUP_SUFFIX "-opkg.backup"
45
46 #define OPKG_LIST_DESCRIPTION_LENGTH 128
47
48 enum opkg_error {
49     OPKG_SUCCESS = 0,
50     OPKG_PKG_DEPS_UNSATISFIED,
51     OPKG_PKG_IS_ESSENTIAL,
52     OPKG_PKG_HAS_DEPENDENTS,
53     OPKG_PKG_HAS_NO_CANDIDATE
54 };
55 typedef enum opkg_error opkg_error_t;
56
57 extern int opkg_state_changed;
58
59
60 struct errlist {
61     char * errmsg;
62     struct errlist * next;
63 } ;
64
65 struct errlist* error_list;
66
67
68 #endif