pkg: implement dpkg-style version comparison rules
parent
da7e3de991
commit
3388277b9b
18
pkg.c
18
pkg.c
|
@ -394,13 +394,25 @@ pkg_compare_version(const char *a, const char *b)
|
||||||
one = str1 = buf1;
|
one = str1 = buf1;
|
||||||
two = str2 = buf2;
|
two = str2 = buf2;
|
||||||
|
|
||||||
while (*one && *two)
|
while (*one || *two)
|
||||||
{
|
{
|
||||||
while (*one && !isalnum(*one))
|
while (*one && !isalnum(*one) && *one != '~')
|
||||||
one++;
|
one++;
|
||||||
while (*two && !isalnum(*two))
|
while (*two && !isalnum(*two) && *two != '~')
|
||||||
two++;
|
two++;
|
||||||
|
|
||||||
|
if (*one == '~' || *two == '~')
|
||||||
|
{
|
||||||
|
if (*one != '~')
|
||||||
|
return 1;
|
||||||
|
if (*two != '~')
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
one++;
|
||||||
|
two++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (!(*one && *two))
|
if (!(*one && *two))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue