summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/opkg/opkg/add_vercmp.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/opkg/opkg/add_vercmp.patch')
-rw-r--r--meta/recipes-devtools/opkg/opkg/add_vercmp.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-devtools/opkg/opkg/add_vercmp.patch b/meta/recipes-devtools/opkg/opkg/add_vercmp.patch
deleted file mode 100644
index 1203c54874..0000000000
--- a/meta/recipes-devtools/opkg/opkg/add_vercmp.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1Upstream-Status: Inappropriate [function not used]
2
3Index: trunk/libopkg/opkg.c
4===================================================================
5--- trunk.orig/libopkg/opkg.c 2010-01-26 20:32:19.000000000 +0000
6+++ trunk/libopkg/opkg.c 2010-01-26 20:40:34.000000000 +0000
7@@ -876,3 +876,18 @@
8
9 return ret;
10 }
11+
12+int
13+opkg_compare_versions (const char *ver1, const char *ver2)
14+{
15+ pkg_t *pkg1, *pkg2;
16+
17+ pkg1 = pkg_new();
18+ pkg2 = pkg_new();
19+
20+ parse_version(pkg1, ver1);
21+ parse_version(pkg2, ver2);
22+
23+ return pkg_compare_versions(pkg1, pkg2);
24+}
25+
26Index: trunk/libopkg/opkg.h
27===================================================================
28--- trunk.orig/libopkg/opkg.h 2010-01-26 20:32:19.000000000 +0000
29+++ trunk/libopkg/opkg.h 2010-01-26 20:35:19.000000000 +0000
30@@ -58,4 +58,6 @@
31
32 int opkg_repository_accessibility_check(void);
33
34+int opkg_compare_versions (const char *ver1, const char *ver2);
35+
36 #endif /* OPKG_H */