1# Process this file with autoconf to produce a configure script.
2
3AC_PREREQ(2.57)
4
5m4_define([lv_plugins_version_major], [0])
6m4_define([lv_plugins_version_minor], [4])
7m4_define([lv_plugins_version_micro], [0])
8m4_define([lv_plugins_version], [lv_plugins_version_major.lv_plugins_version_minor.lv_plugins_version_micro])
9m4_define([lv_plugins_version_suffix], [lv_plugins_version_major.lv_plugins_version_minor])
10
11AC_INIT(Libvisual plugins, lv_plugins_version, ds@nerds-incorporated.org)
12AM_INIT_AUTOMAKE([1.7.0 dist-bzip2])
13
14AC_CONFIG_SRCDIR([config.h.in])
15AC_CONFIG_HEADER([config.h])
16
17m4_define([libvisual_required_version], [lv_plugins_version])
18m4_define([esound_required_version], [0.2.28])
19m4_define([jack_required_version], [0.98.0])
20m4_define([gtk_required_version], [2.0])
21m4_define([gst_required_version], [0.8])
22
23m4_define([libvisual_pkg], [libvisual-lv_plugins_version_suffix])
24LIBVISUAL_PKG=libvisual_pkg
25
26dnl Check for pkg-config
27PKG_PROG_PKG_CONFIG([0.14])
28if test -z "$PKG_CONFIG"; then
29  AC_MSG_ERROR([*** pkg-config not found. See http://www.freedesktop.org/software/pkgconfig/])
30fi
31
32dnl Check for libvisual here so that users get told they have the
33dnl wrong dependencies as early in the process as possible.
34PKG_CHECK_MODULES([LIBVISUAL], [libvisual_pkg >= libvisual_required_version],
35  [],
36  [AC_MSG_ERROR([*** libvisual libvisual_required_version not found.
37 		It is needed to build this package.
38		You can download libvisual at http://libvisual.sf.net/])]
39)
40
41dnl C/C++ compilers
42AC_PROG_CC
43AC_PROG_CXX
44
45dnl Check for typedefs, structures, and compiler characteristics.
46AC_C_CONST
47AC_C_INLINE
48
49dnl 'Standard' header files.
50AC_HEADER_TIME
51AC_CHECK_HEADERS([fcntl.h unistd.h stdlib.h string.h sys/time.h])
52
53dnl Library functions.
54AC_FUNC_MALLOC
55AC_CHECK_FUNCS([floor gettimeofday memmove memset pow sqrt])
56AC_CHECK_FUNC([munmap], lv_have_munmap=yes, lv_have_munmap=no)
57AC_FUNC_MMAP
58
59dnl Installation tools
60AC_PROG_INSTALL
61AC_PROG_LN_S
62
63dnl Libtool
64AC_DISABLE_STATIC
65
66m4_undefine([AC_PROG_F77])
67m4_defun([AC_PROG_F77],[])
68AC_PROG_LIBTOOL
69
70dnl Lex/Yacc
71AM_PROG_LEX
72AC_CHECK_PROGS([YACC], ['bison -y' byacc yacc])
73if test -z "$YACC"; then
74   AC_MSG_ERROR([Bison or Yacc not found])
75fi
76
77dnl Internationalization
78GETTEXT_PACKAGE=libvisual-plugins-lv_plugins_version_suffix
79AC_SUBST(GETTEXT_PACKAGE)
80AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [gettext package name])
81AC_DEFINE_UNQUOTED(LOCALEDIR, "${prefix}/share/locale", [String catalog location])
82
83AM_GNU_GETTEXT([external])
84AM_GNU_GETTEXT_VERSION([0.14.1])
85
86dnl Dynamic linking library
87DYNAMIC_LOADER_LIBS="-ldl"
88AC_SUBST([DYNAMIC_LOADER_LIBS])
89
90dnl Libraries
91
92dnl EsounD
93PKG_CHECK_MODULES([LIBESD], [esound >= esound_required_version],
94  [HAVE_ESD="yes"], [HAVE_ESD="no"])
95
96if test "$HAVE_ESD" = "yes"; then
97  build_input_plugins="$build_input_plugins esd"
98else
99  AC_MSG_WARN([*** EsounD not found or too old. The EsounD input plugin won't be built])
100fi
101
102dnl JACK
103PKG_CHECK_MODULES([LIBJACK], [jack >= jack_required_version], [HAVE_JACK="yes"], [HAVE_JACK="no"])
104if test "$HAVE_JACK" = "yes"; then
105  build_input_plugins="$build_input_plugins jack"
106else
107  AC_MSG_WARN([*** libjack is too old. You can download a newer version at
108             http://jackit.sf.net/. The jackit input plugin won't be built])
109fi
110
111dnl List of plugins to build
112build_input_plugins=""
113build_actor_plugins=""
114build_morph_plugins=""
115
116dnl GdkPixbuf
117AC_ARG_ENABLE([gdkpixbuf-plugin],
118  AS_HELP_STRING([--disable-gdkpixbuf-plugin],
119    [Do not build GdkPixbuf visualization plugin @<:@default=enabled@:>@]),
120  [ENABLE_PLUGIN_GDKPIXBUF=$enableval],
121  [ENABLE_PLUGIN_GDKPIXBUF=yes])
122
123if test "$ENABLE_PLUGIN_GDKPIXBUF" = "yes"; then
124  PKG_CHECK_MODULES([GTK], [gtk+-2.0 >= gtk_required_version],
125    [HAVE_GTK="yes"], [HAVE_GTK="no"])
126
127  if test "$HAVE_GTK" = "yes"; then
128    build_actor_plugins="$build_actor_plugins gdkpixbuf"
129  else
130    AC_MSG_WARN([*** GTK+ >= ${gtk_required_version} is not found.
131	  	The libvisual GdkPixbuf image loader plugin won't be build.
132		GdkPixbuf is included within gtk-2.0 and newer, which can be
133		downloaded at http://www.gtk.org/])
134  fi
135fi
136
137dnl GStreamer
138AC_ARG_ENABLE([gstreamer-plugin],
139  AS_HELP_STRING([--disable-gstreamer-plugin],
140    [Do not build GStreamer visualization plugin @<:@default=enabled@:>@]),
141  [ENABLE_GSTREAMER_PLUGIN=$enableval],
142  [ENABLE_GSTREAMER_PLUGIN=yes])
143
144if test "$ENABLE_GSTREAMER_PLUGIN" = "yes"; then
145  PKG_CHECK_MODULES([GSTREAMER], [gstreamer-0.8 >= gst_required_version],
146    [HAVE_GSTREAMER="yes"], [HAVE_GSTREAMER="no"])
147
148  if test "$HAVE_GSTREAMER" = "yes"; then
149    build_actor_plugins="$build_actor_plugins gstreamer"
150  else
151    AC_MSG_WARN([*** GStreamer >= ${gst_required_version} is not found.
152	  	The libvisual GStreamer viewer plugin won't be build.
153		GStreamer can be downloaded from http://www.gstreamer.org/])
154  fi
155fi
156
157dnl Xlib
158AC_PATH_XTRA
159AM_CONDITIONAL(HAVE_X, test "$have_x" = "yes")
160
161dnl OpenGL, GLX
162HAVE_OPENGL=no
163
164if test "$have_x" = "yes" ; then
165  CPPFLAGS_SAVE=$CPPFLAGS
166  CPPFLAGS="$CPPFLAGS $X_CFLAGS"
167
168  AC_CHECK_HEADERS([GL/gl.h GL/glx.h],
169    [AC_CHECK_LIB([GL], [glBegin], [HAVE_OPENGL=yes], [], [$X_LIBS])])
170
171  CPPFLAGS=$CPPFLAGS_SAVE
172fi
173
174AM_CONDITIONAL([HAVE_OPENGL], [test "$HAVE_OPENGL" = "yes"])
175
176dnl XF86VidMode
177HAVE_XF86VMODE=no
178XF86VMODE_LIB=
179
180CPPFLAGS_SAVE=$CPPFLAGS
181CPPFLAGS="$CPPFLAGS $X_CFLAGS"
182
183AC_CHECK_HEADERS([X11/extensions/xf86vmode.h],
184  [AC_CHECK_LIB([Xxf86vm], [XF86VidModeSwitchToMode],
185    [AC_DEFINE([HAVE_XF86VMODE], [], [XF86VidMode is available])
186     XF86VMODE_LIB=-lXxf86vm
187     HAVE_XF86VMODE=yes],
188    [],
189    [$X_LIBS])],
190  [],
191  [#include <X11/Xlib.h>
192  ]
193)
194
195CPPFLAGS=$CPPFLAGS_SAVE
196
197AC_SUBST([XF86VMODE_LIB])
198AM_CONDITIONAL([HAVE_XF86VMODE], [test "$HAVE_XF86VMODE" = "yes"])
199
200dnl ALSA
201LV_ALSA_MIN_VERSION=0.9.0
202AC_ARG_ENABLE([alsa],
203  AS_HELP_STRING([--disable-alsa],
204    [Do not build ALSA input plugin @<:@default=enabled@:>@]),
205  [ENABLE_ALSA=$enableval],
206  [ENABLE_ALSA=yes])
207
208if test "$ENABLE_ALSA" = "yes"; then
209  AM_PATH_ALSA([$LV_ALSA_MIN_VERSION], [HAVE_ALSA=yes], [HAVE_ALSA=no])
210
211  if test "$HAVE_ALSA" = "yes"; then
212    build_input_plugins="$build_input_plugins alsa"
213    AC_TRY_COMPILE([#include <stdlib.h>
214		    #include <alsa/asoundlib.h>
215                   ],
216		   [#if(SND_LIB_MAJOR == 0)
217		    exit(0);
218                    #else
219		    #error ALSA library version 1.x
220		    #endif
221                   ],
222		   [ AC_DEFINE([HAVE_0_9_X_ALSA], [1], [ALSA Library is from 0.9 series]) ],
223		   [ AC_DEFINE([HAVE_1_X_X_ALSA], [1], [ALSA Library is from 1 series]) ])
224  else
225    AC_MSG_WARN([*** Alsa input plugin cannot be built.
226		 May be you have an ALSA library older than $LV_ALSA_MIN_VERSION.
227		 Take a look at {prefix}/include/alsa/version.h file.])
228  fi
229fi
230
231dnl MPlayer
232AC_ARG_ENABLE([mplayer],
233  AS_HELP_STRING([--disable-mplayer],
234    [Do not build mplayer input plugin @<:@default=enabled@:>@]),
235  [ENABLE_MPLAYER=$enableval],
236  [ENABLE_MPLAYER=yes])
237
238# FIXME: Missing check for MPlayer...
239if test "$ENABLE_MPLAYER" = "yes"; then
240  # FIXME we must check also for HAVE_MMAP here
241  if test "$lv_have_munmap" = "yes"; then
242    build_input_plugins="$build_input_plugins mplayer"
243  else
244    AC_MSG_WARN([*** There is not a working munmap function available.
245		mplayer input plugin will not be built.])
246  fi
247fi
248
249dnl Input debug plugin
250AC_ARG_ENABLE([inputdebug],
251  AS_HELP_STRING([--disable-inputdebug],
252    [Do not build input debug plugin @<:@default=enabled@:>@]),
253  [ENABLE_INPUTDEBUG=$enableval],
254  [ENABLE_INPUTDEBUG=yes])
255
256if test "$inputdebug" = "yes"; then
257  build_input_plugins="$build_input_plugins debug"
258fi
259
260dnl OpenGL test plugin
261AC_ARG_ENABLE([gltest],
262  AS_HELP_STRING([--disable-gltest],
263    [Do not build lv_gltest plugin @<:@default=enabled@:>@]),
264  [ENABLE_LVGLTEST=$enableval],
265  [ENABLE_LVGLTEST=yes])
266
267if test "$ENABLE_LVGLTEST" = "yes"; then
268  if test "$HAVE_OPENGL" = "yes"; then
269    build_actor_plugins="$build_actor_plugins lv_gltest"
270  else
271    AC_MSG_WARN([*** No OpenGL found.
272		lv_gltest plugin will not be built.])
273  fi
274fi
275
276dnl NastyFFT
277AC_ARG_ENABLE([nastyfft],
278  AS_HELP_STRING([--disable-nastyfft],
279    [Do not build nastyfft plugin @<:@default=enabled@:>@]),
280  [ENABLE_NASTYFFT=$enableval],
281  [ENABLE_NASTYFFT=yes])
282
283if test "$ENABLE_NASTYFFT" = "yes"; then
284  if test "$HAVE_OPENGL" = "yes"; then
285    build_actor_plugins="$build_actor_plugins nastyfft"
286  else
287    AC_MSG_WARN([*** No OpenGL found.
288		nastyfft plugin will not be built.])
289  fi
290fi
291
292dnl Madspin
293AC_ARG_ENABLE([madspin],
294  AS_HELP_STRING([--disable-madspin],
295    [Do not build Madspin plugin @<:@default=enabled@:>@]),
296  [ENABLE_MADSPIN=$enableval],
297  [ENABLE_MADSPIN=yes])
298
299if test "$ENABLE_MADSPIN" = "yes"; then
300  if test "$HAVE_OPENGL" = "yes"; then
301    build_actor_plugins="$build_actor_plugins madspin"
302  else
303    AC_MSG_WARN([*** No OpenGL found.
304		Madspin plugin will not be built.])
305  fi
306fi
307
308dnl Pseudotoad Flower
309AC_ARG_ENABLE([flower],
310  AS_HELP_STRING([--disable-flower],
311    [Do not build Pseudotoad Flower plugin @<:@default=enabled@:>@]),
312  [ENABLE_FLOWER=$enableval],
313  [ENABLE_FLOWER=yes])
314
315if test "$ENABLE_FLOWER" = "yes"; then
316  if test "$HAVE_OPENGL" = "yes"; then
317    build_actor_plugins="$build_actor_plugins pseudotoad_flower"
318  else
319    AC_MSG_WARN([*** No OpenGL found.
320		Pseudotoad Flower plugin will not be built.])
321  fi
322fi
323
324dnl Infinite
325AC_ARG_ENABLE([infinite],
326  AS_HELP_STRING([--disable-infinite],
327    [Do not build Infinite plugin @<:@default=enabled@:>@]),
328  [ENABLE_INFINITE=$enableval],
329  [ENABLE_INFINITE=yes])
330
331if test "$ENABLE_INFINITE" = "yes"; then
332  build_actor_plugins="$build_actor_plugins infinite"
333fi
334
335dnl JESS
336AC_ARG_ENABLE([jess],
337  AS_HELP_STRING([--disable-jess],
338    [Do not build JESS plugin @<:@default=enabled@:>@]),
339  [ENABLE_JESS=$enableval],
340  [ENABLE_JESS=yes])
341
342if test "$ENABLE_JESS" = "yes"; then
343  build_actor_plugins="$build_actor_plugins JESS"
344fi
345
346dnl Corona
347AC_ARG_ENABLE([corona],
348  AS_HELP_STRING([--disable-corona],
349    [Do not build corona plugin @<:@default=enabled@:>@]),
350  [ENABLE_CORONA=$enableval],
351  [ENABLE_CORONA=yes])
352
353if test "$ENABLE_CORONA" = "yes"; then
354  build_actor_plugins="$build_actor_plugins corona"
355fi
356
357dnl Analyzer
358AC_ARG_ENABLE([analyzer],
359  AS_HELP_STRING([--disable-analyzer],
360    [Do not build Analyzer plugin @<:@default=enabled@:>@]),
361  [ENABLE_ANALYZER=$enableval],
362  [ENABLE_ANALYZER=yes])
363
364if test "$ENABLE_ANALYZER" = xyes; then
365  build_actor_plugins="$build_actor_plugins lv_analyzer"
366fi
367
368dnl Scope
369AC_ARG_ENABLE([scope],
370  AS_HELP_STRING([--disable-scope],
371    [Do not build Scope plugin @<:@default=enabled@:>@]),
372  [ENABLE_SCOPE=$enableval],
373  [ENABLE_SCOPE=yes])
374
375if test "$ENABLE_SCOPE" = "yes"; then
376  build_actor_plugins="$build_actor_plugins lv_scope"
377fi
378
379dnl Oinksie
380AC_ARG_ENABLE([oinksie],
381  AS_HELP_STRING([--disable-oinksie],
382    [Do not build Oinksie plugin @<:@default=enabled@:>@]),
383  [ENABLE_OINKSIE=$enableval],
384  [ENABLE_OINKSIE=yes])
385
386if test "$ENABLE_OINKSIE" = "yes"; then
387  build_actor_plugins="$build_actor_plugins oinksie"
388fi
389
390dnl Jakdaw
391AC_ARG_ENABLE([jakdaw],
392  AS_HELP_STRING([--disable-jakdaw],
393    [Do not build Jakdaw plugin @<:@default=enabled@:>@]),
394  [ENABLE_JAKDAW=$enableval],
395  [ENABLE_JAKDAW=yes])
396
397if test "$ENABLE_JAKDAW" = "yes"; then
398  build_actor_plugins="$build_actor_plugins jakdaw"
399fi
400
401dnl Bumpscope
402AC_ARG_ENABLE([bumpscope],
403  AS_HELP_STRING([--disable-bumpscope],
404    [Do not build bumpscope plugin @<:@default=enabled@:>@]),
405  [ENABLE_BUMPSCOPE=$enableval],
406  [ENABLE_BUMPSCOPE=yes])
407
408if test "$ENABLE_BUMPSCOPE" = "yes"; then
409  build_actor_plugins="$build_actor_plugins bumpscope"
410fi
411
412dnl G-Force
413AC_ARG_ENABLE([gforce],
414  AS_HELP_STRING([--disable-gforce],
415    [Do not build the G-Force plugin @<:@default=enabled@:>@]),
416    [ENABLE_GFORCE=$enableval],
417    [ENABLE_GFORCE=yes])
418
419if test "$ENABLE_GFORCE" = "yes"; then
420  build_actor_plugins="$build_actor_plugins G-Force"
421
422  # Special flags for G-Force, make this only for G-Force FIXME FIXME!!!
423  GFORCE_CFLAGS="-DUNIX_X -D_REENTRANT"
424  AC_SUBST([GFORCE_FLAGS])
425fi
426
427dnl Alphabend
428AC_ARG_ENABLE([alphablend],
429  AS_HELP_STRING([--disable-alphablend],
430    [Do not build alphablend morph plugin @<:@default=enabled@:>@]),
431  [ENABLE_ALPHABLEND=$enableval],
432  [ENABLE_ALPHABLEND=yes])
433
434if test "$ENABLE_ALPHABLEND" = "yes"; then
435  build_morph_plugins="$build_morph_plugins alphablend"
436fi
437
438dnl Flash
439AC_ARG_ENABLE([flash],
440  AS_HELP_STRING([--disable-flash],
441    [Do not build flash morph plugin @<:@default=enabled@:>@]),
442  [ENABLE_FLASH=$enableval],
443  [ENABLE_FLASH=yes])
444
445if test "$ENABLE_FLASH" = "yes"; then
446  build_morph_plugins="$build_morph_plugins flash"
447fi
448
449dnl Tentacle
450AC_ARG_ENABLE([tentacle],
451  AS_HELP_STRING([--disable-tentacle],
452    [Do not build tentacle morph plugin @<:@default=enabled@:>@]),
453  [ENABLE_TENTACLE=$enableval],
454  [ENABLE_TENTACLE=yes])
455
456if test "$ENABLE_TENTACLE" = "yes"; then
457  build_morph_plugins="$build_morph_plugins tentacle"
458fi
459
460dnl Slide
461AC_ARG_ENABLE([slide],
462  AS_HELP_STRING([--disable-slide],
463     [Do not build slide morph plugin @<:@default=enabled@:>@]),
464  [ENABLE_SLIDE=$enableval],
465  [ENABLE_SLIDE=yes])
466
467if test "$ENABLE_SLIDE" = "yes"; then
468  build_morph_plugins="$build_morph_plugins slide"
469fi
470
471dnl Build parameters
472
473DEBUG_CFLAGS=
474
475dnl Profiling
476AC_ARG_ENABLE([profiling],
477  AS_HELP_STRING([--enable-profiling],
478		[Enable emision of profile data to be used by gprof @<:@default=disabled@:>@]),
479		[ENABLE_PROFILING=$enableval],
480		[ENABLE_PROFILING=no])
481
482if test "$ENABLE_PROFILING" = "yes"; then
483  DEBUG_CFLAGS="$DEBUG_CFLAGS -pg"
484fi
485
486dnl Debug build
487AC_ARG_ENABLE([debug],
488  AS_HELP_STRING([--enable-debug],
489    [Enable debug @<:@default=disabled@:>@]),
490  [ENABLE_DEBUG=$enableval],
491  [ENABLE_DEBUG=no])
492
493if test "$ENABLE_DEBUG" = "yes"; then
494  DEBUG_CFLAGS="$DEBUG_CFLAGS -ggdb3"
495  DEBUG_CFLAGS="$DEBUG_CFLAGS -Wall -Wmissing-braces -Wimplicit -Wunused"
496  DEBUG_CFLAGS="$DEBUG_CFLAGS -Wmissing-prototypes -Wno-unused-variable"
497fi
498AC_SUBST(DEBUG_CFLAGS)
499
500dnl Optimization
501AC_ARG_ENABLE([extra-optimization],
502  AS_HELP_STRING([--enable-extra-optimization],
503    [Enable extra optimizations @<:@default=disabled@:>@]),
504    [ENABLE_EXTRA_OPT=$enableval],
505    [ENABLE_EXTRA_OPT=no])
506
507OPT_CFLAGS=
508if test "$ENABLE_EXTRA_OPT" = "yes"; then
509  OPT_CFLAGS="-O3 -fexpensive-optimizations"
510else
511  if test "$debug" = "yes"; then
512    OPT_CFLAGS="-O0"
513  fi
514fi
515AC_SUBST(OPT_CFLAGS)
516
517AC_SUBST(CFLAGS, "${CFLAGS} ${DEBUG_CFLAGS} ${OPT_CFLAGS} ${GFORCE_CFLAGS}")
518AC_SUBST(CXXFLAGS, "${CFLAGS} ${DEBUG_CFLAGS} ${OPT_CFLAGS} ${GFORCE_CFLAGS}")
519
520dnl Plugin installation paths
521
522AC_ARG_WITH([plugins-base-dir],
523  AS_HELP_STRING([--with-plugins-base-dir=DIR],
524    [Install plugins to this base directory. Defaults to Libvisual's base dir]),
525  [plugins_base_dir=$withval],
526  [plugins_base_dir=`$PKG_CONFIG --variable=pluginsbasedir $LIBVISUAL_PKG`])
527
528LIBVISUAL_PLUGINS_BASE_DIR="$plugins_base_dir"
529AC_SUBST([LIBVISUAL_PLUGINS_BASE_DIR])
530AC_SUBST([actor_plugindir], [$LIBVISUAL_PLUGINS_BASE_DIR/actor])
531AC_SUBST([input_plugindir], [$LIBVISUAL_PLUGINS_BASE_DIR/input])
532AC_SUBST([morph_plugindir], [$LIBVISUAL_PLUGINS_BASE_DIR/morph])
533
534AC_SUBST(LIBVISUAL_PLUGINS_DATA_DIR, [$datadir/libvisual-plugins-lv_plugins_version_suffix])
535
536dnl Plugins to build
537AC_SUBST([build_actor_plugins])
538AC_SUBST([build_input_plugins])
539AC_SUBST([build_morph_plugins])
540
541AC_CONFIG_FILES([
542	Makefile
543	po/Makevars
544	po/Makefile.in
545	plugins/Makefile
546	plugins/actor/Makefile
547	plugins/actor/bumpscope/Makefile
548	plugins/actor/corona/Makefile
549	plugins/actor/gdkpixbuf/Makefile
550	plugins/actor/gstreamer/Makefile
551	plugins/actor/infinite/Makefile
552	plugins/actor/jakdaw/Makefile
553	plugins/actor/JESS/Makefile
554	plugins/actor/lv_analyzer/Makefile
555	plugins/actor/lv_gltest/Makefile
556	plugins/actor/lv_scope/Makefile
557	plugins/actor/madspin/Makefile
558	plugins/actor/nastyfft/Makefile
559	plugins/actor/oinksie/Makefile
560	plugins/actor/pseudotoad_flower/Makefile
561	plugins/actor/G-Force/Makefile
562	plugins/actor/G-Force/docs/Makefile
563	plugins/actor/G-Force/Common/Makefile
564	plugins/actor/G-Force/Common/GeneralTools/Makefile
565	plugins/actor/G-Force/Common/GeneralTools/Headers/Makefile
566	plugins/actor/G-Force/Common/io/Makefile
567	plugins/actor/G-Force/Common/io/Headers/Makefile
568	plugins/actor/G-Force/Common/math/Makefile
569	plugins/actor/G-Force/Common/math/Headers/Makefile
570	plugins/actor/G-Force/Common/UI/Makefile
571	plugins/actor/G-Force/Common/UI/Headers/Makefile
572	plugins/actor/G-Force/GForceCommon/Makefile
573	plugins/actor/G-Force/GForceCommon/Headers/Makefile
574	plugins/actor/G-Force/unix/Makefile
575	plugins/actor/G-Force/unix/Headers/Makefile
576	plugins/actor/G-Force/unix/libmfl/Makefile
577	plugins/actor/G-Force/unix/libvisual/Makefile
578	plugins/actor/G-Force/GForceColorMaps/Makefile
579	plugins/actor/G-Force/GForceDeltaFields/Makefile
580	plugins/actor/G-Force/GForceParticles/Makefile
581	plugins/actor/G-Force/GForceWaveShapes/Makefile
582	plugins/actor/G-Force/NotWorkingWaveShapes/Makefile
583	plugins/input/Makefile
584	plugins/input/esd/Makefile
585	plugins/input/alsa/Makefile
586	plugins/input/mplayer/Makefile
587	plugins/input/jack/Makefile
588	plugins/input/debug/Makefile
589	plugins/morph/Makefile
590	plugins/morph/alphablend/Makefile
591	plugins/morph/tentacle/Makefile
592	plugins/morph/flash/Makefile
593	plugins/morph/slide/Makefile
594])
595
596
597AC_OUTPUT
598
599echo "
600================================================
601LIBVISUAL-PLUGINS, PLUGINS FOR LIBVISUAL $VERSION
602================================================
603
604Packages found:
605libesd                   : $HAVE_ESD
606ALSA                     : $HAVE_ALSA
607OpenGL                   : $HAVE_OPENGL
608GTK+                     : $HAVE_GTK
609
610Plugins being build
611-------------------
612Input plugins            :${build_input_plugins}
613Actor plugins            :${build_actor_plugins}
614Morph plugins            :${build_morph_plugins}
615
616Libvisual plugin data dir: ${prefix}/share
617
618Build options
619-------------
620install path             : $plugins_base_dir
621source code location     : ${srcdir}
622compiler                 : ${CC}
623
624Compiler options
625----------------
626Extra optimization       : $ENABLE_EXTRA_OPT
627Debug build              : $ENABLE_DEBUG
628Profiling support        : $ENABLE_PROFILING
629"
630