Changeset 1332

Show
Ignore:
Timestamp:
02/04/08 17:21:35 (7 months ago)
Author:
aknudsen
Message:

From Peter Grayson: fix pkg-config when using ALSA

Location:
portaudio/branches/v19-devel
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • portaudio/branches/v19-devel/configure

    r1330 r1332  
    2171721717        if [ $have_alsa = "yes" ] && [ $with_alsa != "no" ] ; then 
    2171821718           DLL_LIBS="$DLL_LIBS -lasound" 
     21719           LIBS="$LIBS -lasound" 
    2171921720           OTHER_OBJS="$OTHER_OBJS src/hostapi/alsa/pa_linux_alsa.o" 
    2172021721           cat >>confdefs.h <<\_ACEOF 
  • portaudio/branches/v19-devel/configure.in

    r1330 r1332  
    300300        if [[ $have_alsa = "yes" ] && [ $with_alsa != "no" ]] ; then 
    301301           DLL_LIBS="$DLL_LIBS -lasound" 
     302           LIBS="$LIBS -lasound" 
    302303           OTHER_OBJS="$OTHER_OBJS src/hostapi/alsa/pa_linux_alsa.o" 
    303304           AC_DEFINE(PA_USE_ALSA)