diff options
author | Benjamin Otte <otte@gnome.org> | 2004-03-30 02:53:00 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-03-30 02:53:00 +0000 |
commit | 7a5c4fb6326a412dd485e3c85759532db6c3fcdb (patch) | |
tree | 282f56e82ef7d4025d69d9cf75cbf0f06222aa30 /ext | |
parent | 5b4a2facc1be2e28ded1ed4eb0e759f72913a599 (diff) | |
download | gst-plugins-bad-7a5c4fb6326a412dd485e3c85759532db6c3fcdb.tar.gz gst-plugins-bad-7a5c4fb6326a412dd485e3c85759532db6c3fcdb.tar.bz2 gst-plugins-bad-7a5c4fb6326a412dd485e3c85759532db6c3fcdb.zip |
add experimental kiosrc plugin
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/kio/Makefile.am:
* ext/kio/kioreceiver.cpp:
* ext/kio/kioreceiver.h:
* ext/kio/kiosrc.cpp:
* ext/kio/kiosrc.h:
add experimental kiosrc plugin
* ext/alsa/gstalsaplugin.c: (plugin_init):
initialize debugging category only when we're sure registering the
plugins worked.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Makefile.am | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index 2f51a467..bff4e4bf 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -76,12 +76,6 @@ else FAAD_DIR= endif -if USE_NAS -NAS_DIR=nas -else -NAS_DIR= -endif - ## if USE_FESTIVAL ## FESTIVAL_DIR=festival ## else @@ -130,6 +124,12 @@ else JPEG_DIR= endif +if USE_KIO +KIO_DIR=kio +else +KIO_DIR= +endif + if USE_LADSPA LADSPA_DIR=ladspa else @@ -214,6 +214,12 @@ else MUSICBRAINZ_DIR= endif +if USE_NAS +NAS_DIR=nas +else +NAS_DIR= +endif + if USE_OGG OGG_DIR=ogg else @@ -338,6 +344,7 @@ SUBDIRS=\ $(HERMES_DIR) \ $(JACK_DIR) \ $(JPEG_DIR) \ + $(KIO_DIR) \ $(LADSPA_DIR) \ $(LAME_DIR) \ $(LCS_DIR) \ @@ -393,6 +400,7 @@ DIST_SUBDIRS=\ ivorbis \ jack \ jpeg \ + kio \ ladspa \ lame \ lcs \ |