-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
221 additions
and
314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git tzdata-clean/northamerica tzdata-workdir/northamerica | ||
index 01f392e..1af874b 100644 | ||
--- tzdata-clean/northamerica | ||
+++ tzdata-workdir/northamerica | ||
@@ -2631,7 +2631,7 @@ Zone America/Dawson -9:17:40 - LMT 1900 Aug 20 | ||
# http://puentelibre.mx/noticia/ciudad_juarez_cambio_horario_noviembre_2022/ | ||
|
||
# Rule NAME FROM TO - IN ON AT SAVE LETTER/S | ||
-Rule Mexico 1931 only - April 30 0:00 1:00 D | ||
+Rule Mexico 1931 only - Apr 30 0:00 1:00 D | ||
Rule Mexico 1931 only - Oct 1 0:00 0 S | ||
Rule Mexico 1939 only - Feb 5 0:00 1:00 D | ||
Rule Mexico 1939 only - Jun 25 0:00 0 S |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git xtrans-clean/Xtranssock.c xtrans-workdir/Xtranssock.c | ||
index c9823bd..e380e70 100644 | ||
--- xtrans-clean/Xtranssock.c | ||
+++ xtrans-workdir/Xtranssock.c | ||
@@ -196,7 +196,7 @@ static Sockettrans2dev Sockettrans2devtab[] = { | ||
static int TRANS(SocketINETClose) (XtransConnInfo ciptr); | ||
#endif | ||
|
||
-#if (defined(TCPCONN) && defined(TRANS_SERVER)) || defined(TRANS_REOPEN) | ||
+#if defined(TCPCONN) || defined(TRANS_REOPEN) | ||
static int | ||
is_numeric (const char *str) | ||
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#! /bin/sh | ||
|
||
name=lz4 | ||
version=1.9.4 | ||
revision=1 | ||
tarball_url="https://github.com/lz4/lz4/releases/download/v${version}/lz4-${version}.tar.gz" | ||
tarball_blake2b="2289cdce36acd35283bf2f02ef4d6d8f4805563be6d5a3492f3d6ea7975fb6bd14e1ac2e505df9747776edf8bcf0da7ba4ae7084b150e3ec08a52a9885f92ad5" | ||
hostdeps="gcc" | ||
deps="core-libs" | ||
|
||
build() { | ||
cp -rp "${source_dir}"/. ./ | ||
make CC="${OS_TRIPLET}-gcc" AR="${OS_TRIPLET}-ar" -j${parallelism} | ||
} | ||
|
||
package() { | ||
DESTDIR="${dest_dir}" PREFIX="${prefix}" make install | ||
post_package_strip | ||
} |
Oops, something went wrong.