diff options
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-utils/uclibc-exp10-replacement.patch')
| -rw-r--r-- | meta/recipes-multimedia/alsa/alsa-utils/uclibc-exp10-replacement.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-utils/uclibc-exp10-replacement.patch b/meta/recipes-multimedia/alsa/alsa-utils/uclibc-exp10-replacement.patch new file mode 100644 index 0000000000..b2a9a956cc --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-utils/uclibc-exp10-replacement.patch | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | uclibc does not have exp10 function which is glibc extension. | ||
| 2 | Bur we can get the same behavior by using pow() | ||
| 3 | |||
| 4 | Upstream-Status: Pending | ||
| 5 | |||
| 6 | Khem Raj <raj.khem@gmail.com> | ||
| 7 | |||
| 8 | Index: alsa-utils-1.0.24.2/alsamixer/volume_mapping.c | ||
| 9 | =================================================================== | ||
| 10 | --- alsa-utils-1.0.24.2.orig/alsamixer/volume_mapping.c | ||
| 11 | +++ alsa-utils-1.0.24.2/alsamixer/volume_mapping.c | ||
| 12 | @@ -36,6 +36,9 @@ | ||
| 13 | #include <math.h> | ||
| 14 | #include <stdbool.h> | ||
| 15 | #include "volume_mapping.h" | ||
| 16 | +#ifdef __UCLIBC__ | ||
| 17 | +#define exp10(x) (pow(10, (x))) | ||
| 18 | +#endif /* __UCLIBC__ */ | ||
| 19 | |||
| 20 | #define MAX_LINEAR_DB_SCALE 24 | ||
| 21 | |||
