/[svn]/linuxsampler/trunk/configure.ac
ViewVC logotype

Diff of /linuxsampler/trunk/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1800 by schoenebeck, Sun Dec 7 01:26:46 2008 UTC revision 1829 by iliev, Fri Jan 30 19:22:36 2009 UTC
# Line 415  fi Line 415  fi
415  AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")  AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")
416  AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])  AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])
417    
418    # CoreAudio (OS X)
419    AC_ARG_ENABLE(coreaudio-driver,
420      [  --disable-coreaudio-driver
421                              Disable support for the Apple CoreAudio system.],
422      [config_coreaudio_driver="$enableval"],
423      [config_coreaudio_driver="yes"]
424    )
425    have_coreaudio=0
426    if test "$config_coreaudio_driver" = "yes"; then
427        AC_CHECK_HEADER(CoreAudio/CoreAudio.h,
428            have_coreaudio=1,
429            have_coreaudio=0
430        )
431        if test "$have_coreaudio" = "1"; then
432            have_audio_output_driver="true"
433        fi
434    else
435        echo "CoreAudio support disabled by configure script parameter"
436    fi
437    AM_CONDITIONAL(HAVE_COREAUDIO, test $have_coreaudio = "1")
438    AC_DEFINE_UNQUOTED(HAVE_COREAUDIO,$have_coreaudio,[Define to 1 if you have CoreAudio installed.])
439    
440  # MME MIDI (Win32)  # MME MIDI (Win32)
441  AC_ARG_ENABLE(mmemidi-driver,  AC_ARG_ENABLE(mmemidi-driver,
442    [  --disable-mmemidi-driver    [  --disable-mmemidi-driver

Legend:
Removed from v.1800  
changed lines
  Added in v.1829

  ViewVC Help
Powered by ViewVC