1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
|
dnl ***
dnl *** Process this file with autoconf to produce a configure script.
dnl ***
dnl Initialize
dnl ==========
AC_PREREQ([2.59])
AC_INIT([audacious-plugins], [3.5])
AC_COPYRIGHT([(C) 2005-2014 Audacious Team])
AC_DEFINE_UNQUOTED([PACKAGE], "$PACKAGE_NAME", [Name of package])
AC_DEFINE_UNQUOTED([VERSION], "$PACKAGE_VERSION", [Version number of package])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AUD_COMMON_PROGS
BUILDSYS_SHARED_LIB
dnl Headers and functions
dnl =====================
AC_CHECK_FUNCS([mkdtemp])
dnl gettext
dnl =======
AM_GNU_GETTEXT([external])
if test "$MSGFMT" = ":" ; then
AC_MSG_ERROR([msgfmt was not found; have you installed gettext?])
fi
LIBS="$LIBS $LIBINTL"
dnl Check for Audacious
dnl ===================
PKG_CHECK_MODULES(AUDACIOUS, [audacious >= 3.5],
[],
[AC_MSG_ERROR([Cannot find Audacious 3.5; have you installed Audacious yet?])]
)
CPPFLAGS="$CPPFLAGS $AUDACIOUS_CFLAGS"
LIBS="$LIBS $AUDACIOUS_LIBS"
dnl Check for libxml2 (required to load XSPF playlists from previous versions)
dnl ==========================================================================
PKG_CHECK_MODULES([XML], [libxml-2.0])
dnl Default Set of Plugins
dnl ======================
INPUT_PLUGINS="tonegen metronom vtx"
OUTPUT_PLUGINS=""
EFFECT_PLUGINS="compressor crossfade crystalizer ladspa mixer stereo_plugin voice_removal echo_plugin"
GENERAL_PLUGINS="alarm albumart delete-files search-tool"
VISUALIZATION_PLUGINS="blur_scope cairo-spectrum"
CONTAINER_PLUGINS="asx asx3 audpl m3u pls xspf"
TRANSPORT_PLUGINS="gio"
dnl Console
dnl =======
AC_ARG_ENABLE(console,
[AS_HELP_STRING([--disable-console], [disable game music decoder (console)])],
[enable_console=$enableval], [enable_console=auto])
have_console=no
if test "x$enable_console" != "xno"; then
AC_CHECK_HEADERS([zlib.h],
[have_console=yes
INPUT_PLUGINS="$INPUT_PLUGINS console"],
[if test "x$enable_console" = "xyes"; then
AC_MSG_ERROR([Cannot find zlib development files, but compilation of game music decoder (console) has been explicitly requested; please install zlib dev files and run configure again])
fi]
)
fi
dnl XSF
dnl =======
AC_ARG_ENABLE(xsf,
[AS_HELP_STRING([--disable-xsf], [disable Nintendo DS audio decoder (xsf)])],
[enable_xsf=$enableval], [enable_xsf="yes"])
if test "x$enable_xsf" != "xno"; then
INPUT_PLUGINS="$INPUT_PLUGINS xsf"
fi
dnl PulseAudio
dnl ==========
AC_ARG_ENABLE( pulse,
[AS_HELP_STRING([--disable-pulse], [disable PulseAudio output plugin (default=enabled)])],
[enable_pulse=$enableval],
[enable_pulse=auto]
)
have_pulse=no
if test "x$enable_pulse" != "xno"; then
PKG_CHECK_MODULES(PULSE, [libpulse >= 0.9.5],
[have_pulse=yes
OUTPUT_PLUGINS="$OUTPUT_PLUGINS pulse_audio"],
[if test "x$enable_pulse" = "xyes"; then
AC_MSG_ERROR([Cannot find PulseAudio development files (ver >= 0.95), but compilation of PulseAudio output plugin has been explicitly requested; please install PulseAudio dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** pulseaudio output plugin disabled per user request ***])
fi
dnl PSF
dnl ===
AC_ARG_ENABLE(psf,
[AS_HELP_STRING([--disable-psf], [disable PlayStation (psf/psf2) audio decoder])],
[enable_psf=$enableval],
[enable_psf=yes])
if test "x$enable_psf" != "xno"; then
INPUT_PLUGINS="$INPUT_PLUGINS psf"
fi
dnl *** MP3
AC_ARG_ENABLE(mp3,
[AS_HELP_STRING([--disable-mp3], [disable MP3 plugin (default=enabled)])],
[enable_mp3=$enableval], [enable_mp3=auto])
have_mp3=no
if test "x$enable_mp3" != "xno"; then
PKG_CHECK_MODULES(MPG123, [libmpg123 >= 1.12],
[have_mp3=yes
INPUT_PLUGINS="$INPUT_PLUGINS mpg123"],
[if test "x$enable_mp3" = "xyes"; then
AC_MSG_ERROR([Cannot find libmpg123 development files (ver >= 1.12), but compilation of MP3 plugin has been explicitly requested; please install libmpg123 dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** libmpg123 not found; MP3 plugin disabled])
fi
dnl *** Global Hotkey general plugin (only built on X11)
AC_ARG_ENABLE(hotkey,
[AS_HELP_STRING([--disable-hotkey], [disable global hotkey plugin (default=enabled)])],
[enable_hotkey=$enableval],
[enable_hotkey=auto]
)
have_hotkey=no
if test "x$enable_hotkey" != "xno"; then
PKG_CHECK_MODULES(GDKX11, [gdk-x11-3.0],
[have_hotkey="yes"
GENERAL_PLUGINS="$GENERAL_PLUGINS hotkey"],
[if test "x$enable_hotkey" = "xyes"; then
AC_MSG_ERROR([Cannot find gdk-x11-3.0 development files, but compilation of X11 Global Hotkey plugin has been explicitly requested; please install gdk-x11-3.0 dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** X11 Global Hotkey plugin disabled per user request ***])
fi
dnl *** Gnome Shortcuts Plugin
AC_ARG_ENABLE(gnomeshortcuts,
[AS_HELP_STRING([--disable-gnomeshortcuts], [disable gnome shortcuts (default=enabled)])],
[enable_gnomeshortcuts=$enableval],
[enable_gnomeshortcuts=auto]
)
have_gnomeshortcuts=no
if test "x$enable_gnomeshortcuts" != "xno"; then
PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60 dbus-glib-1 >= 0.60],
[have_gnomeshortcuts=yes
GENERAL_PLUGINS="$GENERAL_PLUGINS gnomeshortcuts"],
[if test "x$enable_gnomeshortcuts" = "xyes"; then
AC_MSG_ERROR([Cannot find dbus or dbus-glib development files (ver >= 0.60), but compilation of Gnome Shortcuts Plugin has been explicitly requested; please install dbus and dbus-glib dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** Gnome Shortcuts Plugin disabled per user request ***])
fi
dnl Linux Infrared Remote Control (LIRC)
dnl ====================================
AC_ARG_ENABLE(lirc,
[AS_HELP_STRING([--disable-lirc], [disable LIRC support (default=enabled)])],
[enable_lirc=$enableval], [enable_lirc=auto])
have_lirc=no
if test "x$enable_lirc" != "xno"; then
AC_CHECK_HEADERS([lirc/lirc_client.h],
[have_lirc=yes
GENERAL_PLUGINS="$GENERAL_PLUGINS lirc"],
[if test "x$enable_lirc" = "xyes"; then
AC_MSG_ERROR([Cannot find lirc development files, but compilation of LIRC support has been explicitly requested; please install lirc dev files and run configure again])
fi])
fi
dnl Song Change
dnl ===========
AC_ARG_ENABLE(songchange,
[AS_HELP_STRING([--disable-songchange], [disable song change plugin])],
[enable_songchange=$enableval], [enable_songchange=auto])
have_songchange=no
if test "x$enable_songchange" != "xno"; then
AC_CHECK_HEADERS([sys/wait.h],
[have_songchange=yes
GENERAL_PLUGINS="$GENERAL_PLUGINS song_change"],
[if test "x$enable_songchange" = "xyes"; then
AC_MSG_ERROR([Cannot find sys/wait.h header, but compilation of song change plugin has been explicitly requested])
fi]
)
fi
dnl Status Icon
dnl ===========
AC_ARG_ENABLE(statusicon,
[AS_HELP_STRING([--disable-statusicon], [disable X11 Status Icon plugin (default=enabled)])],
[have_statusicon=$enableval], [have_statusicon="yes"])
if test "x$have_statusicon" != "xno"; then
GENERAL_PLUGINS="$GENERAL_PLUGINS statusicon"
fi
dnl *** Audacious OSD plugin (pangocairo-based)
AC_ARG_ENABLE(aosd,
[AS_HELP_STRING([--disable-aosd], [disable Audacious OSD plugin (default=enabled)])],
[enable_aosd=$enableval],
[enable_aosd=auto]
)
have_aosd=no
if test "x$enable_aosd" != "xno"; then
PKG_CHECK_MODULES(XRENDER, [xrender],
[have_aosd=yes
GENERAL_PLUGINS="$GENERAL_PLUGINS aosd"],
[AC_MSG_RESULT([*** X Render extension is required for Audacious OSD plugin ***])]
)
if test "x$enable_aosd" = "xyes" -a "x$have_aosd" != "xyes"; then
AC_MSG_ERROR([Compilation of OSD plugin has been explicitly requested; please install required dev files and run configure again])
fi
else
AC_MSG_RESULT([*** Audacious OSD plugin disabled per user request ***])
fi
AC_ARG_ENABLE(aosd_xcomp,
[AS_HELP_STRING([--disable-aosd-xcomp], [disable Audacious OSD X Composite Support (default=enabled)])],
[enable_aosd_xcomp=$enableval],
[enable_aosd_xcomp=auto]
)
if test "x$have_aosd" != "xyes"; then
if test "x$enable_aosd_xcomp" = "xyes"; then
AC_MSG_ERROR([Cannot enable X Composite support for Audacious OSD plugin which is disabled])
else
enable_aosd_xcomp=no
fi
fi
have_aosd_xcomp=no
if test "x$enable_aosd_xcomp" != "xno"; then
PKG_CHECK_MODULES(XCOMPOSITE, [xcomposite],
[have_aosd_xcomp=yes
AC_DEFINE([HAVE_XCOMPOSITE],[],[X Composite extension available])],
[if test "x$enable_aosd_xcomp" = "xyes"; then
AC_MSG_ERROR([Cannot find X Composite development files, but compilation of X Composite support for Audacious OSD plugin has been explicitly requested; please install X Composite dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** X Composite support for Audacious OSD plugin disabled per user request ***])
fi
dnl notify: libnotify-based OSD
dnl ===========================
AC_ARG_ENABLE(notify,
[AS_HELP_STRING([--disable-notify], [disable notify plugin (default=enabled)])],
[enable_notify=$enableval], [enable_notify=auto])
have_notify=no
if test "x$enable_notify" != "xno"; then
PKG_CHECK_MODULES(NOTIFY, [libnotify >= 0.7],
[have_notify=yes
GENERAL_PLUGINS="$GENERAL_PLUGINS notify"],
[if test "x$enable_notify" = "xyes"; then
AC_MSG_ERROR([Cannot find libnotify development files (ver >= 0.7), but compilation of notify plugin has been explicitly requested; please install libnotify dev files and run configure again])
fi]
)
fi
dnl MPRIS 2 (requires GDBus)
dnl ========================
AC_ARG_ENABLE(mpris2,
AS_HELP_STRING(--disable-mpris2, [disable MPRIS 2 support (default=auto)]),
enable_mpris2=$enableval, enable_mpris2=auto)
if test $enable_mpris2 = no ; then
have_mpris2=no
else
AC_CHECK_PROG(have_mpris2, gdbus-codegen, yes, no)
if test $have_mpris2 = yes ; then
GENERAL_PLUGINS="$GENERAL_PLUGINS mpris2"
elif test $enable_mpris2 = yes ; then
AC_MSG_ERROR([MPRIS 2 plugin could not be enabled; check config.log])
fi
fi
dnl *** AdPlug requirement (libbinio)
AC_ARG_ENABLE(adplug,
[AS_HELP_STRING([--disable-adplug], [disable AdPlug plugin (default=enabled)])],
[enable_adplug=$enableval],
[enable_adplug=auto]
)
have_adplug=no
if test "x$enable_adplug" != "xno"; then
PKG_CHECK_MODULES(BINIO, [libbinio >= 1.4],
[have_adplug=yes
INPUT_PLUGINS="$INPUT_PLUGINS adplug"
AC_SUBST(BINIO_CFLAGS)],
[if test "x$enable_adplug" = "xyes"; then
AC_MSG_ERROR([Cannot find libbinio development files (ver >= 1.4), but compilation of AdPlug plugin has been explicitly requested; please install libbinio dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** AdPlug plugin disabled per user request ***])
fi
dnl Ogg Vorbis
dnl ==========
dnl This test is reused later to enable/disable Vorbis support in filewriter.
AC_ARG_ENABLE(vorbis,
[AS_HELP_STRING([--disable-vorbis], [disable Ogg Vorbis decoding and encoding])],
[enable_vorbis=$enableval], [enable_vorbis=auto])
have_vorbis=no
if test "x$enable_vorbis" != "xno"; then
PKG_CHECK_MODULES(VORBIS, [ogg >= 1.0 vorbis >= 1.0 vorbisenc >= 1.0 vorbisfile >= 1.0],
[have_vorbis=yes
INPUT_PLUGINS="$INPUT_PLUGINS vorbis"],
[if test "x$enable_vorbis" = "xyes"; then
AC_MSG_ERROR([Cannot find ogg, vorbis, vorbisenc or vorbisfile development files (ver >= 1.0), but compilation of Ogg Vorbis decoding and encoding has been explicitly requested; please install ogg, vorbis, vorbisenc and vorbisfile dev files and run configure again])
fi]
)
fi
dnl FLAC
dnl ====
AC_ARG_ENABLE(flacng,
[AS_HELP_STRING([--disable-flacng], [disable flac input plugin (default=enabled)])],
[enable_flacng=$enableval],
[enable_flacng=auto]
)
have_flacng=no
if test "x$enable_flacng" != "xno"; then
PKG_CHECK_MODULES(LIBFLAC, [flac >= 1.2.1],
[have_flacng=yes
INPUT_PLUGINS="$INPUT_PLUGINS flacng"],
[if test "x$enable_flacng" = "xyes"; then
AC_MSG_ERROR([Cannot find libFLAC development files (ver >= 1.2.1), but compilation of FLACng plugin has been explicitly requested; please install libFLAC dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** FLACng plugin disabled per user request ***])
fi
dnl *** WavPack 4.31 support
AC_ARG_ENABLE(wavpack,
[AS_HELP_STRING([--disable-wavpack], [disable WavPack input plugin (default=enabled)])],
[enable_wavpack=$enableval],
[enable_wavpack=auto]
)
have_wavpack=no
if test "x$enable_wavpack" != "xno"; then
PKG_CHECK_MODULES(WAVPACK, [wavpack >= 4.31],
[have_wavpack=yes
INPUT_PLUGINS="$INPUT_PLUGINS wavpack"],
[if test "x$enable_wavpack" = "xyes"; then
AC_MSG_ERROR([Cannot find WavPack development files (ver >= 4.31), but compilation of WavPack plugin has been explicitly requested; please install WavPack dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** WavPack plugin disabled per user request ***])
fi
dnl *** AAC
AC_ARG_ENABLE(aac,
[AS_HELP_STRING([--disable-aac], [disable aac plugin (default=enabled)])],
[enable_aac=$enableval],
[enable_aac=auto]
)
have_aac=no
if test "x$enable_aac" != "xno"; then
FAAD_LIBS="-lfaad"
FAAD_CFLAGS=
AC_CHECK_HEADER([faad.h],
[AC_CHECK_DECL([FAAD2_VERSION],
[AC_CHECK_DECL([NeAACDecInit2],
[AC_CHECK_LIB([faad],[NeAACDecInit2],
[have_aac=yes
AC_SUBST(FAAD_CFLAGS)
AC_SUBST(FAAD_LIBS)
INPUT_PLUGINS="$INPUT_PLUGINS aac aac-raw"])],
[], [#include <neaacdec.h>])],
[], [#include <neaacdec.h>])]
)
if test "x$enable_aac" = "xyes" -a "x$have_aac" != "xyes"; then
AC_MSG_ERROR([Cannot find faad development files, but compilation of aac plugin has been explicitly requested; please install faad dev files and run configure again])
fi
fi
dnl *** sndfile
AC_ARG_ENABLE(sndfile,
[AS_HELP_STRING([--disable-sndfile], [disable sndfile extensions. [default=enabled]])],
[enable_sndfile=$enableval],
[enable_sndfile=auto]
)
have_sndfile=no
if test "x$enable_sndfile" != "xno"; then
PKG_CHECK_MODULES(SNDFILE, [sndfile >= 0.19],
[have_sndfile=yes
INPUT_PLUGINS="$INPUT_PLUGINS sndfile"],
[if test "x$enable_sndfile" = "xyes"; then
AC_MSG_ERROR([Cannot find libsndfile development files (ver >= 0.19), but compilation of libsndfile extensions has been explicitly requested; please install libsndfile dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** libsndfile extensions disabled per user request ***])
fi
dnl *** modplug
AC_ARG_ENABLE(modplug,
[AS_HELP_STRING([--disable-modplug], [disable ModPlug plugin (default=enabled)])],
[enable_modplug=$enableval],
[enable_modplug=auto]
)
have_modplug=no
if test "x$enable_modplug" != "xno"; then
PKG_CHECK_MODULES(MODPLUG, [libmodplug],
[INPUT_PLUGINS="$INPUT_PLUGINS modplug"
have_modplug=yes],
[if test "x$enable_modplug" = "xyes"; then
AC_MSG_ERROR([Cannot find libmodplug development files, but compilation of ModPlug plugin has been explicitly requested; please install libmodplug dev files and run configure again])
fi]
)
fi
dnl *** FFaudio
AC_ARG_ENABLE(ffaudio,
[AS_HELP_STRING([--disable-ffaudio], [disable ffaudio plugin (default=enabled)])],
[enable_ffaudio=$enableval],
[enable_ffaudio=auto]
)
have_ffaudio=no
if test "x$enable_ffaudio" != "xno"; then
PKG_CHECK_MODULES([FFMPEG], [libavcodec >= 53.40.0 libavformat >= 53.5.0 libavutil >= 50.42.0],
[have_ffaudio=yes
INPUT_PLUGINS="$INPUT_PLUGINS ffaudio"],
[if test "x$enable_ffaudio" = "xyes"; then
AC_MSG_ERROR([Cannot find FFmpeg development files (libavcodec ver >= 53.40.0, libavformat ver >= 53.5.0, libavutil ver >= 50.42.0), but compilation of ffaudio plugin has been explicitly requested; please install FFmpeg dev files and run configure again])
fi]
)
fi
dnl *** jack output plugin
AC_ARG_ENABLE(jack,
[AS_HELP_STRING([--disable-jack], [disable JACK output plugin (default=enabled)])],
[enable_jack=$enableval], [enable_jack=auto])
have_jack=no
if test "x$enable_jack" != "xno"; then
PKG_CHECK_MODULES(JACK, [jack >= 1.9.7],
[have_jack=yes],
[PKG_CHECK_MODULES(JACK, [jack >= 0.120.1 jack < 1.0],
[have_jack=yes],
[have_jack=no])]
)
if test "x$have_jack" = "xyes"; then
PKG_CHECK_MODULES([SAMPLERATE], [samplerate],
[], [have_jack=no]
)
fi
if test "x$have_jack" = "xyes"; then
OUTPUT_PLUGINS="$OUTPUT_PLUGINS jack"
elif test "x$enable_jack" = "xyes"; then
AC_MSG_ERROR([Cannot find JACK (ver >= 0.120.1 but < 1.0 or >= 1.9.7) or libsamplerate development files, but compilation of JACK output plugin has been explicitly requested; please install JACK and libsamplerate dev files and run configure again])
fi
fi
dnl *** sid
AC_ARG_ENABLE(sid,
[AS_HELP_STRING([--disable-sid], [disable SID input plugin (default=enabled)])],
[enable_sid=$enableval], [enable_sid=auto])
have_sidplay=no
if test "x$enable_sid" != "xno"; then
PKG_CHECK_MODULES([SIDPLAYFP], [libsidplayfp >= 1.0],
[have_sidplay=yes
INPUT_PLUGINS="$INPUT_PLUGINS sid"],
[if test "x$enable_sid" = "xyes"; then
AC_MSG_ERROR([Cannot find sidplayfp, but compilation of SID input plugin has been explicitly requested; please install sidplayfp and run configure again])
fi]
)
else
AC_MSG_RESULT([*** SID plugin disabled per user request ***])
fi
dnl OSS output
dnl ==========
AC_ARG_ENABLE(oss4,
[AS_HELP_STRING([--disable-oss4],[disable OSS4 output plugin])],
[enable_oss4=$enableval], [enable_oss4=auto])
OSS_CFLAGS=
have_oss4=no
if test "x$enable_oss4" != "xno" ; then
if test -f "/etc/oss.conf"; then
. "/etc/oss.conf"
OSS_CFLAGS="-I$OSSLIBDIR/include"
fi
OLD_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $OSS_CFLAGS"
AC_CHECK_HEADERS([sys/soundcard.h soundcard.h])
AC_MSG_CHECKING(for OSS4)
AC_EGREP_CPP(yes,
[#ifdef HAVE_SYS_SOUNDCARD_H
#include <sys/soundcard.h>
#elif defined HAVE_SOUNDCARD_H
#include <soundcard.h>
#endif
#if OSS_VERSION >= 0x40000 || SOUND_VERSION >= 0x40000
yes
#endif],
[have_oss4=yes
OUTPUT_PLUGINS="$OUTPUT_PLUGINS oss4"
AC_SUBST(OSS_CFLAGS)],
[if test "x$enable_oss4" = "xyes"; then
AC_MSG_ERROR([Cannot find OSS4 development files, but compilation of OSS4 output plugin has been explicitly requested; please install OSS4 dev files and run configure again])
fi]
)
AC_MSG_RESULT([$have_oss4])
CPPFLAGS="$OLD_CPPFLAGS"
fi
dnl *** ALSA output plugin
AC_ARG_ENABLE(alsa,
[AS_HELP_STRING([--disable-alsa], [disable ALSA output plugin])],
[enable_alsa=$enableval],
[enable_alsa=auto]
)
have_alsa=no
if test "x$enable_alsa" != "xno"; then
PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.16],
[have_alsa=yes
OUTPUT_PLUGINS="$OUTPUT_PLUGINS alsa"],
[if test "x$enable_alsa" = "xyes"; then
AC_MSG_ERROR([Cannot find ALSA development files (ver >= 1.0.16), but compilation of ALSA output plugin has been explicitly requested; please install ALSA dev files and run configure again])
fi])
else
AC_MSG_RESULT([*** ALSA output plugin disabled per user request ***])
fi
dnl SDL Output
dnl ==========
AC_ARG_ENABLE(sdlout,
[AS_HELP_STRING([--disable-sdlout], [disable SDL output plugin])],
[enable_sdlout=$enableval], [enable_sdlout=auto])
have_sdlout=no
if test "x$enable_sdlout" != "xno"; then
PKG_CHECK_MODULES([SDL], [sdl2 >= 2.0],
[have_sdlout=yes
OUTPUT_PLUGINS="$OUTPUT_PLUGINS sdlout"],
[PKG_CHECK_MODULES([SDL], [sdl >= 1.2.11],
[have_sdlout=yes
OUTPUT_PLUGINS="$OUTPUT_PLUGINS sdlout"],
[if test "x$enable_sdlout" = "xyes"; then
AC_MSG_ERROR([Cannot find SDL development files (ver >= 1.2.11), but compilation of SDL output plugin has been explicitly requested; please install SDL dev files and run configure again])
fi])])
fi
dnl *** sndio output
AC_ARG_ENABLE(sndio,
[AS_HELP_STRING([--disable-sndio], [disable sndio output plugin (default=enabled)])],
[enable_sndio=$enableval],
[enable_sndio=auto]
)
have_sndio=no
if test "x$enable_sndio" != "xno"; then
AC_CHECK_HEADER([sndio.h],
[AC_CHECK_LIB([sndio], [sio_open],
[have_sndio=yes
OUTPUT_PLUGINS="$OUTPUT_PLUGINS sndio"
SNDIO_LIBS="-lsndio"
AC_SUBST(SNDIO_LIBS)]
)]
)
if test "x$enable_sndio" = "xyes" -a "x$have_sndio" != "xyes"; then
AC_MSG_ERROR([Cannot find sndio development files, but compilation of sndio output plugin has been explicitly requested; please install sndio dev files and run configure again])
fi
fi
dnl amidi-plug
dnl ==========
AC_ARG_ENABLE(amidiplug,
[AS_HELP_STRING([--disable-amidiplug], [disable amidi-plug input plugin])],
[enable_amidiplug=$enableval], [enable_amidiplug=auto])
have_amidiplug=no
if test "x$enable_amidiplug" != "xno"; then
PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.0.6],
[have_amidiplug=yes
OUTPUT_PLUGINS="$OUTPUT_PLUGINS amidi-plug"],
[if test "x$enable_amidiplug" = "xyes"; then
AC_MSG_ERROR([Cannot find FluidSynth development files (ver >= 1.0.6), but compilation of amidi-plug input plugin has been explicitly requested; please install FluidSynth dev files and run configure again])
fi])
fi
dnl Audio CD
dnl ========
AC_ARG_ENABLE(cdaudio,
[AS_HELP_STRING([--disable-cdaudio], [disable cdaudio-ng input plugin (default=enabled)])],
[enable_cdaudio_ng=$enableval],
[enable_cdaudio_ng=auto]
)
have_cdaudio_ng=no
if test "x$enable_cdaudio_ng" != "xno"; then
PKG_CHECK_MODULES(CDIO, [libcdio >= 0.70 libcdio_cdda >= 0.70],
[PKG_CHECK_MODULES(CDDB, [libcddb >= 1.2.1],
[have_cdaudio_ng=yes
INPUT_PLUGINS="$INPUT_PLUGINS cdaudio-ng"
GENERAL_PLUGINS="$GENERAL_PLUGINS cd-menu-items"
AC_SUBST(CDIO_LIBS)
AC_SUBST(CDIO_CFLAGS)
AC_SUBST(CDDB_LIBS)
AC_SUBST(CDDB_CFLAGS)],
[AC_MSG_WARN([*** Cannot find libcddb 1.2.1 or newer, cdaudio-ng will not be built ***])]
)],
[AC_MSG_WARN([*** Cannot find libcdio 0.70 or newer, cdaudio-ng will not be built ***])]
)
if test "x$enable_cdaudio_ng" = "xyes" -a "x$have_cdaudio_ng" != "xyes"; then
AC_MSG_ERROR([Compilation of cdaudio-ng input plugin has been explicitly requested; please install required dev files and run configure again])
fi
fi
dnl *** scrobbler2 ***
AC_ARG_ENABLE(scrobbler2,
[AS_HELP_STRING([--disable-scrobbler2], [disable Scrobbler 2 plugin (default=enabled)])],
[enable_scrobbler2=$enableval], [enable_scrobbler2=auto])
have_scrobbler2=no
if test "x$enable_scrobbler2" != "xno"; then
PKG_CHECK_MODULES(CURL, [libcurl >= 7.9.7],
[have_scrobbler2=yes
AC_SUBST(CURL_CFLAGS)
AC_SUBST(CURL_LIBS)]
GENERAL_PLUGINS="$GENERAL_PLUGINS scrobbler2",
[if test "x$enable_scrobbler2" = "xyes"; then
AC_MSG_ERROR([Cannot find libcurl development files (ver >= 7.9.7), but compilation of Scrobbler 2 plugin has been explicitly requested; please install libcurl dev files and run configure again])
fi]
)
fi
dnl *** neon http plugin ***
AC_ARG_ENABLE(neon,
[AS_HELP_STRING([--disable-neon], [disable neon HTTP support (default=enabled)])],
[enable_neon=$enableval],
[enable_neon=auto])
have_neon=no
if test "x$enable_neon" != "xno"; then
PKG_CHECK_MODULES(NEON, [neon >= 0.26],
[have_neon=yes
TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS neon"
AC_CHECK_LIB([neon], [ne_set_connect_timeout], [AC_DEFINE(HAVE_NE_SET_CONNECT_TIMEOUT, 1, [Whether we have ne_set_connect_timeout])], [], [$NEON_LIBS])
AC_SUBST([NEON_LIBS])
AC_SUBST([NEON_CFLAGS])],
[if test "x$enable_neon" = "xyes"; then
AC_MSG_ERROR([Cannot find neon development files (ver >= 0.26), but compilation of neon HTTP support has been explicitly requested; please install neon dev files and run configure again])
fi]
)
fi
dnl MMS
dnl ===
AC_ARG_ENABLE(mms,
[AS_HELP_STRING([--disable-mms], [disable mms support. (default=enabled)])],
[enable_mms=$enableval],
[enable_mms=auto])
have_mms=no
if test "x$enable_mms" != "xno"; then
PKG_CHECK_MODULES(MMS, [libmms >= 0.3],
[have_mms=yes
TRANSPORT_PLUGINS="$TRANSPORT_PLUGINS mms"],
[if test "x$enable_mms" = "xyes"; then
AC_MSG_ERROR([Cannot find libmms development files (ver >= 0.3), but compilation of mms support has been explicitly requested; please install libmms dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** mms plugin disabled by request ***])
fi
dnl CUE
dnl ---
AC_ARG_ENABLE(cue,
[AS_HELP_STRING([--disable-cue], [disable cue support. (default=enabled)])],
[enable_cue=$enableval],
[enable_cue=auto])
have_cue=no
if test "x$enable_cue" != "xno"; then
PKG_CHECK_MODULES(CUE, [libcue],
[have_cue=yes
CONTAINER_PLUGINS="$CONTAINER_PLUGINS cue"],
[if test "x$enable_cue" = "xyes"; then
AC_MSG_ERROR([Cannot find libcue development files, but compilation of cue support has been explicitly requested; please install libcue dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** cue plugin disabled by request ***])
fi
dnl FileWriter
dnl ==========
AC_ARG_ENABLE(filewriter,
[AS_HELP_STRING([--disable-filewriter], [disable FileWriter output plugin (default=enabled)])],
[enable_filewriter=$enableval],
[enable_filewriter=yes]
)
have_filewriter=no
if test "x$enable_filewriter" != "xno"; then
have_filewriter=yes
OUTPUT_PLUGINS="$OUTPUT_PLUGINS filewriter"
fi
AC_ARG_ENABLE(filewriter_mp3,
[AS_HELP_STRING([--disable-filewriter_mp3], [disable FileWriter MP3 output part (default=enabled)])],
[enable_filewriter_mp3=$enableval], [enable_filewriter_mp3=auto]
)
have_lame=no
if test "x$have_filewriter" = "xyes" -a "x$enable_filewriter_mp3" != "xno"; then
AC_CHECK_LIB([mp3lame], [lame_get_id3v2_tag],
[have_lame=yes
AC_DEFINE(FILEWRITER_MP3, 1, [Define if MP3 output part should be built])
FILEWRITER_LIBS="$FILEWRITER_LIBS -lmp3lame"],
[if test "x$enable_filewriter_mp3" = "xyes"; then
AC_MSG_ERROR([Cannot find lame development files, but compilation of FileWriter MP3 output part has been explicitly requested; please install lame dev files and run configure again])
fi],
[-lm]
)
fi
dnl Vorbis support reuses test done for Vorbis input plugin.
have_vorbisenc=no
if test "x$have_filewriter" = "xyes" -a "x$have_vorbis" = "xyes"; then
have_vorbisenc=yes
AC_DEFINE(FILEWRITER_VORBIS, 1, [Define if Vorbis output part should be built])
FILEWRITER_CFLAGS="$FILEWRITER_CFLAGS $VORBIS_CFLAGS"
FILEWRITER_LIBS="$FILEWRITER_LIBS $VORBIS_LIBS"
fi
AC_ARG_ENABLE(filewriter_flac,
[AS_HELP_STRING([--disable-filewriter_flac], [disable FileWriter FLAC output part (default=enabled)])],
[enable_filewriter_flac=$enableval], [enable_filewriter_flac=auto]
)
have_writer_flac=no
if test "x$have_filewriter" = "xyes" -a "x$enable_filewriter_flac" != "xno"; then
PKG_CHECK_MODULES(FLAC, [flac >= 1.1.3],
[have_writer_flac=yes
AC_DEFINE(FILEWRITER_FLAC, 1, [Define if FLAC output part should be built])
FILEWRITER_CFLAGS="$FILEWRITER_CFLAGS $FLAC_CFLAGS"
FILEWRITER_LIBS="$FILEWRITER_LIBS $FLAC_LIBS"],
[if test "x$enable_filewriter_flac" = "xyes"; then
AC_MSG_ERROR([Cannot find libflac development files (ver >= 1.1.3), but compilation of FileWriter FLAC output part has been explicitly requested; please install libflac dev files and run configure again])
fi]
)
fi
AC_SUBST(FILEWRITER_CFLAGS)
AC_SUBST(FILEWRITER_LIBS)
dnl *** BS2B effect plugin
AC_ARG_ENABLE(bs2b,
[AS_HELP_STRING([--disable-bs2b], [disable BS2B effect plugin (default=enabled)])],
[enable_bs2b=$enableval],
[enable_bs2b=auto]
)
have_bs2b=no
if test "x$enable_bs2b" != "xno"; then
PKG_CHECK_MODULES([BS2B], [libbs2b >= 3.0.0],
[have_bs2b=yes
EFFECT_PLUGINS="$EFFECT_PLUGINS bs2b"],
[if test "x$enable_bs2b" = "xyes"; then
AC_MSG_ERROR([Cannot find libbs2b development files (ver >= 3.0.0), but compilation of BS2B effect plugin has been explicitly requested; please install libbs2b dev files and run configure again])
fi]
)
else
AC_MSG_RESULT([*** BS2B effect plugin disabled per user request ***])
fi
dnl *** Resample effect plugin
AC_ARG_ENABLE(resample,
[AS_HELP_STRING([--disable-resample], [disable resample effect plugin (default=enabled)])],
[enable_resample=$enableval], [enable_resample=auto]
)
have_resample=no
if test "x$enable_resample" != "xno"; then
PKG_CHECK_MODULES([SAMPLERATE], [samplerate],
[have_resample=yes
EFFECT_PLUGINS="$EFFECT_PLUGINS resample"],
[if test "x$enable_resample" = "xyes"; then
AC_MSG_ERROR([Cannot find libsamplerate development files, but compilation of resample effect plugin has been explicitly requested; please install libsamplerate dev files and run configure again])
fi]
)
fi
dnl Speed and Pitch effect plugin
dnl =============================
AC_ARG_ENABLE(speedpitch,
[AS_HELP_STRING([--disable-speedpitch],[disable Speed and Pitch effect plugin])],
[enable_speedpitch="$enableval"], [enable_speedpitch=auto])
have_speedpitch=no
if test "x$enable_speedpitch" != "xno"; then
PKG_CHECK_MODULES([SAMPLERATE], [samplerate],
[have_speedpitch=yes
EFFECT_PLUGINS="$EFFECT_PLUGINS speed-pitch"],
[if test "x$enable_speedpitch" = "xyes"; then
AC_MSG_ERROR([Cannot find libsamplerate development files, but compilation of Speed and Pitch effect plugin has been explicitly requested; please install libsamplerate dev files and run configure again])
fi]
)
fi
dnl *** SoX Resampler effect plugin
AC_ARG_ENABLE(soxr,
[AS_HELP_STRING([--disable-soxr], [disable SoX Resampler effect plugin (default=enabled)])],
[enable_soxr=$enableval], [enable_soxr=auto]
)
have_soxr=no
if test "x$enable_soxr" != "xno"; then
PKG_CHECK_MODULES([SOXR], [soxr],
[have_soxr=yes
EFFECT_PLUGINS="$EFFECT_PLUGINS sox-resampler"],
[if test "x$enable_soxr" = "xyes"; then
AC_MSG_ERROR([Cannot find soxr development files, but compilation of SoX Resampler effect plugin has been explicitly requested; please install soxr dev files and run configure again])
fi]
)
fi
dnl GTK Interface
dnl =============
AC_ARG_ENABLE(gtkui,
[AS_HELP_STRING([--disable-gtkui], [disable GTK interface (gtkui)])],
[enable_gtkui=$enableval], [enable_gtkui="yes"])
if test "x$enable_gtkui" != "xno"; then
GENERAL_PLUGINS="$GENERAL_PLUGINS gtkui"
fi
dnl Winamp Classic Interface
dnl =============
AC_ARG_ENABLE(skins,
[AS_HELP_STRING([--disable-skins], [disable Winamp Classic interface (skins)])],
[enable_skins=$enableval], [enable_skins="yes"])
if test "x$enable_skins" != "xno"; then
GENERAL_PLUGINS="$GENERAL_PLUGINS skins"
fi
dnl LyricWiki
dnl =========
AC_ARG_ENABLE(lyricwiki,
[AS_HELP_STRING([--disable-lyricwiki], [disable LyricWiki plugin (default=enabled)])],
[enable_lyricwiki=$enableval], [enable_lyricwiki=auto])
have_lyricwiki=no
if test "x$enable_lyricwiki" != "xno"; then
PKG_CHECK_MODULES(GLIB214, [glib-2.0 >= 2.14],
[have_lyricwiki=yes
GENERAL_PLUGINS="$GENERAL_PLUGINS lyricwiki"],
[if test "x$enable_lyricwiki" = "xyes"; then
AC_MSG_ERROR([Cannot find GLib development files (ver >= 2.14), but compilation of LyricWiki plugin has been explicitly requested; please install GLib dev files and run configure again])
fi]
)
fi
dnl OpenGL Spectrum Analyzer
dnl ========================
AC_ARG_ENABLE(glspectrum,
[AS_HELP_STRING([--enable-glspectrum], [enable OpenGL Spectrum Analyzer (default=auto)])],
[enable_glspectrum=$enableval], [enable_glspectrum=auto])
have_glspectrum=no
if test $enable_glspectrum != no ; then
if test $HAVE_MSWINDOWS = yes ; then
have_glspectrum=yes
GL_LIBS="-lopengl32"
else
AC_CHECK_LIB(GL, glXCreateContext, [have_glspectrum=yes], [have_glspectrum=no])
if test $have_glspectrum = yes ; then
GL_LIBS="-lGL -lX11"
fi
fi
if test $enable_glspectrum = yes && test $have_glspectrum = no ; then
AC_MSG_ERROR([Unable to enable OpenGL Spectrum Analyzer; check config.log])
fi
if test $have_glspectrum = yes ; then
VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS gl-spectrum"
fi
fi
AC_SUBST(GL_LIBS)
dnl *** End of all plugin checks ***
plugindir=`pkg-config audacious --variable=plugin_dir`
AC_SUBST(plugindir)
dnl XXX
INPUT_PLUGIN_DIR=Input
OUTPUT_PLUGIN_DIR=Output
EFFECT_PLUGIN_DIR=Effect
GENERAL_PLUGIN_DIR=General
VISUALIZATION_PLUGIN_DIR=Visualization
CONTAINER_PLUGIN_DIR=Container
TRANSPORT_PLUGIN_DIR=Transport
AC_SUBST(INPUT_PLUGIN_DIR)
AC_SUBST(OUTPUT_PLUGIN_DIR)
AC_SUBST(EFFECT_PLUGIN_DIR)
AC_SUBST(GENERAL_PLUGIN_DIR)
AC_SUBST(VISUALIZATION_PLUGIN_DIR)
AC_SUBST(CONTAINER_PLUGIN_DIR)
AC_SUBST(TRANSPORT_PLUGIN_DIR)
localedir="$datarootdir/locale"
AC_SUBST(localedir)
AC_SUBST(EFFECT_PLUGINS)
AC_SUBST(GENERAL_PLUGINS)
AC_SUBST(INPUT_PLUGINS)
AC_SUBST(OUTPUT_PLUGINS)
AC_SUBST(VISUALIZATION_PLUGINS)
AC_SUBST(CONTAINER_PLUGINS)
AC_SUBST(TRANSPORT_PLUGINS)
dnl Reliably #include "config.h" (for large file support)
dnl =====================================================
CPPFLAGS="$CPPFLAGS -include config.h"
dnl Generate config files
dnl =====================
AC_CONFIG_FILES([
buildsys.mk
extra.mk
])
AC_OUTPUT
dnl Print results
dnl =============
echo
echo "Configuration:"
echo
echo " Install path: $plugindir"
echo
echo " Output Plugins"
echo " --------------"
echo " Open Sound System (oss4): $have_oss4"
echo " Advanced Linux Sound Arch. (alsa): $have_alsa"
echo " Sndio (sndio): $have_sndio"
echo " PulseAudio (pulse): $have_pulse"
echo " Jack Audio Connection Kit (jack): $have_jack"
echo " Simple DirectMedia Layer (sdlout): $have_sdlout"
echo " FileWriter: $have_filewriter"
echo " -> FileWriter MP3 output part: $have_lame"
echo " -> FileWriter Vorbis output part: $have_vorbisenc"
echo " -> FileWriter FLAC output part: $have_writer_flac"
echo
echo " Input Plugins"
echo " -------------"
echo " MPEG-1 Layer I/II/III (mpg123): $have_mp3"
echo " MPEG-2/4 AAC (aac): $have_aac"
echo " FFaudio (ffaudio): $have_ffaudio"
echo " Module decoder (modplug): $have_modplug"
echo " MIDI synthesizer (amidi-plug): $have_amidiplug"
echo " CD Digital Audio (cdaudio_ng): $have_cdaudio_ng"
echo " sndfile extensions: $have_sndfile"
echo " Tone Generator: yes"
echo " Ogg Vorbis (vorbis): $have_vorbis"
echo " Free Lossless Audio Codec (flacng): $have_flacng"
echo " Commodore 64 audio (SID): $have_sidplay"
echo " Game music (spc, nsf & gbs): $have_console"
echo " PlayStation (psf/psf2) audio: $enable_psf"
echo " Nintendo DS audio (xsf): $enable_xsf"
echo " AdLib synthesizer (adplug): $have_adplug"
echo " WavPack 4.31+ (wavpack): $have_wavpack"
echo " Metronom: yes"
echo
echo " General"
echo " -------"
echo " Alarm: yes"
echo " Album Art: yes"
echo " Delete from Filesystem: yes"
echo " Linux Infrared Remote Control (LIRC) $have_lirc"
echo " MPRIS 2 Server: $have_mpris2"
echo " Search Tool: yes"
echo " Song Change: $have_songchange"
echo " Status Icon: $have_statusicon"
echo " Audacious OSD: $have_aosd"
echo " -> X Composite support: $have_aosd_xcomp"
echo " libnotify OSD: $have_notify"
echo " Global Hotkey Plugin: $have_hotkey"
echo " Gnome Shortcuts Plugin: $have_gnomeshortcuts"
echo " Scrobbler 2.0: $have_scrobbler2"
echo " LyricWiki viewer: $have_lyricwiki"
echo
echo " Effect"
echo " ------"
echo " Channel Mixer: yes"
echo " Crystalizer: yes"
echo " Dynamic Range Compressor: yes"
echo " Echo/Surround: yes"
echo " Extra Stereo: yes"
echo " LADSPA Host: yes"
echo " Voice Removal: yes"
echo " Bauer stereophonic-to-binaural (bs2b): $have_bs2b"
echo " Sample Rate Converter (resample): $have_resample"
echo " Speed and Pitch: $have_speedpitch"
echo " SoX Resampler: $have_soxr"
echo
echo " Visualization"
echo " -------------"
echo " Blur Scope: yes"
echo " Cairo Spectrum Analyzer: yes"
echo " OpenGL Spectrum Analyzer: $have_glspectrum"
echo
echo " Transport"
echo " ---------"
echo " neon-based http/https: $have_neon"
echo " libmms-based mms: $have_mms"
echo " GIO: yes"
echo
echo " Container"
echo " ---------"
echo " Audacious playlist format (audpl): yes"
echo " Winamp PLS playlist format (pls): yes"
echo " M3U playlist format (m3u): yes"
echo " Microsoft ASX (legacy): yes"
echo " Microsoft ASX 3.0: yes"
echo " XML Sharable Playlist Format (xspf): yes"
echo " CUE playlist format (cue): $have_cue"
echo
echo " Interfaces"
echo " ----------"
echo " GTK (gtkui): $enable_gtkui"
echo " Winamp Classic (skins): $enable_skins"
echo
|