mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
various fixes to make
Original commit message from CVS: * configure.ac: * gst/Makefile.am: * gst/gst.c: * gst/gstplugin.h: * gst/gstregistry.h: * tests/benchmarks/complexity.c: * tests/benchmarks/mass-elements.c: * tests/check/Makefile.am: * tools/Makefile.am: * tools/gst-inspect.c: * tools/gst-xmlinspect.c: various fixes to make --disable-nls --disable-registry --disable-loadsave --disable-parse --disable-gst-debug work and get the core .so down to 360444 bytes after stripping
This commit is contained in:
parent
686d8e5838
commit
870761131b
12 changed files with 97 additions and 18 deletions
18
ChangeLog
18
ChangeLog
|
@ -1,3 +1,21 @@
|
||||||
|
2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
* gst/Makefile.am:
|
||||||
|
* gst/gst.c:
|
||||||
|
* gst/gstplugin.h:
|
||||||
|
* gst/gstregistry.h:
|
||||||
|
* tests/benchmarks/complexity.c:
|
||||||
|
* tests/benchmarks/mass-elements.c:
|
||||||
|
* tests/check/Makefile.am:
|
||||||
|
* tools/Makefile.am:
|
||||||
|
* tools/gst-inspect.c:
|
||||||
|
* tools/gst-xmlinspect.c:
|
||||||
|
various fixes to make
|
||||||
|
--disable-nls --disable-registry --disable-loadsave
|
||||||
|
--disable-parse --disable-gst-debug
|
||||||
|
work and get the core .so down to 360444 bytes after stripping
|
||||||
|
|
||||||
2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* Makefile.am:
|
* Makefile.am:
|
||||||
|
|
17
configure.ac
17
configure.ac
|
@ -64,6 +64,14 @@ GST_CHECK_SUBSYSTEM_DISABLE(GST_DEBUG,[debugging subsystem])
|
||||||
AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, test "x$GST_GST_DISABLE_DEBUG" = "xyes")
|
AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, test "x$GST_GST_DISABLE_DEBUG" = "xyes")
|
||||||
GST_CHECK_SUBSYSTEM_DISABLE(LOADSAVE,[pipeline XML load/save])
|
GST_CHECK_SUBSYSTEM_DISABLE(LOADSAVE,[pipeline XML load/save])
|
||||||
AM_CONDITIONAL(GST_DISABLE_LOADSAVE, test "x$GST_DISABLE_LOADSAVE" = "xyes")
|
AM_CONDITIONAL(GST_DISABLE_LOADSAVE, test "x$GST_DISABLE_LOADSAVE" = "xyes")
|
||||||
|
dnl define a substitution to use in docs/gst/gstreamer.types
|
||||||
|
if test "x$GST_DISABLE_LOADSAVE" = "xyes"
|
||||||
|
then
|
||||||
|
GST_LOADSAVE_DOC_TYPES="%"
|
||||||
|
else
|
||||||
|
GST_LOADSAVE_DOC_TYPES=
|
||||||
|
fi
|
||||||
|
AC_SUBST(GST_LOADSAVE_DOC_TYPES)
|
||||||
GST_CHECK_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
|
GST_CHECK_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
|
||||||
AM_CONDITIONAL(GST_DISABLE_PARSE, test "x$GST_DISABLE_PARSE" = "xyes")
|
AM_CONDITIONAL(GST_DISABLE_PARSE, test "x$GST_DISABLE_PARSE" = "xyes")
|
||||||
GST_CHECK_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
|
GST_CHECK_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
|
||||||
|
@ -72,6 +80,14 @@ GST_CHECK_SUBSYSTEM_DISABLE(ALLOC_TRACE,[allocation tracing])
|
||||||
AM_CONDITIONAL(GST_DISABLE_ALLOC_TRACE, test "x$GST_DISABLE_ALLOC_TRACE" = "xyes")
|
AM_CONDITIONAL(GST_DISABLE_ALLOC_TRACE, test "x$GST_DISABLE_ALLOC_TRACE" = "xyes")
|
||||||
GST_CHECK_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
|
GST_CHECK_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
|
||||||
AM_CONDITIONAL(GST_DISABLE_REGISTRY, test "x$GST_DISABLE_REGISTRY" = "xyes")
|
AM_CONDITIONAL(GST_DISABLE_REGISTRY, test "x$GST_DISABLE_REGISTRY" = "xyes")
|
||||||
|
dnl define a substitution to use in docs/gst/gstreamer.types
|
||||||
|
if test "x$GST_DISABLE_REGISTRY" = "xyes"
|
||||||
|
then
|
||||||
|
GST_REGISTRY_DOC_TYPES="%"
|
||||||
|
else
|
||||||
|
GST_REGISTRY_DOC_TYPES=
|
||||||
|
fi
|
||||||
|
AC_SUBST(GST_REGISTRY_DOC_TYPES)
|
||||||
GST_CHECK_SUBSYSTEM_DISABLE(ENUMTYPES,[enum types])
|
GST_CHECK_SUBSYSTEM_DISABLE(ENUMTYPES,[enum types])
|
||||||
AM_CONDITIONAL(GST_DISABLE_ENUMTYPES, test "x$GST_DISABLE_ENUMTYPES" = "xyes")
|
AM_CONDITIONAL(GST_DISABLE_ENUMTYPES, test "x$GST_DISABLE_ENUMTYPES" = "xyes")
|
||||||
GST_CHECK_SUBSYSTEM_DISABLE(INDEX,[index])
|
GST_CHECK_SUBSYSTEM_DISABLE(INDEX,[index])
|
||||||
|
@ -495,6 +511,7 @@ common/m4/Makefile
|
||||||
docs/Makefile
|
docs/Makefile
|
||||||
docs/faq/Makefile
|
docs/faq/Makefile
|
||||||
docs/gst/Makefile
|
docs/gst/Makefile
|
||||||
|
docs/gst/gstreamer.types
|
||||||
docs/libs/Makefile
|
docs/libs/Makefile
|
||||||
docs/manual/Makefile
|
docs/manual/Makefile
|
||||||
docs/pwg/Makefile
|
docs/pwg/Makefile
|
||||||
|
|
|
@ -6,12 +6,20 @@ else
|
||||||
GST_LOADSAVE_SRC = gstxml.c
|
GST_LOADSAVE_SRC = gstxml.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if GST_DISABLE_REGISTRY
|
||||||
|
GST_REGISTRY_SRC =
|
||||||
|
else
|
||||||
|
GST_REGISTRY_SRC = gstregistryxml.c
|
||||||
|
endif
|
||||||
|
|
||||||
if GST_DISABLE_PARSE
|
if GST_DISABLE_PARSE
|
||||||
GST_PARSE_SRC =
|
GST_PARSE_SRC =
|
||||||
|
GST_PARSE_H =
|
||||||
SUBDIRS_PARSE =
|
SUBDIRS_PARSE =
|
||||||
GST_PARSE_LA =
|
GST_PARSE_LA =
|
||||||
else
|
else
|
||||||
GST_PARSE_SRC = gstparse.c
|
GST_PARSE_SRC = gstparse.c
|
||||||
|
GST_PARSE_H = gstparse.h
|
||||||
SUBDIRS_PARSE = parse
|
SUBDIRS_PARSE = parse
|
||||||
GST_PARSE_LA = parse/libgstparse.la
|
GST_PARSE_LA = parse/libgstparse.la
|
||||||
endif
|
endif
|
||||||
|
@ -58,7 +66,7 @@ built_header_make = gstenumtypes.h gstmarshal.h
|
||||||
built_source_make = $(GST_ENUMTYPES_SRC) gstmarshal.c
|
built_source_make = $(GST_ENUMTYPES_SRC) gstmarshal.c
|
||||||
|
|
||||||
EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
||||||
gstmarshal.list gstxml.c gstparse.c gsttrace.c
|
gstmarshal.list gstxml.c gstparse.c gsttrace.c gstregistryxml.c
|
||||||
|
|
||||||
libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
||||||
glib-compat.c \
|
glib-compat.c \
|
||||||
|
@ -90,7 +98,6 @@ libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
||||||
gstpluginfeature.c \
|
gstpluginfeature.c \
|
||||||
gstquery.c \
|
gstquery.c \
|
||||||
gstregistry.c \
|
gstregistry.c \
|
||||||
gstregistryxml.c \
|
|
||||||
gstsegment.c \
|
gstsegment.c \
|
||||||
gststructure.c \
|
gststructure.c \
|
||||||
gstsystemclock.c \
|
gstsystemclock.c \
|
||||||
|
@ -105,6 +112,7 @@ libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
||||||
gstvalue.c \
|
gstvalue.c \
|
||||||
$(GST_PARSE_SRC) \
|
$(GST_PARSE_SRC) \
|
||||||
$(GSTARCH_SRCS) \
|
$(GSTARCH_SRCS) \
|
||||||
|
$(GSTREGISTRY_SRC) \
|
||||||
$(GST_LOADSAVE_SRC)
|
$(GST_LOADSAVE_SRC)
|
||||||
|
|
||||||
# do not put files in the distribution that are generated
|
# do not put files in the distribution that are generated
|
||||||
|
@ -183,7 +191,7 @@ gst_headers = \
|
||||||
gstutils.h \
|
gstutils.h \
|
||||||
gstvalue.h \
|
gstvalue.h \
|
||||||
gstregistry.h \
|
gstregistry.h \
|
||||||
gstparse.h \
|
$(GST_PARSE_H) \
|
||||||
gstxml.h
|
gstxml.h
|
||||||
|
|
||||||
libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers)
|
libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers)
|
||||||
|
|
|
@ -170,6 +170,7 @@ enum
|
||||||
#define NUL '\0'
|
#define NUL '\0'
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef GST_DISABLE_GST_DEBUG
|
||||||
static gboolean
|
static gboolean
|
||||||
parse_debug_category (gchar * str, const gchar ** category)
|
parse_debug_category (gchar * str, const gchar ** category)
|
||||||
{
|
{
|
||||||
|
@ -239,6 +240,7 @@ parse_debug_list (const gchar * list)
|
||||||
|
|
||||||
g_strfreev (split);
|
g_strfreev (split);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef GST_HAVE_GLIB_2_8
|
#ifndef GST_HAVE_GLIB_2_8
|
||||||
#define G_OPTION_FLAG_NO_ARG 0
|
#define G_OPTION_FLAG_NO_ARG 0
|
||||||
|
@ -476,7 +478,7 @@ init_pre (void)
|
||||||
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
||||||
#endif /* ENABLE_NLS */
|
#endif /* ENABLE_NLS */
|
||||||
|
|
||||||
#ifndef GST_DISABLE_REGISTRY
|
#ifndef GST_DISABLE_GST_DEBUG
|
||||||
{
|
{
|
||||||
const gchar *debug_list;
|
const gchar *debug_list;
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#include <gst/gstconfig.h>
|
#include <gst/gstconfig.h>
|
||||||
|
|
||||||
#include <time.h> /* time_t */
|
#include <time.h> /* time_t */
|
||||||
|
#include <sys/types.h> /* off_t */
|
||||||
#include <sys/stat.h> /* off_t */
|
#include <sys/stat.h> /* off_t */
|
||||||
#include <gmodule.h>
|
#include <gmodule.h>
|
||||||
#include <gst/gstobject.h>
|
#include <gst/gstobject.h>
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#ifndef __GST_REGISTRY_H__
|
#ifndef __GST_REGISTRY_H__
|
||||||
#define __GST_REGISTRY_H__
|
#define __GST_REGISTRY_H__
|
||||||
|
|
||||||
|
#include <stdio.h> /* FIXME: because of cache_file below */
|
||||||
#include <gst/gstplugin.h>
|
#include <gst/gstplugin.h>
|
||||||
#include <gst/gstpluginfeature.h>
|
#include <gst/gstpluginfeature.h>
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
#define BUFFER_COUNT (1000)
|
#define BUFFER_COUNT (1000)
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
#define IDENTITY_COUNT (1000)
|
#define IDENTITY_COUNT (1000)
|
||||||
|
|
|
@ -27,6 +27,12 @@ clean-local: clean-local-check
|
||||||
# checks to fix
|
# checks to fix
|
||||||
# gst/gstplugin
|
# gst/gstplugin
|
||||||
|
|
||||||
|
if GST_DISABLE_PARSE
|
||||||
|
PARSE_CHECKS =
|
||||||
|
else
|
||||||
|
PARSE_CHECKS = pipelines/simple-launch-lines pipelines/cleanup
|
||||||
|
endif
|
||||||
|
|
||||||
check_PROGRAMS = \
|
check_PROGRAMS = \
|
||||||
gst/gst \
|
gst/gst \
|
||||||
gst/gstbin \
|
gst/gstbin \
|
||||||
|
@ -53,9 +59,8 @@ check_PROGRAMS = \
|
||||||
elements/fdsrc \
|
elements/fdsrc \
|
||||||
generic/sinks \
|
generic/sinks \
|
||||||
generic/states \
|
generic/states \
|
||||||
pipelines/simple-launch-lines \
|
$(PARSE_CHECKS) \
|
||||||
pipelines/stress \
|
pipelines/stress \
|
||||||
pipelines/cleanup \
|
|
||||||
libs/controller \
|
libs/controller \
|
||||||
libs/gdp \
|
libs/gdp \
|
||||||
libs/gstnetclientclock \
|
libs/gstnetclientclock \
|
||||||
|
|
|
@ -9,23 +9,31 @@ GST_LOADSAVE_SRC_V = \
|
||||||
gst-xmllaunch-@GST_MAJORMINOR@
|
gst-xmllaunch-@GST_MAJORMINOR@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if GST_DISABLE_PARSE
|
||||||
|
GST_PARSE_SRC =
|
||||||
|
GST_PARSE_SRC_V =
|
||||||
|
else
|
||||||
|
GST_PARSE_SRC = gst-launch gst-md5sum
|
||||||
|
GST_PARSE_SRC_V = \
|
||||||
|
gst-launch-@GST_MAJORMINOR@ \
|
||||||
|
gst-md5sum-@GST_MAJORMINOR@
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
GST_OTHER_SRC = \
|
GST_OTHER_SRC = \
|
||||||
gst-feedback \
|
gst-feedback \
|
||||||
gst-inspect \
|
gst-inspect \
|
||||||
gst-launch \
|
|
||||||
gst-md5sum \
|
|
||||||
gst-typefind \
|
gst-typefind \
|
||||||
gst-xmlinspect
|
gst-xmlinspect
|
||||||
GST_OTHER_SRC_V = \
|
GST_OTHER_SRC_V = \
|
||||||
gst-inspect-@GST_MAJORMINOR@ \
|
gst-inspect-@GST_MAJORMINOR@ \
|
||||||
gst-launch-@GST_MAJORMINOR@ \
|
|
||||||
gst-md5sum-@GST_MAJORMINOR@ \
|
|
||||||
gst-typefind-@GST_MAJORMINOR@ \
|
gst-typefind-@GST_MAJORMINOR@ \
|
||||||
gst-xmlinspect-@GST_MAJORMINOR@
|
gst-xmlinspect-@GST_MAJORMINOR@
|
||||||
|
|
||||||
### so all of the programs we want to build
|
### so all of the programs we want to build
|
||||||
bin_PROGRAMS = \
|
bin_PROGRAMS = \
|
||||||
$(GST_LOADSAVE_SRC) $(GST_LOADSAVE_SRC_V) \
|
$(GST_LOADSAVE_SRC) $(GST_LOADSAVE_SRC_V) \
|
||||||
|
$(GST_PARSE_SRC) $(GST_PARSE_SRC_V) \
|
||||||
$(GST_OTHER_SRC) $(GST_OTHER_SRC_V)
|
$(GST_OTHER_SRC) $(GST_OTHER_SRC_V)
|
||||||
bin_SCRIPTS = gst-feedback-@GST_MAJORMINOR@
|
bin_SCRIPTS = gst-feedback-@GST_MAJORMINOR@
|
||||||
|
|
||||||
|
@ -35,15 +43,19 @@ gst_xmllaunch_@GST_MAJORMINOR@_SOURCES = gst-launch.c
|
||||||
gst_xmllaunch_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
gst_xmllaunch_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||||
gst_xmllaunch_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
gst_xmllaunch_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||||
endif
|
endif
|
||||||
gst_inspect_@GST_MAJORMINOR@_SOURCES = gst-inspect.c
|
|
||||||
gst_inspect_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
if !GST_DISABLE_PARSE
|
||||||
gst_inspect_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
|
||||||
gst_launch_@GST_MAJORMINOR@_SOURCES = gst-launch.c
|
gst_launch_@GST_MAJORMINOR@_SOURCES = gst-launch.c
|
||||||
gst_launch_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
gst_launch_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||||
gst_launch_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
gst_launch_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||||
gst_md5sum_@GST_MAJORMINOR@_SOURCES = gst-md5sum.c
|
gst_md5sum_@GST_MAJORMINOR@_SOURCES = gst-md5sum.c
|
||||||
gst_md5sum_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
gst_md5sum_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||||
gst_md5sum_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
gst_md5sum_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||||
|
endif
|
||||||
|
|
||||||
|
gst_inspect_@GST_MAJORMINOR@_SOURCES = gst-inspect.c
|
||||||
|
gst_inspect_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||||
|
gst_inspect_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||||
gst_typefind_@GST_MAJORMINOR@_SOURCES = gst-typefind.c
|
gst_typefind_@GST_MAJORMINOR@_SOURCES = gst-typefind.c
|
||||||
gst_typefind_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
gst_typefind_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||||
gst_typefind_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
gst_typefind_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||||
|
@ -59,10 +71,14 @@ gst-feedback-@GST_MAJORMINOR@: gst-feedback-m.m
|
||||||
if !GST_DISABLE_LOADSAVE
|
if !GST_DISABLE_LOADSAVE
|
||||||
gst_xmllaunch_SOURCES = gst-run.c
|
gst_xmllaunch_SOURCES = gst-run.c
|
||||||
endif
|
endif
|
||||||
gst_feedback_SOURCES = gst-run.c
|
|
||||||
gst_inspect_SOURCES = gst-run.c
|
if !GST_DISABLE_PARSE
|
||||||
gst_launch_SOURCES = gst-run.c
|
gst_launch_SOURCES = gst-run.c
|
||||||
gst_md5sum_SOURCES = gst-run.c
|
gst_md5sum_SOURCES = gst-run.c
|
||||||
|
endif
|
||||||
|
|
||||||
|
gst_feedback_SOURCES = gst-run.c
|
||||||
|
gst_inspect_SOURCES = gst-run.c
|
||||||
gst_typefind_SOURCES = gst-run.c
|
gst_typefind_SOURCES = gst-run.c
|
||||||
gst_xmlinspect_SOURCES = gst-run.c
|
gst_xmlinspect_SOURCES = gst-run.c
|
||||||
|
|
||||||
|
@ -80,15 +96,22 @@ GST_LOADSAVE_MAN = \
|
||||||
gst-xmllaunch-@GST_MAJORMINOR@.1
|
gst-xmllaunch-@GST_MAJORMINOR@.1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if GST_DISABLE_PARSE
|
||||||
|
GST_PARSE_MAN=
|
||||||
|
else
|
||||||
|
GST_PARSE_MAN = \
|
||||||
|
gst-launch-@GST_MAJORMINOR@.1 \
|
||||||
|
gst-md5sum-@GST_MAJORMINOR@.1
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
GST_OTHER_MAN = \
|
GST_OTHER_MAN = \
|
||||||
gst-feedback-@GST_MAJORMINOR@.1 \
|
gst-feedback-@GST_MAJORMINOR@.1 \
|
||||||
gst-inspect-@GST_MAJORMINOR@.1 \
|
gst-inspect-@GST_MAJORMINOR@.1 \
|
||||||
gst-launch-@GST_MAJORMINOR@.1 \
|
|
||||||
gst-md5sum-@GST_MAJORMINOR@.1 \
|
|
||||||
gst-typefind-@GST_MAJORMINOR@.1 \
|
gst-typefind-@GST_MAJORMINOR@.1 \
|
||||||
gst-xmlinspect-@GST_MAJORMINOR@.1
|
gst-xmlinspect-@GST_MAJORMINOR@.1
|
||||||
|
|
||||||
manpages = $(GST_LOADSAVE_MAN) $(GST_OTHER_MAN)
|
manpages = $(GST_LOADSAVE_MAN) $(GST_PARSE_MAN) $(GST_OTHER_MAN)
|
||||||
|
|
||||||
CLEANFILES = $(manpages) $(bin_SCRIPTS)
|
CLEANFILES = $(manpages) $(bin_SCRIPTS)
|
||||||
man_MANS = $(manpages)
|
man_MANS = $(manpages)
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
|
|
||||||
#include "gst/gst-i18n-app.h"
|
#include "gst/gst-i18n-app.h"
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include <glib/gprintf.h>
|
#include <glib/gprintf.h>
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include <glib/gprintf.h>
|
#include <glib/gprintf.h>
|
||||||
|
|
Loading…
Reference in a new issue