tag: fix up disting of lang-tables.c more correctly
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 7 Jan 2010 15:26:57 +0000 (15:26 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 7 Jan 2010 15:49:53 +0000 (15:49 +0000)
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
gst-libs/gst/tag/lang-tables.dat [moved from gst-libs/gst/tag/lang-tables.c with 100% similarity]
gst-libs/gst/tag/lang.c

index cef03c8..15888ed 100644 (file)
@@ -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
index 2a8cb6f..dc212ef 100644 (file)
@@ -47,7 +47,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include "lang-tables.c"
+#include "lang-tables.dat"
 
 /* FIXME: remove once we depend on GLib >= 2.22 */
 #if !GLIB_CHECK_VERSION (2, 22, 0)