comparison configure.ac @ 686:a1806a3cf3d2 trunk

[svn] Remove libvisual-proxy. It is broken and hard to repair. A written-from-scratch replacement is planned but will be a while.
author chainsaw
date Sat, 25 Feb 2006 09:35:27 -0800
parents 07adea9b34ea
children cc1969408403
comparison
equal deleted inserted replaced
685:147e844e16cb 686:a1806a3cf3d2
776 PLUGIN_LDFLAGS='-module -avoid-version -export-symbols-regex "get_.plugin_info"' 776 PLUGIN_LDFLAGS='-module -avoid-version -export-symbols-regex "get_.plugin_info"'
777 AC_SUBST(PLUGIN_LDFLAGS) 777 AC_SUBST(PLUGIN_LDFLAGS)
778 778
779 AC_SUBST(beepdir) 779 AC_SUBST(beepdir)
780 AC_SUBST(plugindir) 780 AC_SUBST(plugindir)
781
782 have_libvisual="yes"
783
784 AC_CHECK_HEADERS([GL/gl.h GL/glx.h GL/glu.h],opengl="yes",opengl="no")
785 if test x"$opengl" = xno; then
786 AC_WARN([OpenGL and Glu headers not found, libvisual support cannot be built])
787 have_libvisual="no"
788 fi
789
790 AC_PATH_PROG(SDL_CONFIG, [sdl-config], [no])
791 AM_PATH_SDL(1.2.5, , [AC_WARN([*** SDL >= 1.2.5 not installed - please install first ***])
792 have_libvisual="no"])
793
794 PKG_CHECK_MODULES(LIBVISUAL, libvisual = 0.2.0, [libvis="yes"], [libvis="no"])
795 if test x"$libvis" = xno; then
796 have_libvisual="no"
797 fi
798 AC_SUBST(LIBVISUAL_LIBS)
799 AC_SUBST(LIBVISUAL_CFLAGS)
800
801 if test "x$have_libvisual" = xyes; then
802 VISUALIZATION_PLUGINS="$VISUALIZATION_PLUGINS libvisual-proxy";
803 fi
804 781
805 AC_SUBST(EFFECT_PLUGINS) 782 AC_SUBST(EFFECT_PLUGINS)
806 AC_SUBST(GENERAL_PLUGINS) 783 AC_SUBST(GENERAL_PLUGINS)
807 AC_SUBST(INPUT_PLUGINS) 784 AC_SUBST(INPUT_PLUGINS)
808 AC_SUBST(OUTPUT_PLUGINS) 785 AC_SUBST(OUTPUT_PLUGINS)
852 Plugins/Input/adplug/Makefile 829 Plugins/Input/adplug/Makefile
853 Plugins/Input/adplug/core/Makefile 830 Plugins/Input/adplug/core/Makefile
854 Plugins/Input/amidi-plug/Makefile 831 Plugins/Input/amidi-plug/Makefile
855 Plugins/Visualization/Makefile 832 Plugins/Visualization/Makefile
856 Plugins/Visualization/blur_scope/Makefile 833 Plugins/Visualization/blur_scope/Makefile
857 Plugins/Visualization/libvisual-proxy/Makefile
858 Plugins/General/Makefile 834 Plugins/General/Makefile
859 Plugins/General/song_change/Makefile 835 Plugins/General/song_change/Makefile
860 Plugins/General/lirc/Makefile 836 Plugins/General/lirc/Makefile
861 Plugins/General/inetctl/Makefile 837 Plugins/General/inetctl/Makefile
862 Plugins/Effect/Makefile 838 Plugins/Effect/Makefile
933 echo " LADSPA effects host (ladspa): yes" 909 echo " LADSPA effects host (ladspa): yes"
934 echo 910 echo
935 echo " Visualization" 911 echo " Visualization"
936 echo " -------------" 912 echo " -------------"
937 echo " Blur Scope: yes" 913 echo " Blur Scope: yes"
938 echo " libvisual-proxy: $have_libvisual"
939 echo 914 echo
940 915
941 if test "$beep_cv_lib_xlibs_threadsafe" = "no"; then 916 if test "$beep_cv_lib_xlibs_threadsafe" = "no"; then
942 echo "Note: You need to have thread-safe xlibs to use Audacious." 917 echo "Note: You need to have thread-safe xlibs to use Audacious."
943 echo "If you are using libc5 thread aware Xlibs just skip this." 918 echo "If you are using libc5 thread aware Xlibs just skip this."