comparison configure.ac @ 1710:5dfa4fc721b0

Add dockalbumart plugin for MacOS. (this could also be ported to GNOME's AWN too.)
author William Pitcock <nenolod@atheme.org>
date Thu, 13 Sep 2007 12:09:38 -0500
parents ec4e8ec829b1
children 892deefba58d
comparison
equal deleted inserted replaced
1570:85788238cbf5 1710:5dfa4fc721b0
276 OUTPUT_PLUGINS="$OUTPUT_PLUGINS CoreAudio"], 276 OUTPUT_PLUGINS="$OUTPUT_PLUGINS CoreAudio"],
277 [have_coreaudio=no]) 277 [have_coreaudio=no])
278 else 278 else
279 AC_MSG_RESULT([*** CoreAudio output plugin disabled per user request ***]) 279 AC_MSG_RESULT([*** CoreAudio output plugin disabled per user request ***])
280 have_coreaudio=no 280 have_coreaudio=no
281 fi
282
283 dnl *** Dock Album Art (MacOS)
284
285 AC_ARG_ENABLE(dockalbumart,
286 [ --disable-dockalbumart disable MacOS dock albumart plugin (default=guess)],
287 [enable_dockalbumart=$enableval],
288 [enable_dockalbumart="yes"]
289 )
290
291 if test "$enable_dockalbumart" = "yes"; then
292 AC_CHECK_HEADERS([Carbon/Carbon.h],
293 [have_dockalbumart=yes
294 GENERAL_PLUGINS="$GENERAL_PLUGINS dockalbumart"],
295 [have_dockalbumart=no])
296 else
297 AC_MSG_RESULT([*** DockAlbumArt plugin disabled per user request ***])
298 have_dockalbumart=no
281 fi 299 fi
282 300
283 dnl *** AltiVec 301 dnl *** AltiVec
284 302
285 AC_ARG_ENABLE(altivec, 303 AC_ARG_ENABLE(altivec,
1546 echo " Control via event device (evdev-plug): $have_evdevplug" 1564 echo " Control via event device (evdev-plug): $have_evdevplug"
1547 echo " Global Hotkey Plugin: $have_hotkey" 1565 echo " Global Hotkey Plugin: $have_hotkey"
1548 echo " LIRC: $have_lirc" 1566 echo " LIRC: $have_lirc"
1549 echo " AudioScrobbler Client: $scrobbler" 1567 echo " AudioScrobbler Client: $scrobbler"
1550 echo " Upload to MTP device: $have_mtp_up" 1568 echo " Upload to MTP device: $have_mtp_up"
1569 echo " MacOS Dock Album Art plugin: $have_dockalbumart"
1551 echo 1570 echo
1552 echo " Effect" 1571 echo " Effect"
1553 echo " ------" 1572 echo " ------"
1554 echo " AudioCompressor (AGC): yes" 1573 echo " AudioCompressor (AGC): yes"
1555 echo " LADSPA effects host (ladspa): yes" 1574 echo " LADSPA effects host (ladspa): yes"