alsa-lib: fix a stdint.h problem
This commit is contained in:
parent
e6b245a3ee
commit
bc4e786187
@ -14,8 +14,13 @@ stdenv.mkDerivation rec {
|
|||||||
configureFlags = "--disable-xmlto";
|
configureFlags = "--disable-xmlto";
|
||||||
|
|
||||||
# Fix pcm.h file in order to prevent some compilation bugs
|
# Fix pcm.h file in order to prevent some compilation bugs
|
||||||
|
# 2: see http://stackoverflow.com/questions/3103400/how-to-overcome-u-int8-t-vs-uint8-t-issue-efficiently
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
sed -i -e 's|//int snd_pcm_mixer_element(snd_pcm_t \*pcm, snd_mixer_t \*mixer, snd_mixer_elem_t \*\*elem);|/\*int snd_pcm_mixer_element(snd_pcm_t \*pcm, snd_mixer_t \*mixer, snd_mixer_elem_t \*\*elem);\*/|' include/pcm.h
|
sed -i -e 's|//int snd_pcm_mixer_element(snd_pcm_t \*pcm, snd_mixer_t \*mixer, snd_mixer_elem_t \*\*elem);|/\*int snd_pcm_mixer_element(snd_pcm_t \*pcm, snd_mixer_t \*mixer, snd_mixer_elem_t \*\*elem);\*/|' include/pcm.h
|
||||||
|
|
||||||
|
|
||||||
|
sed -i -e '1i#include <stdint.h>' include/pcm.h
|
||||||
|
sed -i -e 's/u_int\([0-9]*\)_t/uint\1_t/g' include/pcm.h
|
||||||
'';
|
'';
|
||||||
|
|
||||||
crossAttrs = {
|
crossAttrs = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user