diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-02-04 10:31:59 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-02-04 10:31:59 +0000 |
commit | 4b6138a5f4f5cd11d49d7f96e13da661fd37655e (patch) | |
tree | bc24c187cedf70d056250064b3b267389572cdbb /main/sic/musl-fix.patch | |
parent | 54151c46e1b012c3b9aff856f54fd45d370e793d (diff) | |
download | aports-4b6138a5f4f5cd11d49d7f96e13da661fd37655e.tar.bz2 aports-4b6138a5f4f5cd11d49d7f96e13da661fd37655e.tar.xz |
main/sic: upgrade to 1.2 and fix build for musl
Diffstat (limited to 'main/sic/musl-fix.patch')
-rw-r--r-- | main/sic/musl-fix.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/main/sic/musl-fix.patch b/main/sic/musl-fix.patch new file mode 100644 index 0000000000..f04e329698 --- /dev/null +++ b/main/sic/musl-fix.patch @@ -0,0 +1,29 @@ +From d8e9e4a013196b98576a3a759b4b27c3edb2a0d2 Mon Sep 17 00:00:00 2001 +From: Natanael Copa <ncopa@alpinelinux.org> +Date: Tue, 4 Feb 2014 10:06:53 +0000 +Subject: [PATCH] build fix for musl libc + +It fixes the following compile error with musl libc: +sic.c:137:17: error: storage size of 'tv' isn't known + struct timeval tv; + ^ +--- + sic.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/sic.c b/sic.c +index d93c2ec..e4bdb74 100644 +--- a/sic.c ++++ b/sic.c +@@ -8,6 +8,8 @@ + #include <time.h> + #include <unistd.h> + ++#include <sys/time.h> ++ + static char *host = "irc.oftc.net"; + static char *port = "6667"; + static char *password; +-- +1.8.5.3 + |