wok-6.x rev 18759
Up tazpanel (561)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Dec 29 15:59:32 2015 +0100 (2015-12-29) |
parents | 924e6ea5da10 |
children | 394ccb9420b3 |
files | syslinux/stuff/extra/loadhigh.u tazpanel-extra/receipt tazpanel-ttf-css/receipt tazpanel/receipt |
line diff
1.1 --- a/syslinux/stuff/extra/loadhigh.u Tue Dec 29 10:21:19 2015 +0100 1.2 +++ b/syslinux/stuff/extra/loadhigh.u Tue Dec 29 15:59:32 2015 +0100 1.3 @@ -44,7 +44,7 @@ 1.4 + break; 1.5 + case 0x2204: 1.6 + case 0x2102: 1.7 -+ buf = unlz4((unsigned char *) unpacked, (unsigned char *) buf); 1.8 ++ buf = (char *) unlz4((unsigned char *) unpacked, (unsigned char *) buf); 1.9 + break; 1.10 + } 1.11 +#endif 1.12 @@ -53,7 +53,7 @@ 1.13 if (pad) 1.14 --- /dev/null 1.15 +++ core/unlzma.c 1.16 -@@ -0,0 +1,383 @@ 1.17 +@@ -0,0 +1,385 @@ 1.18 +typedef unsigned char uint8_t; 1.19 +typedef unsigned short uint16_t; 1.20 +typedef unsigned uint32_t; 1.21 @@ -72,6 +72,8 @@ 1.22 + * Licensed under GPLv2 or later, see file LICENSE in this source tree. 1.23 + */ 1.24 + 1.25 ++#include <string.h> 1.26 ++ 1.27 +#define PACKED __attribute__ ((packed)) 1.28 +#define ALWAYS_INLINE inline 1.29 +#define speed_inline 1.30 @@ -439,7 +441,7 @@ 1.31 +} 1.32 --- /dev/null 1.33 +++ core/unlz4.c 1.34 -@@ -0,0 +1,112 @@ 1.35 +@@ -0,0 +1,114 @@ 1.36 +/* 1.37 + * Copyright (C) 2015, pascal.bellard@slitaz.org 1.38 + * 1.39 @@ -448,6 +450,8 @@ 1.40 + * published by the Free Software Foundation. 1.41 + */ 1.42 + 1.43 ++#include <string.h> 1.44 ++ 1.45 +#define LZ4_MAGIC 0x184D2204 /* Spec 1.5.0 */ 1.46 +#define LZ4_LEGACY 0x184C2102 1.47 +#define LZ4_SKIP(n) ((((n) - 0x184D2A50) >> 4) == 0) 1.48 @@ -463,7 +467,7 @@ 1.49 + return n; 1.50 +} 1.51 + 1.52 -+char *unlz4(unsigned char *from, unsigned char *end) 1.53 ++unsigned char *unlz4(unsigned char *from, unsigned char *end) 1.54 +{ 1.55 + unsigned char *p, *end_chunk, *to, flags, mask; 1.56 + long magic;
2.1 --- a/tazpanel-extra/receipt Tue Dec 29 10:21:19 2015 +0100 2.2 +++ b/tazpanel-extra/receipt Tue Dec 29 15:59:32 2015 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="tazpanel-extra" 2.7 -VERSION="558" 2.8 +VERSION="561" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="SliTaz administration and configuration panel extra modules." 2.11 MAINTAINER="pascal.bellard@slitaz.org"
3.1 --- a/tazpanel-ttf-css/receipt Tue Dec 29 10:21:19 2015 +0100 3.2 +++ b/tazpanel-ttf-css/receipt Tue Dec 29 15:59:32 2015 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="tazpanel-ttf-css" 3.7 -VERSION="558" 3.8 +VERSION="561" 3.9 CATEGORY="misc" 3.10 SHORT_DESC="Enables tazpanel.ttf icons in opera browser" 3.11 MAINTAINER="psychomaniak@xakep.ru"
4.1 --- a/tazpanel/receipt Tue Dec 29 10:21:19 2015 +0100 4.2 +++ b/tazpanel/receipt Tue Dec 29 15:59:32 2015 +0100 4.3 @@ -1,7 +1,7 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="tazpanel" 4.7 -VERSION="558" 4.8 +VERSION="561" 4.9 CATEGORY="system-tools" 4.10 SHORT_DESC="SliTaz administration and configuration panel." 4.11 MAINTAINER="pankso@slitaz.org"