From 17e1d8d20afa25e3f03264f70491ab2798ae287b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 7 Jan 2010 15:26:57 +0000 Subject: [PATCH] tag: fix up disting of lang-tables.c more correctly lang-tables.c is included by lang.c and not really a proper source file that should be compiled into its own object, so rename it to lang-tables.dat and put it into EXTRA_DIST instead to ensure it gets disted. --- gst-libs/gst/tag/Makefile.am | 5 ++++- gst-libs/gst/tag/{lang-tables.c => lang-tables.dat} | 0 gst-libs/gst/tag/lang.c | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) rename gst-libs/gst/tag/{lang-tables.c => lang-tables.dat} (100%) diff --git a/gst-libs/gst/tag/Makefile.am b/gst-libs/gst/tag/Makefile.am index cef03c8076..15888ed6dd 100644 --- a/gst-libs/gst/tag/Makefile.am +++ b/gst-libs/gst/tag/Makefile.am @@ -6,11 +6,14 @@ libgsttaginclude_HEADERS = \ lib_LTLIBRARIES = libgsttag-@GST_MAJORMINOR@.la -libgsttag_@GST_MAJORMINOR@_la_SOURCES = gstvorbistag.c gstid3tag.c lang.c tags.c gsttagdemux.c lang-tables.c +libgsttag_@GST_MAJORMINOR@_la_SOURCES = gstvorbistag.c gstid3tag.c lang.c tags.c gsttagdemux.c libgsttag_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) libgsttag_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) libgsttag_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS) +# lang-tables.dat contains generated static data and is included by lang.c +EXTRA_DIST = lang-tables.dat + noinst_HEADERS = gsttageditingprivate.h if HAVE_INTROSPECTION diff --git a/gst-libs/gst/tag/lang-tables.c b/gst-libs/gst/tag/lang-tables.dat similarity index 100% rename from gst-libs/gst/tag/lang-tables.c rename to gst-libs/gst/tag/lang-tables.dat diff --git a/gst-libs/gst/tag/lang.c b/gst-libs/gst/tag/lang.c index 2a8cb6fd27..dc212eff94 100644 --- a/gst-libs/gst/tag/lang.c +++ b/gst-libs/gst/tag/lang.c @@ -47,7 +47,7 @@ #include #include -#include "lang-tables.c" +#include "lang-tables.dat" /* FIXME: remove once we depend on GLib >= 2.22 */ #if !GLIB_CHECK_VERSION (2, 22, 0)