[Debburn-changes] r313 - nonameyet/trunk/mkisofs

Eduard Bloch blade at costa.debian.org
Fri Sep 15 12:38:06 UTC 2006


Author: blade
Date: 2006-09-15 12:38:05 +0000 (Fri, 15 Sep 2006)
New Revision: 313

Added:
   nonameyet/trunk/mkisofs/endianconv.h
Removed:
   nonameyet/trunk/mkisofs/endian.h
Modified:
   nonameyet/trunk/mkisofs/boot-alpha.c
   nonameyet/trunk/mkisofs/boot-hppa.c
   nonameyet/trunk/mkisofs/boot-mips.c
   nonameyet/trunk/mkisofs/boot-mipsel.c
   nonameyet/trunk/mkisofs/endian.c
   nonameyet/trunk/mkisofs/jte.c
Log:
Renamed local endian.h to endianconv.h, safe is safe

Modified: nonameyet/trunk/mkisofs/boot-alpha.c
===================================================================
--- nonameyet/trunk/mkisofs/boot-alpha.c	2006-09-15 12:27:18 UTC (rev 312)
+++ nonameyet/trunk/mkisofs/boot-alpha.c	2006-09-15 12:38:05 UTC (rev 313)
@@ -43,7 +43,7 @@
 #include "diskmbr.h"
 #include "bootinfo.h"
 #include <schily.h>
-#include "endian.h"
+#include "endianconv.h"
 
         int     add_boot_alpha_filename   __PR((char *filename));
 static  int     boot_alpha_write          __PR((FILE *outfile));

Modified: nonameyet/trunk/mkisofs/boot-hppa.c
===================================================================
--- nonameyet/trunk/mkisofs/boot-hppa.c	2006-09-15 12:27:18 UTC (rev 312)
+++ nonameyet/trunk/mkisofs/boot-hppa.c	2006-09-15 12:38:05 UTC (rev 313)
@@ -51,7 +51,7 @@
 #include "diskmbr.h"
 #include "bootinfo.h"
 #include <schily.h>
-#include "endian.h"
+#include "endianconv.h"
 
 int     add_boot_hppa_cmdline     __PR((char *cmdline));
 int     add_boot_hppa_kernel_32   __PR((char *filename));

Modified: nonameyet/trunk/mkisofs/boot-mips.c
===================================================================
--- nonameyet/trunk/mkisofs/boot-mips.c	2006-09-15 12:27:18 UTC (rev 312)
+++ nonameyet/trunk/mkisofs/boot-mips.c	2006-09-15 12:38:05 UTC (rev 313)
@@ -193,7 +193,7 @@
 #include "diskmbr.h"
 #include "bootinfo.h"
 #include <schily.h>
-#include "endian.h"
+#include "endianconv.h"
 
 int     add_boot_mips_filename    __PR((char *filename));
 

Modified: nonameyet/trunk/mkisofs/boot-mipsel.c
===================================================================
--- nonameyet/trunk/mkisofs/boot-mipsel.c	2006-09-15 12:27:18 UTC (rev 312)
+++ nonameyet/trunk/mkisofs/boot-mipsel.c	2006-09-15 12:38:05 UTC (rev 313)
@@ -64,7 +64,7 @@
 #include "diskmbr.h"
 #include "bootinfo.h"
 #include <schily.h>
-#include "endian.h"
+#include "endianconv.h"
 #include <errno.h>
 #include <elf.h>
 

Modified: nonameyet/trunk/mkisofs/endian.c
===================================================================
--- nonameyet/trunk/mkisofs/endian.c	2006-09-15 12:27:18 UTC (rev 312)
+++ nonameyet/trunk/mkisofs/endian.c	2006-09-15 12:38:05 UTC (rev 313)
@@ -11,7 +11,7 @@
  */
 
 #include <mconfig.h>
-#include "endian.h"
+#include "endianconv.h"
 
 /* Write a 64-bit quantity out into memory in BIG ENDIAN order */
 void write_be64(in, out)

