Compare commits

...

4 Commits
1.3.6 ... 1.0.2

13 changed files with 400 additions and 95 deletions

View File

@ -1,19 +1,25 @@
SVN trunk (to become libisoburn-1.0.2.pl00.tar.gz)
SVN trunk (to become libisoburn-1.0.4.pl00.tar.gz)
===============================================================================
- no changes yet
libisoburn-1.0.2.pl00.tar.gz Mon Feb 23 2011
===============================================================================
libisoburn novelties:
* Removed compiler obstacles of GNU xorriso on Solaris 9
* New isoburn_igopt_set_extensions() option isoburn_igopt_old_empty
xorriso novelties:
* Bug fix: Images produced with -for_backup might be unreadable and
also fail -check_md5 verification.
* Bug fix: mkisofs emulation options -l , -full-iso9660-filenames did not work.
* Bug fix: Option -mkdir yielded SIGSEGV due to a NULL pointer
* Bug fix: ECMA-119 standards violation with Volume Descriptor Set Terminator
* Removed compiler obstacles of GNU xorriso on Solaris 9
* New isoburn_igopt_set_extensions() option isoburn_igopt_old_empty
* New -as mkisofs option --old-empty
* New options -clone and -cp_clone
* New -find actions update_merge, rm_merge, clear_merge
* New -as mkisofs option -max-iso9660-filenames
* New -as mkisofs option --old-empty
* New -as mkisofs options -root , -old-root
* New -as mkisofs options --old-root-no-md5, --old-root-no-ino, --old-root-dev
libisoburn-1.0.0.pl00.tar.gz Mon Jan 17 2011
===============================================================================
libisoburn novelties:

14
README
View File

@ -4,7 +4,7 @@
libisoburn and xorriso. By Vreixo Formoso <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org.
http://files.libburnia-project.org/releases/libisoburn-1.0.0.pl00.tar.gz
http://files.libburnia-project.org/releases/libisoburn-1.0.2.pl00.tar.gz
Copyright (C) 2006-2011 Vreixo Formoso, Thomas Schmitt.
Provided under GPL version 2 or later.
------------------------------------------------------------------------------
@ -34,17 +34,17 @@ By using this software you agree to the disclaimer at the end of this text:
Compilation, First Glimpse, Installation
Dynamic library and compile time header requirements for libisoburn-1.0.0 :
- libburn.so.4 , version libburn-1.0.0 or higher
- libisofs.so.6 , version libisofs-1.0.0 or higher
Dynamic library and compile time header requirements for libisoburn-1.0.2 :
- libburn.so.4 , version libburn-1.0.2 or higher
- libisofs.so.6 , version libisofs-1.0.2 or higher
libisoburn and xorriso will not start with libraries which are older than their
include headers seen at compile time.
Obtain libisoburn-1.0.0.pl00.tar.gz, take it to a directory of your choice
Obtain libisoburn-1.0.2.pl00.tar.gz, take it to a directory of your choice
and do:
tar xzf libisoburn-1.0.0.pl00.tar.gz
cd libisoburn-1.0.0
tar xzf libisoburn-1.0.2.pl00.tar.gz
cd libisoburn-1.0.2
Within that directory execute:

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [1.0.1], [http://libburnia-project.org])
AC_INIT([libisoburn], [1.0.2], [http://libburnia-project.org])
AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h])
@ -23,7 +23,7 @@ dnl
dnl These three are only copies to provide libtool with unused LT_RELEASE
ISOBURN_MAJOR_VERSION=1
ISOBURN_MINOR_VERSION=0
ISOBURN_MICRO_VERSION=1
ISOBURN_MICRO_VERSION=2
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
@ -36,16 +36,16 @@ dnl Libtool versioning
dnl Generate libisoburn.so.1.x.y
dnl SONAME will become LT_CURRENT - LT_AGE
dnl
dnl ts B10116
dnl ### This is the release version 1.0.0 = libisoburn.so.1.57.0
dnl This is the development version after above stable release
dnl ts B10223
dnl This is the release version 1.0.2 = libisoburn.so.1.59.0
dnl ### This is the development version after above stable release
dnl LT_CURRENT++, LT_AGE++ have not happened yet.
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
dnl
dnl SONAME = 58 - 57 = 1 . Library name = libisoburn.so.1.57.0
dnl SONAME = 60 - 59 = 1 . Library name = libisoburn.so.1.59.0
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=58
LT_AGE=57
LT_CURRENT=60
LT_AGE=59
LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
@ -302,8 +302,8 @@ AC_CHECK_HEADER(libisofs/libisofs.h)
# ------- Visible mark in configure : Start of library check
dnl Check for proper library versions
LIBBURN_REQUIRED=1.0.0
LIBISOFS_REQUIRED=1.0.1
LIBBURN_REQUIRED=1.0.2
LIBISOFS_REQUIRED=1.0.2
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)

