[Debburn-changes] r574 - in cdrkit/trunk: . genisoimage

Eduard Bloch blade at alioth.debian.org
Thu Dec 7 14:26:34 CET 2006


Author: blade
Date: 2006-12-07 14:26:34 +0100 (Thu, 07 Dec 2006)
New Revision: 574

Modified:
   cdrkit/trunk/Changelog
   cdrkit/trunk/genisoimage/apple.c
Log:
Thomas's workaround for MAGIC_ERROR

Modified: cdrkit/trunk/Changelog
===================================================================
--- cdrkit/trunk/Changelog	2006-12-07 11:24:19 UTC (rev 573)
+++ cdrkit/trunk/Changelog	2006-12-07 13:26:34 UTC (rev 574)
@@ -5,6 +5,9 @@
   * Added more DVD related fixes from SuSE's wodim-1.0pre5cvs-6.src.rpm
   * added geteltorito
 
+  [ Thomas Schmidt ]
+  * workaround for older libmagic API
+
  -- Eduard Bloch <blade at debian.org>  Sat,  2 Dec 2006 23:05:33 +0100
 
 cdrkit (1.1.0) RELEASED; urgency=medium

Modified: cdrkit/trunk/genisoimage/apple.c
===================================================================
--- cdrkit/trunk/genisoimage/apple.c	2006-12-07 11:24:19 UTC (rev 573)
+++ cdrkit/trunk/genisoimage/apple.c	2006-12-07 13:26:34 UTC (rev 574)
@@ -64,6 +64,10 @@
 #ifdef USE_MAGIC
 #include <magic.h>
 magic_t magic_state = NULL;
+#ifndef MAGIC_ERROR
+/* workaround for older ´API */
+#define MAGIC_ERROR
+#endif
 #endif /* USE_MAGIC */
 
 /* tidy up genisoimage definition ... */




More information about the Debburn-changes mailing list