summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2001-12-23 04:38:37 +0000
committerAndy Wingo <wingo@pobox.com>2001-12-23 04:38:37 +0000
commit789be9a726efbdffd802c1b770b76148460e6220 (patch)
treead0c095687cee4a73855716705f92d77ee9686b2 /configure.ac
parentd1141be8b635a8dc5f5678ec7c1e7f8acf282289 (diff)
downloadgst-plugins-bad-789be9a726efbdffd802c1b770b76148460e6220.tar.gz
gst-plugins-bad-789be9a726efbdffd802c1b770b76148460e6220.tar.bz2
gst-plugins-bad-789be9a726efbdffd802c1b770b76148460e6220.zip
much build fixage turns out synaesthesia and smoothwav depend on gtk, maybe they should go to ext/
Original commit message from CVS: much build fixage turns out synaesthesia and smoothwav depend on gtk, maybe they should go to ext/
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 16 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7c5888d9..c037fbb8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -311,6 +311,21 @@ AC_ARG_WITH(plugins,
AC_SUBST(GST_PLUGINS_SELECTED)
+dnl needed for smoothwave, FIXME!
+if test x$USE_GLIB2 = xno; then
+ AM_PATH_GTK(1.2.0,,
+ AC_MSG_ERROR(Cannot find gtk: Is gtk-config in path?))
+ HAVE_GTK=yes
+ # we have to have it
+else
+ PKG_CHECK_MODULES(GTK2, gtk+-2.0, HAVE_GTK=yes, HAVE_GTK=no)
+
+ GTK_CFLAGS=$GTK2_CFLAGS
+ GTK_LIBS=$GTK2_LIBS
+fi
+AC_SUBST(GTK_LIBS)
+AC_SUBST(GTK_CFLAGS)
+
dnl ==========================================================================
dnl ============================= sys plugins ================================
dnl ==========================================================================
@@ -1076,7 +1091,6 @@ sys/vcd/Makefile
sys/vga/Makefile
sys/xvideo/Makefile
ext/Makefile
-ext/a52/Makefile
ext/aalib/Makefile
ext/alsa/Makefile
ext/audiofile/Makefile
@@ -1088,6 +1102,7 @@ ext/vorbis/Makefile
gst-libs/Makefile
gst-libs/gst/Makefile
gst-libs/gst/audio/Makefile
+gst-libs/gst/resample/Makefile
gst-plugins.spec
)