aboutsummaryrefslogtreecommitdiffstats
path: root/testing/simgear/musl-fixes.patch
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2017-01-05 07:23:13 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2017-01-05 07:23:43 +0000
commit76d8addbe590a7991b3b08d0c94b9906dbf75670 (patch)
tree85e96477b6f05b9a14f029cdfeee860590a2e37d /testing/simgear/musl-fixes.patch
parentdde588bf540d529c4390ba54b3568d1d89f881ad (diff)
downloadaports-76d8addbe590a7991b3b08d0c94b9906dbf75670.tar.bz2
aports-76d8addbe590a7991b3b08d0c94b9906dbf75670.tar.xz
testing/simgear: new aport
Sim library for FlightGear
Diffstat (limited to 'testing/simgear/musl-fixes.patch')
-rw-r--r--testing/simgear/musl-fixes.patch59
1 files changed, 59 insertions, 0 deletions
diff --git a/testing/simgear/musl-fixes.patch b/testing/simgear/musl-fixes.patch
new file mode 100644
index 0000000000..441626d052
--- /dev/null
+++ b/testing/simgear/musl-fixes.patch
@@ -0,0 +1,59 @@
+--- a/simgear/misc/strutils.cxx
++++ b/simgear/misc/strutils.cxx
+@@ -43,6 +43,11 @@
+ #include <windows.h>
+ #endif
+
++#ifdef _GNU_SOURCE
++#undef _GNU_SOURCE
++#define _POSIX_C_SOURCE 200112L
++#endif
++
+ using std::string;
+ using std::vector;
+ using std::stringstream;
+--- a/simgear/package/md5.h
++++ b/simgear/package/md5.h
+@@ -20,9 +20,9 @@
+ #endif
+
+ #if defined(_MSC_VER)
+-typedef unsigned char u_int8_t;
+-typedef unsigned int u_int32_t;
+-typedef unsigned __int64 u_int64_t;
++typedef unsigned char uint8_t;
++typedef unsigned int uint32_t;
++typedef unsigned __int64 uint64_t;
+ #endif
+
+ #define MD5_BLOCK_LENGTH 64
+@@ -30,16 +30,16 @@
+ #define MD5_DIGEST_STRING_LENGTH (MD5_DIGEST_LENGTH * 2 + 1)
+
+ typedef struct MD5Context {
+- u_int32_t state[4]; /* state */
+- u_int64_t count; /* number of bits, mod 2^64 */
+- u_int8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */
++ uint32_t state[4]; /* state */
++ uint64_t count; /* number of bits, mod 2^64 */
++ uint8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */
+ } SG_MD5_CTX;
+
+ void SG_MD5Init(SG_MD5_CTX *);
+-void SG_MD5Update(SG_MD5_CTX *, const u_int8_t *, size_t);
++void SG_MD5Update(SG_MD5_CTX *, const uint8_t *, size_t);
+ void SG_MD5Pad(SG_MD5_CTX *);
+-void SG_MD5Final(u_int8_t [MD5_DIGEST_LENGTH], SG_MD5_CTX *);
+-void SG_MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH]);
++void SG_MD5Final(uint8_t [MD5_DIGEST_LENGTH], SG_MD5_CTX *);
++void SG_MD5Transform(uint32_t [4], const uint8_t [MD5_BLOCK_LENGTH]);
+
+ #ifdef __cplusplus
+ } // of extern C
+@@ -49,4 +49,4 @@
+
+
+
+-
+\ No newline at end of file
++