Deleted: nonameyet/trunk/mkisofs/endian.h
===================================================================
--- nonameyet/trunk/mkisofs/endian.h	2006-09-15 12:27:18 UTC (rev 312)
+++ nonameyet/trunk/mkisofs/endian.h	2006-09-15 12:38:05 UTC (rev 313)
@@ -1,29 +0,0 @@
-/*
- * This file has been modified for the cdrkit suite.
- *
- * The behaviour and appearence of the program code below can differ to a major
- * extent from the version distributed by the original author(s).
- *
- * For details, see Changelog file distributed with the cdrkit package. If you
- * received this file from another source then ask the distributing person for
- * a log of modifications.
- *
- */
-
-void                  write_be64  __PR((unsigned long long in, unsigned char *out));
-unsigned long long    read_be64   __PR((unsigned char *in));
-void                  write_le64  __PR((unsigned long long in, unsigned char *out));
-unsigned long long    read_le64   __PR((unsigned char *in));
-
-void                  write_le48  __PR((unsigned long long in, unsigned char *out));
-unsigned long long    read_le48   __PR((unsigned char *in));
-
-void                  write_be32  __PR((unsigned long in, unsigned char *out));
-unsigned long         read_be32   __PR((unsigned char *in));
-void                  write_le32  __PR((unsigned long in, unsigned char *out));
-unsigned long         read_le32   __PR((unsigned char *in));
-
-void                  write_be16  __PR((unsigned short in, unsigned char *out));
-unsigned short        read_be16   __PR((unsigned char *in));
-void                  write_le16  __PR((unsigned short in, unsigned char *out));
-unsigned short        read_le16   __PR((unsigned char *in));

Copied: nonameyet/trunk/mkisofs/endianconv.h (from rev 312, nonameyet/trunk/mkisofs/endian.h)
===================================================================
--- nonameyet/trunk/mkisofs/endianconv.h	                        (rev 0)
+++ nonameyet/trunk/mkisofs/endianconv.h	2006-09-15 12:38:05 UTC (rev 313)
@@ -0,0 +1,29 @@
+/*
+ * This file has been modified for the cdrkit suite.
+ *
+ * The behaviour and appearence of the program code below can differ to a major
+ * extent from the version distributed by the original author(s).
+ *
+ * For details, see Changelog file distributed with the cdrkit package. If you
+ * received this file from another source then ask the distributing person for
+ * a log of modifications.
+ *
+ */
+
+void                  write_be64  __PR((unsigned long long in, unsigned char *out));
+unsigned long long    read_be64   __PR((unsigned char *in));
+void                  write_le64  __PR((unsigned long long in, unsigned char *out));
+unsigned long long    read_le64   __PR((unsigned char *in));
+
+void                  write_le48  __PR((unsigned long long in, unsigned char *out));
+unsigned long long    read_le48   __PR((unsigned char *in));
+
+void                  write_be32  __PR((unsigned long in, unsigned char *out));
+unsigned long         read_be32   __PR((unsigned char *in));
+void                  write_le32  __PR((unsigned long in, unsigned char *out));
+unsigned long         read_le32   __PR((unsigned char *in));
+
+void                  write_be16  __PR((unsigned short in, unsigned char *out));
+unsigned short        read_be16   __PR((unsigned char *in));
+void                  write_le16  __PR((unsigned short in, unsigned char *out));
+unsigned short        read_le16   __PR((unsigned char *in));

Modified: nonameyet/trunk/mkisofs/jte.c
===================================================================
--- nonameyet/trunk/mkisofs/jte.c	2006-09-15 12:27:18 UTC (rev 312)
+++ nonameyet/trunk/mkisofs/jte.c	2006-09-15 12:38:05 UTC (rev 313)
@@ -31,7 +31,7 @@
 #include "dvd_file.h"
 #include "ifo_read.h"
 #include "md5.h"
-#include "endian.h"
+#include "endianconv.h"
 #endif
 #ifdef APPLE_HYB
 #include <ctype.h>




More information about the Debburn-changes mailing list