gst/Makefile.am

Original commit message from CVS:

* gst/Makefile.am
* tests/examples/Makefile.am:
fix --disable-parse build
This commit is contained in:
Thomas Vander Stichele 2006-03-21 17:25:22 +00:00
parent e5b9797af6
commit 94cb0d62f0
4 changed files with 25 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2006-03-21 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/Makefile.am
* tests/examples/Makefile.am:
fix --disable-parse build
2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
* tools/gst-feedback.1.in:

2
docs/gst/.gitignore vendored
View file

@ -35,3 +35,5 @@ html-build.stamp
*.ps
gtkdoc-fixxref
xml
gstreamer.types

View file

@ -14,10 +14,12 @@ endif
if GST_DISABLE_PARSE
GST_PARSE_SRC =
GST_PARSE_H =
SUBDIRS_PARSE =
GST_PARSE_LA =
else
GST_PARSE_SRC = gstparse.c
GST_PARSE_H = gstparse.h
SUBDIRS_PARSE = parse
GST_PARSE_LA = parse/libgstparse.la
endif
@ -188,13 +190,16 @@ gst_headers = \
gstutils.h \
gstvalue.h \
gstregistry.h \
gstparse.h \
$(GST_PARSE_H) \
gstxml.h
libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers)
nodist_libgstreamer_@GST_MAJORMINOR@include_HEADERS = \
$(built_header_configure) $(built_header_make)
EXTRA_DIST = \
gstparse.h
noinst_HEADERS = \
gettext.h \
glib-compat-private.h \

View file

@ -4,10 +4,15 @@ else
GST_LOADSAVE_DIRS = xml typefind
endif
dirs = \
if GST_DISABLE_PARSE
GST_PARSE_DIRS =
else
GST_PARSE_DIRS = launch
endif
always_dirs = \
controller \
helloworld \
launch \
metadata \
queue
@ -27,7 +32,9 @@ dirs = \
#retag
#thread
SUBDIRS = $(dirs) \
SUBDIRS = \
$(always_dirs) \
$(GST_PARSE_DIRS) \
$(GST_LOADSAVE_DIRS)
DIST_SUBDIRS = $(dirs) xml typefind
DIST_SUBDIRS = $(always_dirs) xml typefind launch