Changes between Initial Version and Version 1 of Ticket #12067
- Timestamp:
- 05/16/2019 08:27:45 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Ticket #12067 – Description
initial v1 1 1 From the xine-devel list (reformatted with added blank lines to try to stop trac making it totally unreadable) 2 2 3 {{{ 3 4 # HG changeset patch 4 5 5 # User Xavier Bachelot <xavier@bachelot.org> 6 7 6 # Date 1557995649 -7200 8 9 7 # Thu May 16 10:34:09 2019 +0200 10 11 8 # Node ID 673f6f42def382d02c6b75cfbce030f52e1bdaae 12 13 9 # Parent a7e3e6825a9669e277965c1e6ab479cbfda04b0b 10 }}} 14 11 15 12 Fix alsa headers include path … … 20 17 https://www.alsa-project.org/wiki/Detailed_changes_v1.1.8_v1.1.9#.2Finclude.2FMakefile.am 21 18 19 {{{ 22 20 diff -r a7e3e6825a96 -r 673f6f42def3 src/audio_out/audio_alsa_out.c 23 21 --- a/src/audio_out/audio_alsa_out.c Wed May 15 17:34:15 2019 +0200 24 22 +++ b/src/audio_out/audio_alsa_out.c Thu May 16 10:34:09 2019 +0200 25 23 @@ -44,7 +44,7 @@ 26 27 24 #define ALSA_PCM_NEW_HW_PARAMS_API 28 29 25 #define ALSA_PCM_NEW_SW_PARAMS_API 30 31 26 -#include <asoundlib.h> 32 33 27 +#include <alsa/asoundlib.h> 34 35 36 28 #include <sys/ioctl.h> 37 38 29 #include <inttypes.h> 39 30 }}} 40 31 41 32 I'm sure we can use a sed for that (I don't have 1.1.9 at the moment).