Ticket #1215: vlc-0.8.6-pulse-fixes.patch

File vlc-0.8.6-pulse-fixes.patch, 1.2 kB (added by coling, 7 months ago)

Some additional fixes to be applied after this patch to build on 0.8.6d. YMMV :)

  • configure.ac

    old new  
    41584158dnl 
    41594159AC_ARG_ENABLE(pulse, 
    41604160  [  --enable-pulse          Pulseaudio support (default disabled)], 
    4161   [ 
    4162     if test "x$enable_pulse" != "xno"; then 
    4163     PKG_CHECK_MODULES([PULSEAUDIO], [libpulse], [ 
    4164        VLC_ADD_PLUGINS([pulse]) 
    4165        VLC_ADD_CFLAGS([pulse],[`pkg-config --cflags libpulse`]) 
    4166        VLC_ADD_LIBS([pulse],[`pkg-config --libs libpulse`]) 
    4167      ], [ 
    4168     AS_IF([test "${enable_pulse}" = "yes"],[ 
    4169         AC_MSG_WARN( libpulse not found)  
    4170        ]) 
    4171     ]) 
     4161  [if test "${enable_pulse}" = "yes" 
     4162   then 
     4163     PKG_CHECK_MODULES(PULSE, libpulse, 
     4164       [ VLC_ADD_PLUGINS([pulse]) 
     4165        VLC_ADD_CFLAGS([pulse],[${PULSE_CFLAGS}]) 
     4166        VLC_ADD_LDFLAGS([pulse],[${PULSE_LIBS}])]:, 
     4167       [AC_MSG_WARN(pulsaudio library not found)]) 
    41724168   fi]) 
    41734169 
    41744170dnl