Version leap to 0.3.5
This commit is contained in:
parent
c49ee9017a
commit
27f43f3736
@ -4,7 +4,7 @@
|
|||||||
libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
|
libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
|
||||||
and Thomas Schmitt <scdbackup@gmx.net>
|
and Thomas Schmitt <scdbackup@gmx.net>
|
||||||
Integrated sub project of libburnia-project.org.
|
Integrated sub project of libburnia-project.org.
|
||||||
http://files.libburnia-project.org/releases/libisoburn-0.3.2.pl00.tar.gz
|
http://files.libburnia-project.org/releases/libisoburn-0.3.4.pl00.tar.gz
|
||||||
Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt.
|
Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt.
|
||||||
Provided under GPL version 2.
|
Provided under GPL version 2.
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
@ -27,18 +27,18 @@ By using this software you agree to the disclaimer at the end of this text:
|
|||||||
|
|
||||||
Compilation, First Glimpse, Installation
|
Compilation, First Glimpse, Installation
|
||||||
|
|
||||||
Dynamic library and compile time header requirements for libisoburn-0.3.2 :
|
Dynamic library and compile time header requirements for libisoburn-0.3.4 :
|
||||||
- libburn.so.4 , version libburn-0.6.0 or higher
|
- libburn.so.4 , version libburn-0.6.0 or higher
|
||||||
- libisofs.so.6 , version libisofs-0.6.12 or higher
|
- libisofs.so.6 , version libisofs-0.6.14 or higher
|
||||||
libisoburn and xorriso will not start with libraries which are older than their
|
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
|
headers seen at compile time. So compile in the oldest possible installation
|
||||||
setup unless you have reason to enforce a newer bug fix level.
|
setup unless you have reason to enforce a newer bug fix level.
|
||||||
|
|
||||||
Obtain libisoburn-0.3.2.pl00.tar.gz, take it to a directory of your choice
|
Obtain libisoburn-0.3.4.pl00.tar.gz, take it to a directory of your choice
|
||||||
and do:
|
and do:
|
||||||
|
|
||||||
tar xzf libisoburn-0.3.2.pl00.tar.gz
|
tar xzf libisoburn-0.3.4.pl00.tar.gz
|
||||||
cd libisoburn-0.3.2
|
cd libisoburn-0.3.4
|
||||||
|
|
||||||
Within that directory execute:
|
Within that directory execute:
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
AC_INIT([libisoburn], [0.3.3], [http://libburnia-project.org])
|
AC_INIT([libisoburn], [0.3.5], [http://libburnia-project.org])
|
||||||
AC_PREREQ([2.50])
|
AC_PREREQ([2.50])
|
||||||
dnl AC_CONFIG_HEADER([config.h])
|
dnl AC_CONFIG_HEADER([config.h])
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ dnl
|
|||||||
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
||||||
ISOBURN_MAJOR_VERSION=0
|
ISOBURN_MAJOR_VERSION=0
|
||||||
ISOBURN_MINOR_VERSION=3
|
ISOBURN_MINOR_VERSION=3
|
||||||
ISOBURN_MICRO_VERSION=3
|
ISOBURN_MICRO_VERSION=5
|
||||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||||
|
|
||||||
AC_SUBST(ISOBURN_MAJOR_VERSION)
|
AC_SUBST(ISOBURN_MAJOR_VERSION)
|
||||||
@ -33,16 +33,16 @@ dnl Libtool versioning
|
|||||||
dnl Generate libisoburn.so.1.x.y
|
dnl Generate libisoburn.so.1.x.y
|
||||||
dnl SONAME will become LT_CURRENT - LT_AGE
|
dnl SONAME will become LT_CURRENT - LT_AGE
|
||||||
dnl
|
dnl
|
||||||
dnl ts A90105
|
dnl ts A90301
|
||||||
dnl ### This is the release version 0.3.2 = libisoburn.so.1.21.0
|
dnl ### This is the release version 0.3.4 = libisoburn.so.1.23.0
|
||||||
dnl This is the development version after above stable release
|
dnl This is the development version after above stable release
|
||||||
dnl LT_CURRENT++, LT_AGE++ have not happened happened yet.
|
dnl LT_CURRENT++, LT_AGE++ have not happened happened yet.
|
||||||
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
|
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
|
||||||
dnl
|
dnl
|
||||||
dnl SONAME = 22 - 21 = 1 . Library name = libisoburn.so.1.21.0
|
dnl SONAME = 24 - 23 = 1 . Library name = libisoburn.so.1.23.0
|
||||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||||
LT_CURRENT=22
|
LT_CURRENT=24
|
||||||
LT_AGE=21
|
LT_AGE=23
|
||||||
LT_REVISION=0
|
LT_REVISION=0
|
||||||
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
||||||
|
|
||||||
|
@ -260,7 +260,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
|
|||||||
*/
|
*/
|
||||||
#define isoburn_header_version_major 0
|
#define isoburn_header_version_major 0
|
||||||
#define isoburn_header_version_minor 3
|
#define isoburn_header_version_minor 3
|
||||||
#define isoburn_header_version_micro 3
|
#define isoburn_header_version_micro 5
|
||||||
/** Note:
|
/** Note:
|
||||||
Above version numbers are also recorded in configure.ac because libtool
|
Above version numbers are also recorded in configure.ac because libtool
|
||||||
wants them as parameters at build time.
|
wants them as parameters at build time.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
xorriso. By Thomas Schmitt <scdbackup@gmx.net>
|
xorriso. By Thomas Schmitt <scdbackup@gmx.net>
|
||||||
Integrated sub project of libburnia-project.org but also published via:
|
Integrated sub project of libburnia-project.org but also published via:
|
||||||
http://scdbackup.sourceforge.net/xorriso_eng.html
|
http://scdbackup.sourceforge.net/xorriso_eng.html
|
||||||
http://scdbackup.sourceforge.net/xorriso-0.3.3.tar.gz
|
http://scdbackup.sourceforge.net/xorriso-0.3.5.tar.gz
|
||||||
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
|
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -33,14 +33,20 @@ The most simple way to get xorriso from source code is the xorriso standalone
|
|||||||
tarball.
|
tarball.
|
||||||
|
|
||||||
Prerequisites:
|
Prerequisites:
|
||||||
The tarball contains anything that is needed except libc and libpthread.
|
The tarball contains anything that is needed except the following system
|
||||||
libreadline and the readline-dev headers will make dialog mode more convenient,
|
components:
|
||||||
but are not mandatory.
|
libc, libpthread
|
||||||
|
plus on FreeBSD: libiconv, libcam
|
||||||
|
Optional at compile time are:
|
||||||
|
libreadline and the readline-dev headers make dialog mode more convenient.
|
||||||
|
on Linux: libacl and libacl-devel allow getting and setting ACLs.
|
||||||
|
If they were present at compile time, then the optional libraries have to
|
||||||
|
be present at runtime, too.
|
||||||
|
|
||||||
Obtain xorriso-0.3.3.tar.gz, take it to a directory of your choice and do:
|
Obtain xorriso-0.3.5.tar.gz, take it to a directory of your choice and do:
|
||||||
|
|
||||||
tar xzf xorriso-0.3.3.tar.gz
|
tar xzf xorriso-0.3.5.tar.gz
|
||||||
cd xorriso-0.3.3
|
cd xorriso-0.3.5
|
||||||
|
|
||||||
Within that directory execute:
|
Within that directory execute:
|
||||||
|
|
||||||
@ -200,9 +206,9 @@ and a matching dynamically linked xorriso binary.
|
|||||||
This binary is leaner but depends on properly installed libraries of suitable
|
This binary is leaner but depends on properly installed libraries of suitable
|
||||||
revision.
|
revision.
|
||||||
|
|
||||||
Dynamic library and compile time header requirements for libisoburn-0.3.3 :
|
Dynamic library and compile time header requirements for libisoburn-0.3.5 :
|
||||||
- libburn.so.4 , version libburn-0.6.0 or higher
|
- libburn.so.4 , version libburn-0.6.0 or higher
|
||||||
- libisofs.so.6 , version libisofs-0.6.12 or higher
|
- libisofs.so.6 , version libisofs-0.6.14 or higher
|
||||||
libisoburn and xorriso will not start with libraries which are older than their
|
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
|
headers seen at compile time. So compile in the oldest possible installation
|
||||||
setup unless you have reason to enforce a newer bug fix level.
|
setup unless you have reason to enforce a newer bug fix level.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
AC_INIT([xorriso], [0.3.3], [http://libburnia-project.org])
|
AC_INIT([xorriso], [0.3.5], [http://libburnia-project.org])
|
||||||
AC_PREREQ([2.50])
|
AC_PREREQ([2.50])
|
||||||
dnl AC_CONFIG_HEADER([config.h])
|
dnl AC_CONFIG_HEADER([config.h])
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
current_dir=$(pwd)
|
current_dir=$(pwd)
|
||||||
lone_dir="$current_dir"/"xorriso-standalone"
|
lone_dir="$current_dir"/"xorriso-standalone"
|
||||||
|
|
||||||
xorriso_rev=0.3.3
|
xorriso_rev=0.3.5
|
||||||
# For unstable uploads:
|
# For unstable uploads:
|
||||||
xorriso_pl=""
|
xorriso_pl=""
|
||||||
# For stable releases:
|
# For stable releases:
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.\" First parameter, NAME, should be all caps
|
.\" First parameter, NAME, should be all caps
|
||||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||||
.\" other parameters are allowed: see man(7), man(1)
|
.\" other parameters are allowed: see man(7), man(1)
|
||||||
.TH XORRISO 1 "Feb 27, 2008"
|
.TH XORRISO 1 "Mar 01, 2009"
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
.\"
|
.\"
|
||||||
.\" Some roff macros, for reference:
|
.\" Some roff macros, for reference:
|
||||||
@ -3195,7 +3195,9 @@ First check which backup sessions are on the media:
|
|||||||
Then load the desired session and copy the file trees to disk.
|
Then load the desired session and copy the file trees to disk.
|
||||||
Avoid to eventually create /home/thomas/restored without rwx-permission.
|
Avoid to eventually create /home/thomas/restored without rwx-permission.
|
||||||
.br
|
.br
|
||||||
\fB$\fR xorriso -load volid 'PROJECTS_MAIL_2008_06_19*' \\
|
\fB$\fR xorriso -acl on -xattr on \\
|
||||||
|
.br
|
||||||
|
-load volid 'PROJECTS_MAIL_2008_06_19*' \\
|
||||||
.br
|
.br
|
||||||
-indev /dev/sr0 \\
|
-indev /dev/sr0 \\
|
||||||
.br
|
.br
|
||||||
@ -3207,7 +3209,7 @@ Avoid to eventually create /home/thomas/restored without rwx-permission.
|
|||||||
.br
|
.br
|
||||||
/home/thomas/restored/open_source_projects \\
|
/home/thomas/restored/open_source_projects \\
|
||||||
.br
|
.br
|
||||||
-extract /personal_mail /home/thomas/restored/personal_mail
|
-extract /personal_mail /home/thomas/restored/personal_mail \\
|
||||||
.br
|
.br
|
||||||
-rollback_end
|
-rollback_end
|
||||||
.SS
|
.SS
|
||||||
|
@ -50,11 +50,14 @@ and to MMC-5 for DVD or BD).
|
|||||||
<DD>With kernel 2.6 the drive should not be under ide-scsi.</DD>
|
<DD>With kernel 2.6 the drive should not be under ide-scsi.</DD>
|
||||||
<DT>or FreeBSD (with libc, of course) :</DT>
|
<DT>or FreeBSD (with libc, of course) :</DT>
|
||||||
<DD>ATAPI/CAM support has to be enabled in the kernel, see atapicam(4).</DD>
|
<DD>ATAPI/CAM support has to be enabled in the kernel, see atapicam(4).</DD>
|
||||||
|
<DD>libcam has to be installed.</DD>
|
||||||
<DD>libiconv has to be installed.</DD>
|
<DD>libiconv has to be installed.</DD>
|
||||||
<DT>libpthread</DT>
|
<DT>libpthread</DT>
|
||||||
<DD>is supposed to be a standard system component.</DD>
|
<DD>is supposed to be a standard system component.</DD>
|
||||||
<DT>libreadline and libreadline-dev</DT>
|
<DT>libreadline and libreadline-dev</DT>
|
||||||
<DD>are optional and eventually make dialog more convenient.</DD>
|
<DD>are optional and eventually make dialog more convenient.</DD>
|
||||||
|
<DT>libacl and libacl-devel</DT>
|
||||||
|
<DD>are optional and eventually allow on Linux to get and set ACLs.</DD>
|
||||||
</DL>
|
</DL>
|
||||||
</P>
|
</P>
|
||||||
|
|
||||||
@ -63,15 +66,16 @@ and to MMC-5 for DVD or BD).
|
|||||||
GPL software included:<BR>
|
GPL software included:<BR>
|
||||||
</H2>
|
</H2>
|
||||||
<DL>
|
<DL>
|
||||||
<DT>libburn-0.6.1</DT>
|
<DT>libburn-0.6.3</DT>
|
||||||
<DD>reads and writes data from and to CD, DVD, BD.</DD>
|
<DD>reads and writes data from and to CD, DVD, BD.</DD>
|
||||||
<DD>(founded by Derek Foreman and Ben Jansens,
|
<DD>(founded by Derek Foreman and Ben Jansens,
|
||||||
developed and maintained since August 2006 by
|
developed and maintained since August 2006 by
|
||||||
Thomas Schmitt from team of libburnia-project.org)</DD>
|
Thomas Schmitt from team of libburnia-project.org)</DD>
|
||||||
<DT>libisofs-0.6.12</DT>
|
<DT>libisofs-0.6.15</DT>
|
||||||
<DD>operates on ISO 9660 filesystem images.</DD>
|
<DD>operates on ISO 9660 filesystem images.</DD>
|
||||||
<DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD>
|
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
|
||||||
<DT>libisoburn-0.3.2</DT>
|
from team of libburnia-project.org)</DD>
|
||||||
|
<DT>libisoburn-0.3.4</DT>
|
||||||
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
|
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
|
||||||
<DD>(By Vreixo Formoso and Thomas Schmitt
|
<DD>(By Vreixo Formoso and Thomas Schmitt
|
||||||
from team of libburnia-project.org)</DD>
|
from team of libburnia-project.org)</DD>
|
||||||
@ -120,13 +124,9 @@ Can perform multi-session tasks as emulation of mkisofs and cdrecord.
|
|||||||
<LI>
|
<LI>
|
||||||
Can restore single files and whole trees from ISO image to disk filesystem.
|
Can restore single files and whole trees from ISO image to disk filesystem.
|
||||||
</LI>
|
</LI>
|
||||||
|
|
||||||
<!--
|
|
||||||
<LI>
|
<LI>
|
||||||
Can record and restore ACL of disk files.
|
Can record and restore ACL and xattr of disk files.
|
||||||
</LI>
|
</LI>
|
||||||
-->
|
|
||||||
|
|
||||||
<LI>
|
<LI>
|
||||||
Can issue commands to mount older sessions on Linux or FreeBSD.
|
Can issue commands to mount older sessions on Linux or FreeBSD.
|
||||||
</LI>
|
</LI>
|
||||||
@ -280,10 +280,13 @@ to match the new disk trees.
|
|||||||
Older states can be retrieved by help of mount options like "sbsector="
|
Older states can be retrieved by help of mount options like "sbsector="
|
||||||
or by help of xorriso option -mount.
|
or by help of xorriso option -mount.
|
||||||
<BR>
|
<BR>
|
||||||
|
Eventual ACL or xattr will be recorded. Data reading will be avoided by
|
||||||
|
accelerator option -disk_dev_ino.
|
||||||
Only blank media or media with volume id "PROJECTS_MAIL_..." will be accepted.
|
Only blank media or media with volume id "PROJECTS_MAIL_..." will be accepted.
|
||||||
Files with names ending by ".o" or ".swp" are excluded by options -not_leaf.
|
Files with names ending by ".o" or ".swp" are excluded by options -not_leaf.
|
||||||
</DT>
|
</DT>
|
||||||
<DD>$<KBD> xorriso -assert_volid 'PROJECTS_MAIL_*' FATAL \ \</KBD></DD>
|
<DD>$<KBD> xorriso -acl on -xattr on -disk_dev_ino on \</KBD></DD>
|
||||||
|
<DD><KBD> -assert_volid 'PROJECTS_MAIL_*' FATAL \</KBD></DD>
|
||||||
<DD><KBD> -dev /dev/sr0 \</KBD></DD>
|
<DD><KBD> -dev /dev/sr0 \</KBD></DD>
|
||||||
<DD><KBD> -volid PROJECTS_MAIL_"$(date '+%Y_%m_%d_%H%M%S')" \</KBD></DD>
|
<DD><KBD> -volid PROJECTS_MAIL_"$(date '+%Y_%m_%d_%H%M%S')" \</KBD></DD>
|
||||||
<DD><KBD> -not_leaf '*.o' -not_leaf '*.swp' \</KBD></DD>
|
<DD><KBD> -not_leaf '*.o' -not_leaf '*.swp' \</KBD></DD>
|
||||||
@ -383,7 +386,8 @@ One may switch from mkisofs emulation to xorriso's own command mode:
|
|||||||
<DT>If for any reason the reading operating system mishandles the ISO image
|
<DT>If for any reason the reading operating system mishandles the ISO image
|
||||||
or some files in it, one may enable reverse operation of xorriso and copy
|
or some files in it, one may enable reverse operation of xorriso and copy
|
||||||
files or trees to disk:
|
files or trees to disk:
|
||||||
<DD>$<KBD> xorriso -indev /dev/sr0 \</KBD></DD>
|
<DD>$<KBD> xorriso -acl on -xattr on \</KBD></DD>
|
||||||
|
<DD><KBD> -indev /dev/sr0 \</KBD></DD>
|
||||||
<DD><KBD> -osirrox on \</KBD></DD>
|
<DD><KBD> -osirrox on \</KBD></DD>
|
||||||
<DD><KBD> -cpx '/pictures/private/horses*/*buttercup*' \</KBD></DD>
|
<DD><KBD> -cpx '/pictures/private/horses*/*buttercup*' \</KBD></DD>
|
||||||
<DD><KBD> /home/her/buttercup_dir -- \</KBD>
|
<DD><KBD> /home/her/buttercup_dir -- \</KBD>
|
||||||
@ -410,8 +414,8 @@ files or trees to disk:
|
|||||||
<P>
|
<P>
|
||||||
<DL>
|
<DL>
|
||||||
<DT><H3>Download as source code (see README):</H3></DT>
|
<DT><H3>Download as source code (see README):</H3></DT>
|
||||||
<DD><A HREF="xorriso-0.3.2.pl01.tar.gz">xorriso-0.3.2.pl01.tar.gz</A>
|
<DD><A HREF="xorriso-0.3.4.pl00.tar.gz">xorriso-0.3.4.pl00.tar.gz</A>
|
||||||
(1100 KB).
|
(1175 KB).
|
||||||
</DD>
|
</DD>
|
||||||
</DL>
|
</DL>
|
||||||
</DD>
|
</DD>
|
||||||
@ -436,18 +440,6 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
|
|||||||
|
|
||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
<P>
|
|
||||||
Bug fixes towards xorriso-0.3.0.pl00:
|
|
||||||
<UL>
|
|
||||||
<LI>Options -extract and -extract_single were not disabled with -osirrox off
|
|
||||||
<!--
|
|
||||||
<LI>- none -</LI>
|
|
||||||
-->
|
|
||||||
|
|
||||||
</UL>
|
|
||||||
|
|
||||||
</P>
|
|
||||||
|
|
||||||
<P>
|
<P>
|
||||||
Bug fixes towards xorriso-0.3.2.pl00:
|
Bug fixes towards xorriso-0.3.2.pl00:
|
||||||
<UL>
|
<UL>
|
||||||
@ -461,30 +453,7 @@ Bug fixes towards xorriso-0.3.2.pl00:
|
|||||||
</P>
|
</P>
|
||||||
|
|
||||||
<P>
|
<P>
|
||||||
Enhancements towards previous stable version xorriso-0.3.0.pl00:
|
Enhancements towards previous stable version xorriso-0.3.2.pl00:
|
||||||
<UL>
|
|
||||||
<LI>New options -mount, -mount_cmd, -session_string</LI>
|
|
||||||
<LI>By using libburn-0.6.1: support for BD-R media</LI>
|
|
||||||
<LI>New -format modes by_size_ and fast_by_size_</LI>
|
|
||||||
<LI>New option -assert_volid</LI>
|
|
||||||
<LI>New option -drive_class for safety management of pseudo-drive access</LI>
|
|
||||||
</UL>
|
|
||||||
</P>
|
|
||||||
|
|
||||||
<HR>
|
|
||||||
|
|
||||||
<P>
|
|
||||||
<DL>
|
|
||||||
<DT><H3>Development snapshot, version 0.3.3 :</H3></DT>
|
|
||||||
<DD>Bug fixes towards xorriso-0.3.2.pl00:
|
|
||||||
<UL>
|
|
||||||
<LI>BD-R were not correctly finalized</LI>
|
|
||||||
<!--
|
|
||||||
<LI>- none yet -</LI>
|
|
||||||
-->
|
|
||||||
</UL>
|
|
||||||
</DD>
|
|
||||||
<DD>Enhancements towards stable version 0.3.2.pl00:
|
|
||||||
<UL>
|
<UL>
|
||||||
<LI>New option -acl controls import and export of ACLs</LI>
|
<LI>New option -acl controls import and export of ACLs</LI>
|
||||||
<LI>New options -getfacl, -getfacl_r, -setfacl , -setfacl_r , -setfacl_list</LI>
|
<LI>New options -getfacl, -getfacl_r, -setfacl , -setfacl_r , -setfacl_list</LI>
|
||||||
@ -495,17 +464,35 @@ Enhancements towards previous stable version xorriso-0.3.0.pl00:
|
|||||||
</LI>
|
</LI>
|
||||||
<LI>New -find tests -has_xattr, -has_aaip, new -find actions getfattr, setfattr
|
<LI>New -find tests -has_xattr, -has_aaip, new -find actions getfattr, setfattr
|
||||||
</LI>
|
</LI>
|
||||||
|
<LI>New -as mkisofs options --acl and --xattr</LI>
|
||||||
<LI>New option -disk_dev_ino can substantially accelerate incremental backups
|
<LI>New option -disk_dev_ino can substantially accelerate incremental backups
|
||||||
</LI>
|
</LI>
|
||||||
<!--
|
</UL>
|
||||||
|
</P>
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
<DL>
|
||||||
|
<DT><H3>Development snapshot, version 0.3.5 :</H3></DT>
|
||||||
|
<DD>Bug fixes towards xorriso-0.3.4.pl00:
|
||||||
|
<UL>
|
||||||
<LI>- none yet -</LI>
|
<LI>- none yet -</LI>
|
||||||
|
<!--
|
||||||
|
-->
|
||||||
|
</UL>
|
||||||
|
</DD>
|
||||||
|
<DD>Enhancements towards stable version 0.3.4.pl00:
|
||||||
|
<UL>
|
||||||
|
<LI>- none yet -</LI>
|
||||||
|
<!--
|
||||||
-->
|
-->
|
||||||
</UL>
|
</UL>
|
||||||
</DD>
|
</DD>
|
||||||
<DD> </DD>
|
<DD> </DD>
|
||||||
<DD><A HREF="README_xorriso_devel">README 0.3.3</A>
|
<DD><A HREF="README_xorriso_devel">README 0.3.5</A>
|
||||||
<DD><A HREF="xorriso_help_devel">xorriso_0.3.3 -help</A></DD>
|
<DD><A HREF="xorriso_help_devel">xorriso_0.3.5 -help</A></DD>
|
||||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.3)</A></DD>
|
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.5)</A></DD>
|
||||||
<DD> </DD>
|
<DD> </DD>
|
||||||
<DT>If you want to distribute development versions of xorriso, then use
|
<DT>If you want to distribute development versions of xorriso, then use
|
||||||
this tarball which produces static linking between xorriso and the
|
this tarball which produces static linking between xorriso and the
|
||||||
@ -515,14 +502,7 @@ libburnia libraries.
|
|||||||
installation see README)
|
installation see README)
|
||||||
</DD>
|
</DD>
|
||||||
<DD>
|
<DD>
|
||||||
On Linux the system-side ACL features of this development version depend
|
<A HREF="xorriso-0.3.5.tar.gz">xorriso-0.3.5.tar.gz</A>
|
||||||
on <B>libacl</B> and <B>libacl-devel</B>.
|
|
||||||
On FreeBSD the system ACL features are part of libc.
|
|
||||||
The availability of ACL features depends on the individual filesystems
|
|
||||||
and on their mount options.
|
|
||||||
</DD>
|
|
||||||
<DD>
|
|
||||||
<A HREF="xorriso-0.3.3.tar.gz">xorriso-0.3.3.tar.gz</A>
|
|
||||||
(1160 KB).
|
(1160 KB).
|
||||||
</DD>
|
</DD>
|
||||||
<DT>A dynamically linked development version of xorriso can be obtained
|
<DT>A dynamically linked development version of xorriso can be obtained
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#ifndef Xorriso_private_includeD
|
#ifndef Xorriso_private_includeD
|
||||||
#define Xorriso_private_includeD yes
|
#define Xorriso_private_includeD yes
|
||||||
|
|
||||||
#define Xorriso_program_versioN "0.3.3"
|
#define Xorriso_program_versioN "0.3.5"
|
||||||
|
|
||||||
/** The source code release timestamp */
|
/** The source code release timestamp */
|
||||||
#include "xorriso_timestamp.h"
|
#include "xorriso_timestamp.h"
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2009.02.28.181750"
|
#define Xorriso_timestamP "2009.03.01.113444"
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
#define xorriso_libisoburn_req_major 0
|
#define xorriso_libisoburn_req_major 0
|
||||||
#define xorriso_libisoburn_req_minor 3
|
#define xorriso_libisoburn_req_minor 3
|
||||||
#define xorriso_libisoburn_req_micro 3
|
#define xorriso_libisoburn_req_micro 5
|
||||||
|
|
||||||
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user