
7 changed files with 18 additions and 60 deletions
@ -1,3 +1,3 @@ |
|||
TIMESTAMP = 1697487219 |
|||
SHA256 (hoene-libmysofa-v1.3.2_GH0.tar.gz) = 6c5224562895977e87698a64cb7031361803d136057bba35ed4979b69ab4ba76 |
|||
SIZE (hoene-libmysofa-v1.3.2_GH0.tar.gz) = 208753292 |
|||
TIMESTAMP = 1729476519 |
|||
SHA256 (hoene-libmysofa-v1.3.3_GH0.tar.gz) = a15f7236a2b492f8d8da69f6c71b5bde1ef1bac0ef428b94dfca1cabcb24c84f |
|||
SIZE (hoene-libmysofa-v1.3.3_GH0.tar.gz) = 208753723 |
|||
|
@ -1,13 +1,14 @@ |
|||
Undo bashism added upstream in a5a3562. The built-in 'command' command of |
|||
sh(1) does not take multiple arguments. |
|||
--- tests/compare.sh.orig 2022-02-14 10:05:41 UTC |
|||
|
|||
--- tests/compare.sh.orig 2024-10-19 19:02:44 UTC |
|||
+++ tests/compare.sh |
|||
@@ -1,7 +1,7 @@ |
|||
@@ -1,7 +1,7 @@ SCRIPTDIR=${0%/*} |
|||
#!/bin/sh |
|||
|
|||
SCRIPTDIR=${0%/*} |
|||
-NODEJS=$(command -v node nodejs false | head -1) |
|||
+NODEJS=$(which node nodejs false | head -1) |
|||
|
|||
${MYSOFA2JSON:-${SCRIPTDIR}/../build/src/mysofa2json} -c -s "$1".sofa >tmp1.json 2>tmp1.txt |
|||
|
|||
TMP1=`mktemp -p . tmp1-XXXXXXXX.json` |
|||
TMP2=`mktemp -p . tmp2-XXXXXXXX.txt` |
|||
TMP3=`mktemp -p . tmp3-XXXXXXXX.json` |
|||
|
@ -1,13 +1,14 @@ |
|||
Undo bashism added upstream in a5a3562. The built-in 'command' command of |
|||
sh(1) does not take multiple arguments. |
|||
--- tests/compareIgnoreNew.sh.orig 2022-02-14 10:05:54 UTC |
|||
|
|||
--- tests/compareIgnoreNew.sh.orig 2024-10-19 19:02:44 UTC |
|||
+++ tests/compareIgnoreNew.sh |
|||
@@ -1,7 +1,7 @@ |
|||
@@ -1,7 +1,7 @@ SCRIPTDIR=${0%/*} |
|||
#!/bin/sh |
|||
|
|||
SCRIPTDIR=${0%/*} |
|||
-NODEJS=$(command -v node nodejs false | head -1) |
|||
+NODEJS=$(which node nodejs false | head -1) |
|||
|
|||
${MYSOFA2JSON:-${SCRIPTDIR}/../build/src/mysofa2json} -c -s "$1".sofa >tmp1.json 2>tmp1.txt |
|||
|
|||
TMP1=`mktemp -p . tmp1-XXXXXXXX.json` |
|||
TMP2=`mktemp -p . tmp2-XXXXXXXX.txt` |
|||
TMP3=`mktemp -p . tmp3-XXXXXXXX.json` |
|||
|
@ -1,15 +0,0 @@ |
|||
Install header if STATIC option is disabled. |
|||
|
|||
https://github.com/hoene/libmysofa/pull/214 |
|||
|
|||
--- src/CMakeLists.txt.orig 2023-10-15 10:30:14 UTC |
|||
+++ src/CMakeLists.txt |
|||
@@ -127,6 +127,8 @@ if(BUILD_SHARED_LIBS) |
|||
# with the mysofa-static library. |
|||
set_target_properties(mysofa-shared |
|||
PROPERTIES ARCHIVE_OUTPUT_NAME mysofa_shared) |
|||
+ set_target_properties(mysofa-shared |
|||
+ PROPERTIES PUBLIC_HEADER "${public-headers}") |
|||
|
|||
set_property( |
|||
TARGET mysofa-shared |
@ -1,30 +0,0 @@ |
|||
Fix linking on FreeBSD and DragonFly. |
|||
|
|||
https://github.com/hoene/libmysofa/pull/213
|
|||
|
|||
--- src/hrtf/portable_endian.h.orig 2023-10-17 18:48:34 UTC |
|||
+++ src/hrtf/portable_endian.h |
|||
@@ -41,22 +41,9 @@ |
|||
# define __LITTLE_ENDIAN LITTLE_ENDIAN |
|||
# define __PDP_ENDIAN PDP_ENDIAN |
|||
|
|||
-#elif defined(__OpenBSD__) |
|||
+#elif defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) |
|||
|
|||
# include <sys/endian.h> |
|||
- |
|||
-#elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) |
|||
- |
|||
-# include <sys/endian.h> |
|||
- |
|||
-# define be16toh(x) betoh16(x) |
|||
-# define le16toh(x) letoh16(x) |
|||
- |
|||
-# define be32toh(x) betoh32(x) |
|||
-# define le32toh(x) letoh32(x) |
|||
- |
|||
-# define be64toh(x) betoh64(x) |
|||
-# define le64toh(x) letoh64(x) |
|||
|
|||
#elif defined(__WINDOWS__) |
|||
|
Loading…
Reference in new issue