Changes between Initial Version and Version 1 of Ticket #12067


Ignore:
Timestamp:
05/16/2019 08:27:45 PM (6 years ago)
Author:
Bruce Dubbs
Comment:

Use triple { construct to get literal trac text.

I just built xine-lib without issue. Looking at /usr/include, there still is asoundlib.h, but it's contents are:

$ cat asoundlib.h
#warning This header is deprecated, use <alsa/asoundlib.h> instead.
#include <alsa/asoundlib.h>

I don't think a change is needed at this time. This should be worksforme, but I'll hold off for now.

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified Ticket #12067 – Description

    initial v1  
    11From the xine-devel list (reformatted with added blank lines to try to stop trac making it totally unreadable)
    22
     3{{{
    34# HG changeset patch
    4 
    55# User Xavier Bachelot <xavier@bachelot.org>
    6 
    76# Date 1557995649 -7200
    8 
    97#      Thu May 16 10:34:09 2019 +0200
    10 
    118# Node ID 673f6f42def382d02c6b75cfbce030f52e1bdaae
    12 
    139# Parent  a7e3e6825a9669e277965c1e6ab479cbfda04b0b
     10}}}
    1411
    1512Fix alsa headers include path
     
    2017https://www.alsa-project.org/wiki/Detailed_changes_v1.1.8_v1.1.9#.2Finclude.2FMakefile.am
    2118
     19{{{
    2220diff -r a7e3e6825a96 -r 673f6f42def3 src/audio_out/audio_alsa_out.c
    2321--- a/src/audio_out/audio_alsa_out.c    Wed May 15 17:34:15 2019 +0200
    2422+++ b/src/audio_out/audio_alsa_out.c    Thu May 16 10:34:09 2019 +0200
    2523@@ -44,7 +44,7 @@
    26 
    2724 #define ALSA_PCM_NEW_HW_PARAMS_API
    28 
    2925 #define ALSA_PCM_NEW_SW_PARAMS_API
    30 
    3126-#include <asoundlib.h>
    32 
    3327+#include <alsa/asoundlib.h>
    34 
    35 
    3628 #include <sys/ioctl.h>
    37 
    3829 #include <inttypes.h>
    39 
     30}}}
    4031
    4132I'm sure we can use a sed for that (I don't have 1.1.9 at the moment).