summaryrefslogtreecommitdiffstats
path: root/src/libshout-1-fixes.patch
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2012-05-20 21:13:14 (GMT)
committerMark Brand <mabrand@mabrand.nl>2012-05-20 21:17:22 (GMT)
commit1faa9ded41f02572a106cfcaa84f6a049afded11 (patch)
treed33242b9aebdcc36a4912d219e0286dfd3314b68 /src/libshout-1-fixes.patch
parent5d2d195d21d9422d49311bb1b07cede6907dcdce (diff)
downloadmxe-1faa9ded41f02572a106cfcaa84f6a049afded11.zip
mxe-1faa9ded41f02572a106cfcaa84f6a049afded11.tar.gz
mxe-1faa9ded41f02572a106cfcaa84f6a049afded11.tar.bz2
update package libshout
Diffstat (limited to 'src/libshout-1-fixes.patch')
-rw-r--r--src/libshout-1-fixes.patch59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/libshout-1-fixes.patch b/src/libshout-1-fixes.patch
deleted file mode 100644
index e6077fa..0000000
--- a/src/libshout-1-fixes.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-This file is part of MXE.
-See index.html for further information.
-
-Contains ad hoc patches for cross building.
-
-From 25255ff19813e122e6442518b29a55c15860d3a3 Mon Sep 17 00:00:00 2001
-From: MXE
-Date: Fri, 1 Oct 2010 17:20:29 +0200
-Subject: [PATCH] mingw fixes
-
-
-diff --git a/examples/nonblocking.c b/examples/nonblocking.c
-index 0f4aa68..49a3d36 100644
---- a/examples/nonblocking.c
-+++ b/examples/nonblocking.c
-@@ -68,7 +68,11 @@ int main()
-
- while (ret == SHOUTERR_BUSY) {
- printf("Connection pending. Sleeping...\n");
-+#ifdef __MINGW32__
-+ Sleep(1000);
-+#else
- sleep(1);
-+#endif
- ret = shout_get_connected(shout);
- }
-
-diff --git a/include/os.h b/include/os.h
-index 7d065b3..d7ae425 100755
---- a/include/os.h
-+++ b/include/os.h
-@@ -1,7 +1,9 @@
- #ifdef _WIN32
-+#ifndef __MINGW32__
- typedef __int64 int64_t;
- typedef unsigned __int64 uint64_t;
- typedef unsigned __int32 uint32_t;
- typedef __int32 int32_t;
- typedef int ssize_t;
- #endif
-+#endif
-diff --git a/include/shout/shout.h.in b/include/shout/shout.h.in
-index 43b0e7a..b026c10 100644
---- a/include/shout/shout.h.in
-+++ b/include/shout/shout.h.in
-@@ -23,8 +23,10 @@
-
- #include <sys/types.h>
- #ifdef WIN32
-+#ifndef __MINGW32__
- #include <os.h>
- #endif
-+#endif
-
- #define SHOUTERR_SUCCESS (0)
- #define SHOUTERR_INSANE (-1)
---
-1.7.1
-