mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
upgrade freeswitch to version 1.6.15 and fix patches that were not applying correctly due to code changes.
19 lines
602 B
Diff
19 lines
602 B
Diff
diff --git a/src/mod/applications/mod_avmd/avmd_desa2_tweaked.c b/src/mod/applications/mod_avmd/avmd_desa2_tweaked.c
|
|
index 6bf0b41..7ef31f7 100644
|
|
--- a/src/mod/applications/mod_avmd/avmd_desa2_tweaked.c
|
|
+++ b/src/mod/applications/mod_avmd/avmd_desa2_tweaked.c
|
|
@@ -16,10 +16,9 @@
|
|
#define ISNAN(x) (!!(_isnan(x)))
|
|
#define ISINF(x) (isinf(x))
|
|
#else
|
|
- int __isnan(double);
|
|
- int __isinf(double);
|
|
- #define ISNAN(x) (__isnan(x))
|
|
- #define ISINF(x) (__isinf(x))
|
|
+ #include <math.h>
|
|
+ #define ISNAN(x) (isnan(x))
|
|
+ #define ISINF(x) (isinf(x))
|
|
#endif
|
|
|
|
#include "avmd_buffer.h"
|