Hello,

I'm doing an NMU of libannodex to fix #372275; diff attached.

Thanks,

Matej
diff -u libannodex-0.7.3/debian/changelog libannodex-0.7.3/debian/changelog
--- libannodex-0.7.3/debian/changelog
+++ libannodex-0.7.3/debian/changelog
@@ -1,3 +1,13 @@
+libannodex (0.7.3-3.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Build against libcmml1-dev.  Closes: #372275.
+  * src/importers/anx_import_cmml.c: CMML_LinkElement::class has been
+    renamed to CMML_LinkElement::link_class; CMML_Clip::class has been
+    renamed to CMML_Clip::clip_class.
+
+ -- Matej Vela <[EMAIL PROTECTED]>  Mon, 19 Jun 2006 05:56:52 +0200
+
 libannodex (0.7.3-3) unstable; urgency=low
 
   * Build against libcmml0-dev 0.9.0 (libcmml API changed at 0.9.1 and
diff -u libannodex-0.7.3/debian/control libannodex-0.7.3/debian/control
--- libannodex-0.7.3/debian/control
+++ libannodex-0.7.3/debian/control
@@ -2,7 +2,7 @@
 Section: net
 Priority: optional
 Maintainer: Jamie Wilkinson <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 4.0.0), liboggz1-dev (>= 0.9.1), libcmml0-dev (>= 
0.9.0), pkg-config, libsndfile1-dev, doxygen, docbook-to-man
+Build-Depends: debhelper (>> 4.0.0), liboggz1-dev (>= 0.9.1), libcmml1-dev, 
pkg-config, libsndfile1-dev, doxygen, docbook-to-man
 Standards-Version: 3.6.2
 
 Package: libannodex0
only in patch2:
unchanged:
--- libannodex-0.7.3.orig/src/importers/anx_import_cmml.c
+++ libannodex-0.7.3/src/importers/anx_import_cmml.c
@@ -99,7 +99,7 @@
 
   new_link = (AnxLinkElement* ) anx_malloc (sizeof (AnxLinkElement));
   new_link->id = anxcmml_strdup (link->id);
-  new_link->class = anxcmml_strdup (link->class);
+  new_link->class = anxcmml_strdup (link->link_class);
   new_link->title = anxcmml_strdup (link->title);
   new_link->lang = anxcmml_strdup (link->lang);
   new_link->dir = anxcmml_strdup (link->dir);
@@ -258,7 +258,7 @@
 
   /* copy clip data across */
   a->clip_id = anxcmml_strdup (clip->clip_id);
-  a->class = anxcmml_strdup (clip->class);
+  a->class = anxcmml_strdup (clip->clip_class);
   a->title = anxcmml_strdup (clip->title);
   a->lang = anxcmml_strdup (clip->lang);
   a->dir = anxcmml_strdup (clip->dir);

Reply via email to