comparison configure.ac @ 579:22a80841acd0 trunk

[svn] - added audacious osd in configure.ac
author giacomo
date Tue, 30 Jan 2007 08:24:40 -0800
parents 550c9e382cf8
children 70f3b14434b2
comparison
equal deleted inserted replaced
578:550c9e382cf8 579:22a80841acd0
391 have_statusicon="yes" 391 have_statusicon="yes"
392 fi 392 fi
393 393
394 if test "x$have_statusicon" = "xyes"; then 394 if test "x$have_statusicon" = "xyes"; then
395 GENERAL_PLUGINS="$GENERAL_PLUGINS statusicon" 395 GENERAL_PLUGINS="$GENERAL_PLUGINS statusicon"
396 fi
397
398 dnl *** Audacious OSD plugin (pangocairo-based)
399
400 AC_ARG_ENABLE(aosd,
401 [ --disable-aosd disable X11 Audacious OSD plugin (default=enabled)],
402 [enable_aosd=$enableval],
403 [enable_aosd="yes"]
404 )
405
406 if test "x$enable_aosd" = "xyes"; then
407 have_aosd="yes"
408 PKG_CHECK_MODULES(PANGO,[pango >= 1.14.7],,
409 [have_aosd="no"
410 AC_MSG_RESULT([*** pango >= 1.14.7 is required for Audacious OSD plugin ***])]
411 )
412 PKG_CHECK_MODULES(CAIRO,[cairo >= 1.2.6],,
413 [have_aosd="no"
414 AC_MSG_RESULT([*** cairo >= 1.2.6 is required for Audacious OSD plugin ***])]
415 )
416 PKG_CHECK_MODULES(PANGOCAIRO,[pangocairo >= 1.14.7],,
417 [have_aosd="no"
418 AC_MSG_RESULT([*** pangocairo >= 1.14.7 is required for Audacious OSD plugin ***])]
419 )
420 else
421 AC_MSG_RESULT([*** Audacious OSD plugin disabled per user request ***])
422 have_aosd="yes"
423 fi
424
425 if test "x$have_aosd" = "xyes"; then
426 GENERAL_PLUGINS="$GENERAL_PLUGINS aosd"
396 fi 427 fi
397 428
398 dnl *** AdPlug requirement (libbinio) 429 dnl *** AdPlug requirement (libbinio)
399 430
400 AC_ARG_ENABLE(adplug, 431 AC_ARG_ENABLE(adplug,
1206 echo " General" 1237 echo " General"
1207 echo " -------" 1238 echo " -------"
1208 echo " Alarm: yes" 1239 echo " Alarm: yes"
1209 echo " Song Change: yes" 1240 echo " Song Change: yes"
1210 echo " Status Icon: $have_statusicon" 1241 echo " Status Icon: $have_statusicon"
1242 echo " Audacious OSD: $have_aosd"
1211 echo " Control via event device (evdev-plug): $have_evdevplug" 1243 echo " Control via event device (evdev-plug): $have_evdevplug"
1212 echo " LIRC: $have_lirc" 1244 echo " LIRC: $have_lirc"
1213 echo " AudioScrobbler Client: $scrobbler" 1245 echo " AudioScrobbler Client: $scrobbler"
1214 echo 1246 echo
1215 echo " Effect" 1247 echo " Effect"