From 65d96c70634b527ef8fc9f0b1669f42b87e788b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 30 Jan 2008 19:19:33 +0000 Subject: Fix build with exempi >= 1.99.5 and fix the include path for exempi. Original commit message from CVS: * configure.ac: * ext/metadata/metadataxmp.c: (metadatamux_xmp_for_each_tag_in_list): Fix build with exempi >= 1.99.5 and fix the include path for exempi. --- ext/metadata/metadataxmp.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/metadata/metadataxmp.c b/ext/metadata/metadataxmp.c index 8ea71d0a..6226ba8e 100644 --- a/ext/metadata/metadataxmp.c +++ b/ext/metadata/metadataxmp.c @@ -127,7 +127,7 @@ metadatamux_xmp_create_chunk_from_tag_list (guint8 ** buf, guint32 * size, * includes */ -#include +#include #include /* @@ -829,13 +829,21 @@ metadatamux_xmp_for_each_tag_in_list (const GstTagList * list, NULL, &options)) { if (XMP_IS_PROP_SIMPLE (options)) { +#ifdef XMP_1_99_5 + xmp_set_property (xmp, smap->schema, stagmap->xmp_tag, value, 0); +#else xmp_set_property (xmp, smap->schema, stagmap->xmp_tag, value); +#endif } else { xmp_set_array_item (xmp, smap->schema, stagmap->xmp_tag, 1, value, 0); } } else { +#ifdef XMP_1_99_5 + xmp_set_property (xmp, smap->schema, stagmap->xmp_tag, value, 0); +#else xmp_set_property (xmp, smap->schema, stagmap->xmp_tag, value); +#endif } g_free (value); -- cgit v1.2.1