View File

@ -224,7 +224,7 @@ void isoburn_version(int *major, int *minor, int *micro);
*/
#define isoburn_libisofs_req_major 1
#define isoburn_libisofs_req_minor 0
#define isoburn_libisofs_req_micro 1
#define isoburn_libisofs_req_micro 2
/** The minimum version of libburn to be used with this version of libisoburn
at compile time.
@ -232,7 +232,7 @@ void isoburn_version(int *major, int *minor, int *micro);
*/
#define isoburn_libburn_req_major 1
#define isoburn_libburn_req_minor 0
#define isoburn_libburn_req_micro 0
#define isoburn_libburn_req_micro 2
/** The minimum compile time requirements of libisoburn towards libjte are
the same as of a suitable libisofs towards libjte.
@ -287,7 +287,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
*/
#define isoburn_header_version_major 1
#define isoburn_header_version_minor 0
#define isoburn_header_version_micro 1
#define isoburn_header_version_micro 2
/** Note:
Above version numbers are also recorded in configure.ac because libtool
wants them as parameters at build time.

View File

@ -4,7 +4,7 @@
GNU xorriso. By Thomas Schmitt <scdbackup@gmx.net>
Derived from and supported by libburnia-project.org, published via:
http://www.gnu.org/software/xorriso/xorriso_eng.html
ftp://ftp.gnu.org/gnu/xorriso/xorriso-1.0.1.tar.gz
ftp://ftp.gnu.org/gnu/xorriso/xorriso-1.0.2.tar.gz
Provided under GPL version 3 or later. No warranty.
------------------------------------------------------------------------------
@ -46,10 +46,10 @@ Optional at compile time are:
If they were present at compile time, then the optional libraries have to
be present at runtime, too.
Obtain xorriso-1.0.1.tar.gz, take it to a directory of your choice and do:
Obtain xorriso-1.0.2.tar.gz, take it to a directory of your choice and do:
tar xzf xorriso-1.0.1.tar.gz
cd xorriso-1.0.1
tar xzf xorriso-1.0.2.tar.gz
cd xorriso-1.0.2
Within that directory execute:
@ -291,9 +291,9 @@ and a matching dynamically linked xorriso binary.
This binary is very lean but depends on properly installed libraries of
suitable revision.
Dynamic library and compile time header requirements for libisoburn-1.0.0 :
- libburn.so.4 , version libburn-1.0.0 or higher
- libisofs.so.6 , version libisofs-1.0.0 or higher
Dynamic library and compile time header requirements for libisoburn-1.0.2 :
- libburn.so.4 , version libburn-1.0.2 or higher
- libisofs.so.6 , version libisofs-1.0.2 or higher
libisoburn and xorriso will not start with libraries which are older than their
headers seen at compile time. So compile in the oldest possible installation
setup unless you have reason to enforce a newer bug fix level.

View File

@ -9496,14 +9496,309 @@ xorriso/configure_ac.txt
xorriso/xorriso_timestamp.h
Version leap to libisoburn-1.0.1
17 Jan 2011 []
17 Jan 2011 [3566]
ChangeLog
xorriso/changelog.txt
Documented changes and release timestamp
17 Jan 2011 [3567]
svn move -m Promoted branch to tag
http://svn.libburnia-project.org/libisoburn/branches/1.0.0
http://svn.libburnia-project.org/libisoburn/tags/1.0.0
------------------------------------ cycle - xorriso-1.0.1 - 2011.01.17.092111
2011.01.18.154443 [3568]
libisoburn/isoburn.h
Avoiding <stdint.h> if not available. Trying to use <inttypes.h> in that case.
2011.01.18.154717 [3569]
xorriso/xorriso_private.h
xorriso/base_obj.c
xorriso/lib_mgt.c
xorriso/write_run.c
Avoiding <stdint.h> if not available. Trying to use <inttypes.h> in that case.
------------------------------------ cycle - xorriso-1.0.1 - 2011.01.18.154717
* Removed compiler obstacles of GNU xorriso on Solaris 9
18 Jan 2011 [3571]
doc/faq.wiki
Small change in FAQ wiki text
19 Jan 2011 [3572]
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
Mentioned missing mkisofs -old-root functionality in man page
------------------------------------ cycle - xorriso-1.0.1 - 2011.01.24.141621
* Bug fix: ECMA-119 standards violation with Volume Descriptor Set Terminator
2011.01.26.132843 [3573]
libisoburn/libisoburn.h
libisoburn/isoburn.h
libisoburn/isoburn.c
New isoburn_igopt_set_extensions() option isoburn_igopt_old_empty
2011.01.26.133107 [3574]
xorriso/xorriso_private.h
xorriso/base_obj.c
xorriso/write_run.c
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
New -compliance option old_empty
26 Jan 2011 [3575]
configure.ac
Requiring libisofs-1.0.1 now
------------------------------------ cycle - xorriso-1.0.1 - 2011.01.26.133107
* New isoburn_igopt_set_extensions() option isoburn_igopt_old_empty
2011.01.26.184140 [3576]
libisoburn/isoburn.c
Followed name change in the yet unstable part of libisofs API
2011.01.26.210359 [3577]
xorriso/emulators.c
New -as mkisofs option --old-empty
------------------------------------ cycle - xorriso-1.0.1 -
* New -as mkisofs option --old-empty
2011.01.31.135917 [3578]
xorriso/iso_manip.c
Bug fix: Option -mkdir yielded SIGSEGV due to a NULL pointer
2011.02.01.185830 [3579]
xorriso/xorriso.h
xorriso/xorrisoburn.h
xorriso/parse_exec.c
xorriso/opts_a_c.c
xorriso/opts_d_h.c
xorriso/iso_manip.c
libisoburn/libisoburn.ver
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
xorriso/xorriso_eng.html
ChangeLog
New option -clone
2011.02.02.174154 [3580]
xorriso/xorrisoburn.h
xorriso/iso_manip.c
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
Disallowed -clone to overwrite existing nodes
2011.02.04.191922 [3581]
xorriso/xorriso.h
xorriso/parse_exec.c
xorriso/opts_a_c.c
xorriso/opts_d_h.c
xorriso/iso_manip.c
xorriso/sfile.c
libisoburn/libisoburn.ver
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
New option -cp_clone
2011.02.07.182947 [3582]
xorriso/cmp_update.c
xorriso/sort_cmp.c
Do not regard file as changed just because no ino was recorded
2011.02.07.184304 [3583]
xorriso/xorrisoburn.h
xorriso/opts_p_z.c
xorriso/emulators.c
xorriso/iso_tree.h
xorriso/iso_tree.c
xorriso/iso_manip.c
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
New -as mkisofs options -root , -old-root, --old-root-no-md5, --old-root-no-ino, --old-root-dev
2011.02.07.202851 [3584]
xorriso/emulators.c
xorriso/iso_manip.c
xorriso/sort_cmp.c
xorriso/iso_tree.h
xorriso/iso_tree.c
Some corrections of the previous commit
2011.02.08.133624 [3585]
xorriso/emulators.c
-as mkisofs: Enabled reading of xattr and md5 before image loading
2011.02.12.171423 [3587]
xorriso/xorriso_private.h
xorriso/xorrisoburn.h
xorriso/base_obj.c
xorriso/opts_a_c.c
xorriso/opts_d_h.c
xorriso/opts_p_z.c
xorriso/emulators.c
xorriso/cmp_update.h
xorriso/cmp_update.c
xorriso/disk_ops.c
xorriso/iso_manip.h
xorriso/iso_manip.c
xorriso/findjob.h
xorriso/lib_mgt.c
xorriso/xorriso.texi
xorriso/xorriso.info
xorriso/xorriso.1
New -find actions update_merge, rm_merge, clear_merge. -cp_clone now merges.
2011.02.12.172930 [3588]
xorriso/cmp_update.c
Reacted on compiler warning about uninitialized variable
2011.02.14.090737 [3590]
xorriso/base_obj.c
xorriso/parse_exec.c
xorriso/filters.c
xorriso/write_run.c
Closed memory leaks detected by valgrind
14 Feb 2011 [3591]
xorriso/xorriso_eng.html
ChangeLog
Updated change log
------------------------------------ cycle - xorriso-1.0.1 - 2011.02.14.090737
* Bug fix: Option -mkdir yielded SIGSEGV due to a NULL pointer
* New options -clone and -cp_clone
* New -find actions update_merge, rm_merge, clear_merge
* New -as mkisofs options -root , -old-root
* New -as mkisofs options --old-root-no-md5, --old-root-no-ino, --old-root-dev
2011.02.19.112243 [3593]
xorriso/emulators.c
Small adjustments in mkisofs emulation
Bug fix: -as mkisofs -l resp. -full-iso9660-filenames did not work
2011.02.19.112439 [3594]
xorriso/filters.c
Updated copyright
2011.02.19.112541 [3595]
xorriso/xorriso.texi
Corrections in xorriso man page
19 Feb 2011 [3596]
xorriso/xorriso_eng.html
ChangeLog
Updated change log
19 Feb 2011 [3597]
xorriso/xorriso.info
xorriso/xorriso.1
info document and man page for recent texi corrections
------------------------------------ cycle - xorriso-1.0.1 - 2011.02.19.112541
* Bug fix in libisofs:
Images produced with -for_backup might be unreadable and
also fail -check_md5 verification.
* Bug fix: mkisofs emulation options -l , -full-iso9660-filenames did not work.
2011.02.21.130729 [3598]
xorriso/emulators.c
Correction about -as mkisofs --old-root-no-ino
2011.02.22.073504 [3599]
xorriso/opts_a_c.c
xorriso/iso_manip.c
Issueing messages with -clone and -cp_clone
2011.02.22.073641 [3600]
xorriso/emulators.c
Corrected a bug that prevented -as mkisofs option -output
2011.02.22.123730 [3601]
xorriso/emulators.c
Made -as mkisofs ignore option -disable-deep-relocation rather than failing
2011.02.22.143131 [3602]
xorriso/emulators.c
New -as mkisofs option -max-iso9660-filenames
22 Feb 2011 [3603]
xorriso/xorriso_eng.html
ChangeLog
Updated change log
------------------------------------ cycle - xorriso-1.0.1 - 2011.02.22.143131
* New -as mkisofs option -max-iso9660-filenames
23 Feb 2011 [3608]
svn copy -m Branching for libisoburn release 1.0.2
http://svn.libburnia-project.org/libisoburn/trunk
http://svn.libburnia-project.org/libisoburn/branches/1.0.2
2011.02.23.140001 [3609]
configure.ac
README
libisoburn/libisoburn.h
xorriso/README_gnu_xorriso
xorriso/xorriso.h
xorriso/xorrisoburn.h
xorriso/xorriso_main.c
xorriso/xorriso_eng.html
xorriso/make_xorriso_standalone.sh
xorriso/configure_ac.txt
xorriso/xorriso_timestamp.h
Version leap to libisoburn-1.0.2
[]
ChangeLog
xorriso/changelog.txt
Documented changes and release timestamp
----------------------------------- release - xorriso-1.0.2 - 2011.02.23.140001
* Bug fix: Images produced with -for_backup might be unreadable and
also fail -check_md5 verification.
* Bug fix: mkisofs emulation options -l , -full-iso9660-filenames did not work.
* Bug fix: Option -mkdir yielded SIGSEGV due to a NULL pointer
* Bug fix: ECMA-119 standards violation with Volume Descriptor Set Terminator
* Removed compiler obstacles of GNU xorriso on Solaris 9
* New isoburn_igopt_set_extensions() option isoburn_igopt_old_empty
* New options -clone and -cp_clone
* New -find actions update_merge, rm_merge, clear_merge
* New -as mkisofs option -max-iso9660-filenames
* New -as mkisofs option --old-empty
* New -as mkisofs options -root , -old-root
* New -as mkisofs options --old-root-no-md5, --old-root-no-ino, --old-root-dev
>>> Upgrade to FATAL for development version:
libisofs/ecma119.c
iso_msgs_submit(0,
"Image is most likely damaged. Calculated/written block address mismatch.",
0, "WARNING", 0);
xorriso/xorriso_eng.html
ChangeLog
------------------------------------ cycle - xorriso-1.0.1 -
xorriso/xorriso_eng.html
ChangeLog
------------------------------------ cycle - xorriso-1.0.1 -
@ -9516,6 +9811,19 @@ Important: When adding a public API function then add its name to file
TODO
===============================================================================
- Keshav P.R. <skodabenz@rocketmail.com>:
Allow double dashes with all long options.
- implement -max-iso9660-filenames like -l
- Zhang Weiwu:
>>> ask for test of -old-root
- publish xorriso -as mkisofs -help and -as cdrecord -help on website
- xorrisofs.texi , xorrecord.texi
------------------------------------------------- For Debian:

View File

@ -3,7 +3,7 @@
# Copyright (c) 2007 - 2011 Thomas Schmitt <scdbackup@gmx.net>
# Provided under GPL version 2 or later.
AC_INIT([xorriso], [1.0.1], [http://libburnia-project.org])
AC_INIT([xorriso], [1.0.2], [http://libburnia-project.org])
AC_PREREQ([2.50])
AC_CANONICAL_HOST
@ -22,14 +22,14 @@ AC_DEFINE([Xorriso_standalonE], [])
BURN_MAJOR_VERSION=1
BURN_MINOR_VERSION=0
BURN_MICRO_VERSION=1
BURN_MICRO_VERSION=2
AC_SUBST(BURN_MAJOR_VERSION)
AC_SUBST(BURN_MINOR_VERSION)
AC_SUBST(BURN_MICRO_VERSION)
LIBISOFS_MAJOR_VERSION=1
LIBISOFS_MINOR_VERSION=0
LIBISOFS_MICRO_VERSION=1
LIBISOFS_MICRO_VERSION=2
AC_SUBST(LIBISOFS_MAJOR_VERSION)
AC_SUBST(LIBISOFS_MINOR_VERSION)
AC_SUBST(LIBISOFS_MICRO_VERSION)

View File

@ -40,7 +40,7 @@ create_gnu_xorriso="yes"
current_dir=$(pwd)
lone_dir="$current_dir"/"xorriso-standalone"
xorriso_rev=1.0.1
xorriso_rev=1.0.2
# For unstable uploads and patch level 0 of stable releases:
xorriso_pl=""
# For higher patch levels of stable releases:

View File

@ -61,7 +61,7 @@ struct XorrisO;
*/
#define Xorriso_header_version_majoR 1
#define Xorriso_header_version_minoR 0
#define Xorriso_header_version_micrO 1
#define Xorriso_header_version_micrO 2
/** Eventually something like ".pl01" to indicate a bug fix. Normally empty.

View File

@ -446,21 +446,21 @@ This can bring effective read performance near to the raw media reading speed.
<P>
<DL>
<DT><H3>Download as source code (see README):</H3></DT>
<DD><A HREF="xorriso-1.0.0.tar.gz">xorriso-1.0.0.tar.gz</A>
(1775 KB).
<DD><A HREF="xorriso-1.0.2.tar.gz">xorriso-1.0.2.tar.gz</A>
(1795 KB).
</DD>
<DD>(Released 17 Jan 2011)</DD>
<DD><A HREF="xorriso-1.0.0.tar.gz.sig">xorriso-1.0.0.tar.gz.sig</A></DD>
<DD>(Released 23 Feb 2011)</DD>
<DD><A HREF="xorriso-1.0.2.tar.gz.sig">xorriso-1.0.2.tar.gz.sig</A></DD>
<DD>
(detached GPG signature for verification by
<KBD>gpg --verify xorriso-1.0.0.tar.gz.sig xorriso-1.0.0.tar.gz</KBD>
<KBD>gpg --verify xorriso-1.0.2.tar.gz.sig xorriso-1.0.2.tar.gz</KBD>
<BR>
after eventual <KBD>gpg --keyserver keys.gnupg.net --recv-keys ABC0A854</KBD>).
</DD>
<DD>
Also on <A HREF="http://www.gnu.org/prep/ftp.html">
mirrors of ftp://ftp.gnu.org/gnu/ </A>
as xorriso/xorriso-1.0.0.tar.gz
as xorriso/xorriso-1.0.2.tar.gz
</DD>
</DL>
</DD>
@ -488,9 +488,23 @@ as xorriso/xorriso-1.0.0.tar.gz
<HR>
<P>
Bug fixes towards xorriso-0.6.6:
Bug fixes towards xorriso-1.0.0:
<UL>
<LI>-as mkisofs -print-size did not account for -partition_offset</LI>
<LI>
Images produced with -for_backup might be unreadable and
also fail -check_md5 verification.
</LI>
<LI>
mkisofs emulation options -l , -full-iso9660-filenames did not work.
</LI>
<LI>
ECMA-119 standards violation with Volume Descriptor Set Terminator
(hampers libarchive, but not mounting on Linux, FreeBSD, Solaris,
or booting by ISOLINUX or GRUB2).
</LI>
<LI>
Option -mkdir yielded SIGSEGV due to a NULL pointer.
</LI>
<!--
<LI>- none -</LI>
-->
@ -508,18 +522,18 @@ Bug fixes in .pl01 towards xorriso-:
-->
<P>
Enhancements towards previous stable version xorriso-0.6.6:
Enhancements towards previous stable version xorriso-1.0.0:
<UL>
<LI>New -compliance options untranslated_names , untranslated_name_len=</LI>
<LI>New -as mkisofs option -untranslated_name_len</LI>
<LI>New -compliance option iso_9660_1999, -as mkisofs option -iso-level 4</LI>
<LI>New -compliance option iso_9660_level=number</LI>
<LI>New -compliance option allow_dir_id_ext</LI>
<LI>New -as mkisofs option -disallow_dir_id_ext</LI>
<LI>Disabled TOC emulation with -as mkisofs. May be re-enabled by --emul-toc.
<LI>New options -clone and -cp_clone</LI>
<LI>New -find actions update_merge, rm_merge, clear_merge</LI>
<LI>New -as mkisofs option -max-iso9660-filenames</LI>
<LI>New -as mkisofs option --old-empty</LI>
<LI>New -as mkisofs options -root , -old-root</LI>
<LI>
New -as mkisofs options --old-root-no-md5, --old-root-no-ino, --old-root-dev
</LI>
<LI>Default -abort_on value is now "FAILURE" with batch and "NEVER" with dialog
<LI>
Removed compiler obstacles of GNU xorriso on Solaris 9
</LI>
<!--
<LI>- none -</LI>
@ -543,16 +557,16 @@ libburnia project and the legal intentions of
<A HREF="http://www.fsf.org/"> FSF </A> match completely.
</DT>
<DD>&nbsp;</DD>
<DT>libburn-1.0.1</DT>
<DT>libburn-1.0.2</DT>
<DD>reads and writes data from and to CD, DVD, BD.</DD>
<DD>(founded by Derek Foreman and Ben Jansens,
developed and maintained since August 2006 by
Thomas Schmitt from team of libburnia-project.org)</DD>
<DT>libisofs-1.0.1</DT>
<DT>libisofs-1.0.2</DT>
<DD>operates on ISO 9660 filesystem images.</DD>
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
from team of libburnia-project.org)</DD>
<DT>libisoburn-1.0.0</DT>
<DT>libisoburn-1.0.2</DT>
<DD>coordinates libburn and libisofs, emulates multi-session where needed,
and hosts the original source code of program xorriso.</DD>
<DD>It provides the complete functionality of xorriso via
@ -573,41 +587,18 @@ cdrecord and mkisofs.</DT>
<P>
<DL>
<DT><H3>Development snapshot, version 1.0.1 :</H3></DT>
<DD>Bug fixes towards xorriso-1.0.0:
<DT><H3>Development snapshot, version 1.0.3 :</H3></DT>
<DD>Bug fixes towards xorriso-1.0.2:
<UL>
<LI>
Images produced with -for_backup might be unreadable and
also fail -check_md5 verification.
</LI>
<LI>
mkisofs emulation options -l , -full-iso9660-filenames did not work.
</LI>
<LI>
ECMA-119 standards violation with Volume Descriptor Set Terminator
(hampers libarchive, but not mounting on Linux, FreeBSD, Solaris,
or booting by ISOLINUX or GRUB2).
</LI>
<LI>
Option -mkdir yielded SIGSEGV due to a NULL pointer.
</LI>
<LI>- none yet -</LI>
<!--
<LI>- none yet -</LI>
-->
</UL>
</DD>
<DD>Enhancements towards stable version 1.0.0:
<DD>Enhancements towards stable version 1.0.2:
<UL>
<LI>New options -clone and -cp_clone</LI>
<LI>New -find actions update_merge, rm_merge, clear_merge</LI>
<LI>New -as mkisofs option --old-empty</LI>
<LI>New -as mkisofs options -root , -old-root</LI>
<LI>
New -as mkisofs options --old-root-no-md5, --old-root-no-ino, --old-root-dev
</LI>
<LI>
Removed compiler obstacles of GNU xorriso on Solaris 9
</LI>
<LI>- none yet -</LI>
<!--
<LI>- none yet -</LI>
-->
@ -617,9 +608,9 @@ Removed compiler obstacles of GNU xorriso on Solaris 9
<DD>&nbsp;</DD>
<DD><A HREF="README_xorriso_devel">README 1.0.1</A>
<DD><A HREF="xorriso_help_devel">xorriso-1.0.1 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 1.0.1)</A></DD>
<DD><A HREF="README_xorriso_devel">README 1.0.3</A>
<DD><A HREF="xorriso_help_devel">xorriso-1.0.3 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 1.0.3)</A></DD>
<DD>&nbsp;</DD>
<DT>If you want to distribute development versions of xorriso, then use
this tarball which produces static linking between xorriso and the
@ -629,8 +620,8 @@ libburnia libraries.
installation see README)
</DD>
<DD>
<A HREF="xorriso-1.0.1.tar.gz">xorriso-1.0.1.tar.gz</A>
(1775 KB).
<A HREF="xorriso-1.0.3.tar.gz">xorriso-1.0.3.tar.gz</A>
(1795 KB).
</DD>
<DT>A dynamically linked development version of xorriso can be obtained
from repositories of

View File

@ -111,7 +111,7 @@
*/
#define Xorriso_req_majoR 1
#define Xorriso_req_minoR 0
#define Xorriso_req_micrO 1
#define Xorriso_req_micrO 2
static void yell_xorriso()

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.02.22.143131"
#define Xorriso_timestamP "2011.02.23.140001"

View File

@ -19,7 +19,7 @@
*/
#define xorriso_libisoburn_req_major 1
#define xorriso_libisoburn_req_minor 0
#define xorriso_libisoburn_req_micro 1
#define xorriso_libisoburn_req_micro 2
struct SpotlisT; /* List of intervals with different read qualities */