Compare commits
6 Commits
ZeroSixFou
...
ZeroThreeE
Author | SHA1 | Date | |
---|---|---|---|
626e602060 | |||
f5870065a9 | |||
47493a4009 | |||
14d76de72d | |||
0dd51b5445 | |||
00ae05d5e4 |
12
README
12
README
@ -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.6.pl00.tar.gz
|
http://files.libburnia-project.org/releases/libisoburn-0.3.8.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.
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
@ -29,18 +29,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.6 :
|
Dynamic library and compile time header requirements for libisoburn-0.3.8 :
|
||||||
- libburn.so.4 , version libburn-0.6.4 or higher
|
- libburn.so.4 , version libburn-0.6.4 or higher
|
||||||
- libisofs.so.6 , version libisofs-0.6.16 or higher
|
- libisofs.so.6 , version libisofs-0.6.18 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 level of bug fixes or features.
|
setup unless you have reason to enforce a newer level of bug fixes or features.
|
||||||
|
|
||||||
Obtain libisoburn-0.3.6.pl00.tar.gz, take it to a directory of your choice
|
Obtain libisoburn-0.3.8.pl00.tar.gz, take it to a directory of your choice
|
||||||
and do:
|
and do:
|
||||||
|
|
||||||
tar xzf libisoburn-0.3.6.pl00.tar.gz
|
tar xzf libisoburn-0.3.8.pl00.tar.gz
|
||||||
cd libisoburn-0.3.6
|
cd libisoburn-0.3.8
|
||||||
|
|
||||||
Within that directory execute:
|
Within that directory execute:
|
||||||
|
|
||||||
|
16
configure.ac
16
configure.ac
@ -1,4 +1,4 @@
|
|||||||
AC_INIT([libisoburn], [0.3.7], [http://libburnia-project.org])
|
AC_INIT([libisoburn], [0.3.8], [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=7
|
ISOBURN_MICRO_VERSION=8
|
||||||
|
|
||||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||||
|
|
||||||
@ -34,16 +34,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 A90316
|
dnl ts A90418
|
||||||
dnl ### This is the release version 0.3.6 = libisoburn.so.1.25.0
|
dnl This is the release version 0.3.8 = libisoburn.so.1.27.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 = 26 - 25 = 1 . Library name = libisoburn.so.1.25.0
|
dnl SONAME = 28 - 27 = 1 . Library name = libisoburn.so.1.27.0
|
||||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||||
LT_CURRENT=26
|
LT_CURRENT=28
|
||||||
LT_AGE=25
|
LT_AGE=27
|
||||||
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 7
|
#define isoburn_header_version_micro 8
|
||||||
/** 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.7.tar.gz
|
http://scdbackup.sourceforge.net/xorriso-0.3.8.pl00.tar.gz
|
||||||
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
|
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2.
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -46,10 +46,10 @@ Optional at compile time are:
|
|||||||
If they were present at compile time, then the optional libraries have to
|
If they were present at compile time, then the optional libraries have to
|
||||||
be present at runtime, too.
|
be present at runtime, too.
|
||||||
|
|
||||||
Obtain xorriso-0.3.7.tar.gz, take it to a directory of your choice and do:
|
Obtain xorriso-0.3.8.pl00.tar.gz, take it to a directory of your choice and do:
|
||||||
|
|
||||||
tar xzf xorriso-0.3.7.tar.gz
|
tar xzf xorriso-0.3.8.pl00.tar.gz
|
||||||
cd xorriso-0.3.7
|
cd xorriso-0.3.8
|
||||||
|
|
||||||
Within that directory execute:
|
Within that directory execute:
|
||||||
|
|
||||||
@ -222,9 +222,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.6 :
|
Dynamic library and compile time header requirements for libisoburn-0.3.8 :
|
||||||
- libburn.so.4 , version libburn-0.6.4 or higher
|
- libburn.so.4 , version libburn-0.6.4 or higher
|
||||||
- libisofs.so.6 , version libisofs-0.6.16 or higher
|
- libisofs.so.6 , version libisofs-0.6.18 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.
|
||||||
|
@ -5262,7 +5262,7 @@ Adjusted forgotten version number
|
|||||||
* New -stream_recording modes with start address or "data". "on" is now 32s.
|
* New -stream_recording modes with start address or "data". "on" is now 32s.
|
||||||
|
|
||||||
|
|
||||||
2009.03.16.112837 []
|
2009.03.16.112837 [2545]
|
||||||
configure.ac
|
configure.ac
|
||||||
README
|
README
|
||||||
libisoburn/libisoburn.h
|
libisoburn/libisoburn.h
|
||||||
@ -5275,14 +5275,330 @@ xorriso/configure_ac.txt
|
|||||||
xorriso/xorriso_timestamp.h
|
xorriso/xorriso_timestamp.h
|
||||||
Version leap to libisoburn-0.3.7
|
Version leap to libisoburn-0.3.7
|
||||||
|
|
||||||
16 Mar 2009 []
|
16 Mar 2009 [2546]
|
||||||
xorriso/changelog.txt
|
xorriso/changelog.txt
|
||||||
Documented changes and release timestamp
|
Documented changes and release timestamp
|
||||||
|
|
||||||
------------------------------------ cycle - xorriso-0.3.7 -
|
17 Mar 2009 [2548]
|
||||||
|
svn move -m 'Promoted branch to tag' \
|
||||||
|
http://svn.libburnia-project.org/libisoburn/branches/ZeroThreeSix \
|
||||||
|
http://svn.libburnia-project.org/libisoburn/tags/ZeroThreeSix
|
||||||
|
|
||||||
------------------------------------ cycle - xorriso-0.3.7 -
|
------------------------------------ cycle - xorriso-0.3.7 - 2009.03.16.112837
|
||||||
------------------------------------ cycle - xorriso-0.3.7 -
|
|
||||||
|
|
||||||
|
2009.03.18.103858 [2550]
|
||||||
|
configure.ac
|
||||||
|
acinclude.m4
|
||||||
|
Makefile.am
|
||||||
|
Get on FreeBSD pkgconfigdir=.../libdata , on Linux and others: .../lib
|
||||||
|
|
||||||
|
2009.03.18.104037 [2551]
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
Adapted xorriso-standalone to version leap libisofs-0.6.17 and FreeBSD libdata
|
||||||
|
|
||||||
|
18 Mar 2009 [2552]
|
||||||
|
configure.ac
|
||||||
|
Removed useless libisoburn configure options --enable-libacl --enable-xattr
|
||||||
|
|
||||||
|
2009.03.19.172806 [2555]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
Unified -status filtering decision
|
||||||
|
|
||||||
|
2009.03.20.192910 [2557]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn/isoburn.h
|
||||||
|
libisoburn/isoburn.c
|
||||||
|
libisoburn/isofs_wrap.c
|
||||||
|
New API functions isoburn_ropt_[sg]et_auto_incharset()
|
||||||
|
|
||||||
|
2009.03.20.193334 [2558]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New option -auto_charset based on xattr "isofs.cs"
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.7 - 2009.03.21.131424
|
||||||
|
* New option -auto_charset based on xattr "isofs.cs"
|
||||||
|
|
||||||
|
|
||||||
|
22 Mar 2009 [2559]
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Clarification about -auto_charset pitfalls
|
||||||
|
|
||||||
|
2009.03.22.090232 [2560]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Stuffed memory leaks on -commit and loading of El Torito records
|
||||||
|
|
||||||
|
2009.03.29.164336 [2561]
|
||||||
|
configure.ac
|
||||||
|
Revoked revision 2552. Dynamic xorriso did not get linked with -lacl any more.
|
||||||
|
|
||||||
|
2009.03.29.164411 [2562]
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
libisoburn now demands libisofs-0.6.17
|
||||||
|
|
||||||
|
2009.03.29.164703 [2563]
|
||||||
|
xorriso/compile_xorriso.sh
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
Adapted to new libisofs feature iso_file_add_external_filter()
|
||||||
|
|
||||||
|
2009.03.29.164931 [2564]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Experimental -find action -exec set_filter with some hardcoded filter commands
|
||||||
|
|
||||||
|
2009.04.02.162530 [2565]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
New options -external_filter , -unregister_filter, -set_filter , -set_filter_r
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.7 - 2009.04.02.162530
|
||||||
|
* New options -external_filter , -unregister_filter, -set_filter , -set_filter_r
|
||||||
|
|
||||||
|
|
||||||
|
2009.04.03.172034 [2566]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Fixed a potential blind spot of 1 second in -disk_dev_ino comparison
|
||||||
|
|
||||||
|
2009.04.04.082636 [2567]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Fixed a bug with the error message about external filters and setuid
|
||||||
|
|
||||||
|
2009.04.04.144009 [2568]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New option -close_filter_list
|
||||||
|
|
||||||
|
2009.04.04.144241 [2569]
|
||||||
|
configure.ac
|
||||||
|
Makefile.am
|
||||||
|
README
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
xorriso/compile_xorriso.sh
|
||||||
|
xorriso/README
|
||||||
|
configure options to control availability of external filters in xorriso
|
||||||
|
|
||||||
|
2009.04.05.110534 [2570]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
Reporting number of processed filters with -set_filter and -set_filter_r
|
||||||
|
|
||||||
|
2009.04.05.110652 [2571]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Fixed a bug about detection of failure with -set_filter
|
||||||
|
|
||||||
|
2009.04.05.131536 [2572]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
Included sys/select.h as prescribed by POSIX and Linux, FreeBSD man pages
|
||||||
|
|
||||||
|
2009.04.05.143043 [2573]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New -osirrox mode "banned"
|
||||||
|
|
||||||
|
5 Apr 2009 [2574]
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
Updated xorriso web page
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.7 - 2009.04.05.143043
|
||||||
|
* New option -close_filter_list
|
||||||
|
* New -osirrox mode "banned"
|
||||||
|
|
||||||
|
|
||||||
|
2009.04.06.100802 [2575]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Suffix rollback with -set_filter --remove-all-filters
|
||||||
|
|
||||||
|
2009.04.06.132007 [2576]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New options -show_stream, -show_stream_r, -exec show_stream
|
||||||
|
|
||||||
|
2009.04.06.143109 [2577]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Changed appearance of -show_stream, fixed bug introduced with rev 2575
|
||||||
|
|
||||||
|
2009.04.06.161541 [2578]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Fixed bug introduced with 2575
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.7 - 2009.04.06.161541
|
||||||
|
* New options -show_stream, -show_stream_r, new -find -exec show_stream
|
||||||
|
|
||||||
|
2009.04.07.120250 [2579]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New -find tests -has_filter, -has_no_filter
|
||||||
|
|
||||||
|
2009.04.07.122117 [2580]
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Removed some unused old code branches
|
||||||
|
|
||||||
|
2009.04.10.102558 [2581]
|
||||||
|
configure.ac
|
||||||
|
Makefile.am
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
xorriso/compile_xorriso.sh
|
||||||
|
Took into respect optional libz dependency of libisofs
|
||||||
|
|
||||||
|
2009.04.10.103130 [2582]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Introduced builtin filters --zisofs and --zisofs-decode
|
||||||
|
|
||||||
|
11 Apr 2009 [2583]
|
||||||
|
xorriso/make_xorriso_standalone.sh
|
||||||
|
Included a copy of doc/zisofs_format.txt in xorriso-standalone
|
||||||
|
|
||||||
|
2009.04.11.125331 [2584]
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Adjustments with filter --zisofs-decode
|
||||||
|
|
||||||
|
2009.04.11.172644 [2585]
|
||||||
|
xorriso/xorriso.h
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New option -zisofs, builtin filters --zisofs and --zisofs-decode
|
||||||
|
|
||||||
|
12 Apr 2009 [2586]
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
Updated xorriso web page
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.7 - 2009.04.12.142252
|
||||||
|
* New option -zisofs, builtin filters --zisofs and --zisofs-decode
|
||||||
|
|
||||||
|
|
||||||
|
14 Apr 2009 [2588]
|
||||||
|
README
|
||||||
|
xorriso/README
|
||||||
|
Updated README texts of libisoburn and xorriso
|
||||||
|
|
||||||
|
2009.04.14.092306 [2589]
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
New -zisofs option by_magic=on
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.7 - 2009.04.14.092306
|
||||||
|
|
||||||
|
2009.04.15.071944 [2590]
|
||||||
|
xorriso/compile_xorriso.sh
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
xorriso/xorriso.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Adopted new libisofs filter module gzip.c, builtin filters --gzip, --gunzip
|
||||||
|
|
||||||
|
2009.04.15.185131 [2591]
|
||||||
|
libisoburn/isofs_wrap.c
|
||||||
|
xorriso/xorrisoburn.c
|
||||||
|
Removed dependency on Libisofs_has_auto_input_charseT
|
||||||
|
|
||||||
|
2009.04.15.185238 [2592]
|
||||||
|
configure.ac
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
Requiring libisofs-0.6.18 now
|
||||||
|
|
||||||
|
2009.04.15.185359 [2593]
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
Adapted xorriso-standalone to version leap libisofs-0.6.18
|
||||||
|
|
||||||
|
2009.04.16.145617 [2594]
|
||||||
|
xorriso/make_xorriso_standalone.sh
|
||||||
|
xorriso/xorriso_makefile_am.txt
|
||||||
|
Fixed bugs with rarely used make dist
|
||||||
|
|
||||||
|
2009.04.18.090616 [2596][2597]
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
Adapted xorriso-standalone to version leap libisofs-0.6.19
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.7 - 2009.04.18.090616
|
||||||
|
|
||||||
|
2009.04.18.120001 [2598]
|
||||||
|
configure.ac
|
||||||
|
README
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
xorriso/README
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
xorriso/make_xorriso_standalone.sh
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
xorriso/xorriso_timestamp.h
|
||||||
|
Version leap to libisoburn-0.3.8
|
||||||
|
|
||||||
|
18 Apr 2009 [2599][2600]
|
||||||
|
xorriso/xorriso.1
|
||||||
|
Last minute correction in xorriso man page
|
||||||
|
|
||||||
|
18 Apr 2009 []
|
||||||
|
xorriso/changelog.txt
|
||||||
|
Documented changes and release timestamp
|
||||||
|
|
||||||
|
[]
|
||||||
|
svn move -m 'Promoted branch to tag' \
|
||||||
|
http://svn.libburnia-project.org/libisoburn/branches/ZeroThreeEight \
|
||||||
|
http://svn.libburnia-project.org/libisoburn/tags/ZeroThreeEight
|
||||||
|
|
||||||
|
----------------------------------- release - xorriso-0.3.8 - 2009.04.18.120001
|
||||||
|
* New options -set_filter , -set_filter_r, -find -exec set_filter
|
||||||
|
* New option -zisofs, builtin filters --zisofs , --gzip , --gunzip
|
||||||
|
* New options -external_filter , -unregister_filter, -close_filter_list,
|
||||||
|
* New options -show_stream, -show_stream_r
|
||||||
|
* New -osirrox mode "banned"
|
||||||
|
* New option -auto_charset based on xattr "isofs.cs"
|
||||||
|
|
||||||
|
|
||||||
|
[]
|
||||||
|
configure.ac
|
||||||
|
README
|
||||||
|
libisoburn/libisoburn.h
|
||||||
|
xorriso/README
|
||||||
|
xorriso/xorriso_private.h
|
||||||
|
xorriso/xorrisoburn.h
|
||||||
|
xorriso/xorriso_eng.html
|
||||||
|
xorriso/make_xorriso_standalone.sh
|
||||||
|
xorriso/configure_ac.txt
|
||||||
|
xorriso/xorriso_timestamp.h
|
||||||
|
Version leap to libisoburn-0.3.9
|
||||||
|
|
||||||
|
18 Apr 2009 []
|
||||||
|
xorriso/changelog.txt
|
||||||
|
Documented changes and release timestamp
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.9 -
|
||||||
|
|
||||||
|
|
||||||
|
------------------------------------ cycle - xorriso-0.3.9 -
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
TODO
|
TODO
|
||||||
@ -5290,16 +5606,24 @@ Documented changes and release timestamp
|
|||||||
|
|
||||||
------------------------------------------------- bugs
|
------------------------------------------------- bugs
|
||||||
|
|
||||||
- configure.ac
|
|
||||||
throw out options --enable-libacl , --enable-xattr which belong to libisofs
|
|
||||||
|
|
||||||
------------------------------------------------- important
|
------------------------------------------------- important
|
||||||
|
|
||||||
|
- sudo and setuid chapter in man page
|
||||||
|
? option -sudo_aware
|
||||||
|
|
||||||
- Special pseudo ACL: "--remove-default"
|
??? move suffix processing into libisofs ?
|
||||||
|
(currently the suffice are already stored in the filter chain)
|
||||||
|
Can only be done if renaming is made safe with any open IsoDirIter.
|
||||||
|
|
||||||
|
|
||||||
|
- ? New -find test -in_old_image
|
||||||
|
??? derive a test language from nntpfilter.c
|
||||||
|
-find in man xorriso could need restructuring
|
||||||
|
|
||||||
------------------------------------------------- development
|
------------------------------------------------- development
|
||||||
|
|
||||||
|
- Special pseudo ACL: "--remove-default"
|
||||||
|
|
||||||
- libisofs , libburn , own system adapter ? :
|
- libisofs , libburn , own system adapter ? :
|
||||||
Needed is a system dependend facility: dev_t <-> major, minor
|
Needed is a system dependend facility: dev_t <-> major, minor
|
||||||
|
|
||||||
@ -5350,7 +5674,9 @@ Documented changes and release timestamp
|
|||||||
|
|
||||||
------ problem fixes :
|
------ problem fixes :
|
||||||
|
|
||||||
>>> Fix the potential bug with read_rr_PX() seeing length 36 in a IEEE_1282
|
|
||||||
|
>>> Represent hardlinks
|
||||||
|
Have better uniqueness with own inode counters
|
||||||
|
|
||||||
|
|
||||||
- the error handling system should be comprehensively documented
|
- the error handling system should be comprehensively documented
|
||||||
@ -5358,28 +5684,19 @@ Documented changes and release timestamp
|
|||||||
|
|
||||||
------ feature enhancements :
|
------ feature enhancements :
|
||||||
|
|
||||||
- Clean up the character set handling.
|
|
||||||
Less often setting of the locale.
|
|
||||||
Attach an xattr "isofs.cs" with the name of
|
|
||||||
the output character set to root node.
|
|
||||||
|
|
||||||
- File checksums as backpack and as xattr values.
|
- File checksums as backpack and as xattr values.
|
||||||
|
Problem: If they are scattered over the data section then they will cause
|
||||||
|
a lot of random access and thus be slow with BD. They need to be buffered
|
||||||
|
in memory as zinfo and written all together after data section.
|
||||||
|
|
||||||
- Opportunity to compress and encrypt file data.
|
- Image checksum tag in the last data blocks of an image.
|
||||||
|
A data file entry should point to that block.
|
||||||
- A repeatable shell command as origin ("disk_file")
|
|
||||||
of a regular file in the ISO image.
|
|
||||||
|
|
||||||
- A dummy option in IsoWriteOpts which causes iso_image_create_burn_source()
|
- A dummy option in IsoWriteOpts which causes iso_image_create_burn_source()
|
||||||
to end before actually data get written. (For -print_size)
|
to end before actually data get written. (For -print_size)
|
||||||
|
|
||||||
- API: iso_stream_get_dev_ino() to get the source side dev_t and ino_t
|
- API: iso_stream_get_dev_ino() to get the source side dev_t and ino_t
|
||||||
|
|
||||||
- API: iso_cout_stream_get_params(stream, &path, &offset, &size)
|
|
||||||
|
|
||||||
- Image checksum tag in the last data blocks of an image.
|
|
||||||
A data file entry should point to that block.
|
|
||||||
|
|
||||||
- Re-use unchanged sub trees in the previous image in order to
|
- Re-use unchanged sub trees in the previous image in order to
|
||||||
reduce the session overhead.
|
reduce the session overhead.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
AC_INIT([xorriso], [0.3.7], [http://libburnia-project.org])
|
AC_INIT([xorriso], [0.3.8], [http://libburnia-project.org])
|
||||||
AC_PREREQ([2.50])
|
AC_PREREQ([2.50])
|
||||||
dnl AC_CONFIG_HEADER([config.h])
|
dnl AC_CONFIG_HEADER([config.h])
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ AC_SUBST(BURN_MICRO_VERSION)
|
|||||||
|
|
||||||
LIBISOFS_MAJOR_VERSION=0
|
LIBISOFS_MAJOR_VERSION=0
|
||||||
LIBISOFS_MINOR_VERSION=6
|
LIBISOFS_MINOR_VERSION=6
|
||||||
LIBISOFS_MICRO_VERSION=18
|
LIBISOFS_MICRO_VERSION=19
|
||||||
AC_SUBST(LIBISOFS_MAJOR_VERSION)
|
AC_SUBST(LIBISOFS_MAJOR_VERSION)
|
||||||
AC_SUBST(LIBISOFS_MINOR_VERSION)
|
AC_SUBST(LIBISOFS_MINOR_VERSION)
|
||||||
AC_SUBST(LIBISOFS_MICRO_VERSION)
|
AC_SUBST(LIBISOFS_MICRO_VERSION)
|
||||||
|
@ -25,11 +25,11 @@
|
|||||||
current_dir=$(pwd)
|
current_dir=$(pwd)
|
||||||
lone_dir="$current_dir"/"xorriso-standalone"
|
lone_dir="$current_dir"/"xorriso-standalone"
|
||||||
|
|
||||||
xorriso_rev=0.3.7
|
xorriso_rev=0.3.8
|
||||||
# For unstable uploads:
|
# For unstable uploads:
|
||||||
xorriso_pl=""
|
# xorriso_pl=""
|
||||||
# For stable releases:
|
# For stable releases:
|
||||||
# xorriso_pl=".pl00"
|
xorriso_pl=".pl00"
|
||||||
|
|
||||||
with_bootstrap_tarball=1
|
with_bootstrap_tarball=1
|
||||||
|
|
||||||
|
@ -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 "Apr 14, 2009"
|
.TH XORRISO 1 "Apr 18, 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:
|
||||||
@ -497,7 +497,7 @@ the history of previous input lines.
|
|||||||
.br
|
.br
|
||||||
See man readline for more info about libreadline.
|
See man readline for more info about libreadline.
|
||||||
.PP
|
.PP
|
||||||
Option -page activates a builtin result text pager which may be convenient in
|
Option -page activates a built-in result text pager which may be convenient in
|
||||||
dialog. After an action has put out the given number of terminal lines,
|
dialog. After an action has put out the given number of terminal lines,
|
||||||
the pager prompts the user for a line of input.
|
the pager prompts the user for a line of input.
|
||||||
.br
|
.br
|
||||||
@ -1137,7 +1137,7 @@ External filters may also be banned totally at compile time of xorriso.
|
|||||||
By default they are banned if xorriso runs under setuid permission.
|
By default they are banned if xorriso runs under setuid permission.
|
||||||
.TP
|
.TP
|
||||||
\fB\-set_filter\fR name iso_rr_path [***]
|
\fB\-set_filter\fR name iso_rr_path [***]
|
||||||
Apply an -external_filter or a builtin filter to the given data files in the
|
Apply an -external_filter or a built--in filter to the given data files in the
|
||||||
ISO image.
|
ISO image.
|
||||||
If the filter suffix is not empty , then it will be applied to the file name.
|
If the filter suffix is not empty , then it will be applied to the file name.
|
||||||
Renaming only happens if the filter really gets attached and is not revoked by
|
Renaming only happens if the filter really gets attached and is not revoked by
|
||||||
@ -1166,7 +1166,7 @@ Builtin filters are "--zisofs" and "--zisofs-decode". The former is to be
|
|||||||
applied via -set_filter, the latter is automatically applied if zisofs
|
applied via -set_filter, the latter is automatically applied if zisofs
|
||||||
compressed content is detected with a file when loading the ISO image.
|
compressed content is detected with a file when loading the ISO image.
|
||||||
.br
|
.br
|
||||||
Another builtin filter pair is "--gzip" and "--gunzip" with suffix ".gz".
|
Another built-in filter pair is "--gzip" and "--gunzip" with suffix ".gz".
|
||||||
They behave about like external gzip and gunzip but avoid forking a process
|
They behave about like external gzip and gunzip but avoid forking a process
|
||||||
for each single file. So they are much faster if there are many small files.
|
for each single file. So they are much faster if there are many small files.
|
||||||
.TP
|
.TP
|
||||||
@ -1657,7 +1657,7 @@ of different type. Nevertheless those hops can loop. Example:
|
|||||||
.br
|
.br
|
||||||
\fB$\fR ln -s .. uploop
|
\fB$\fR ln -s .. uploop
|
||||||
.br
|
.br
|
||||||
Link hopping has a builtin loop detection which stops hopping at the first
|
Link hopping has a built-in loop detection which stops hopping at the first
|
||||||
repetition of a link target. Then the repeated link is handled as itself
|
repetition of a link target. Then the repeated link is handled as itself
|
||||||
and not as its target.
|
and not as its target.
|
||||||
Regrettably one can construct link networks which
|
Regrettably one can construct link networks which
|
||||||
@ -1805,7 +1805,7 @@ Group id to be used for all files when the new ISO tree gets written to media.
|
|||||||
\fB\-zisofs\fR option[:options]
|
\fB\-zisofs\fR option[:options]
|
||||||
Set global parameters for zisofs compression. This data format is recognized
|
Set global parameters for zisofs compression. This data format is recognized
|
||||||
and transparently uncompressed by some Linux kernels. It is to be applied
|
and transparently uncompressed by some Linux kernels. It is to be applied
|
||||||
via option -set_filter with builtin filter "--zisofs".
|
via option -set_filter with built-in filter "--zisofs".
|
||||||
Parameters are:
|
Parameters are:
|
||||||
.br
|
.br
|
||||||
"level="[0-9] zlib compression: 0=none, 1=fast,..., 9=slow
|
"level="[0-9] zlib compression: 0=none, 1=fast,..., 9=slow
|
||||||
@ -3333,6 +3333,10 @@ the old one.
|
|||||||
.br
|
.br
|
||||||
This makes sense if the full backup leaves substantial remaining capacity
|
This makes sense if the full backup leaves substantial remaining capacity
|
||||||
on media and if the expected changes are much smaller than the full backup.
|
on media and if the expected changes are much smaller than the full backup.
|
||||||
|
To apply zisofs compression to those data files which get newly copied from
|
||||||
|
the local filesystem, perform immediately before -commit :
|
||||||
|
.br
|
||||||
|
-find / -type f -lba_range -1 2000000000 -exec set_filter --zisofs --
|
||||||
.br
|
.br
|
||||||
Option -disk_dev_ino depends on stable device and inode numbers on disk.
|
Option -disk_dev_ino depends on stable device and inode numbers on disk.
|
||||||
Without it, an update run will probably save no time but last longer than
|
Without it, an update run will probably save no time but last longer than
|
||||||
|
@ -103,6 +103,10 @@ Changes file properties, renames or deletes file objects in the ISO image.
|
|||||||
Updates ISO subtrees incrementally to match given disk subtrees.
|
Updates ISO subtrees incrementally to match given disk subtrees.
|
||||||
</LI>
|
</LI>
|
||||||
<LI>
|
<LI>
|
||||||
|
File content may get zisofs or gzip compressed or filtered by external
|
||||||
|
processes.
|
||||||
|
</LI>
|
||||||
|
<LI>
|
||||||
Writes result as completely new image or as add-on session
|
Writes result as completely new image or as add-on session
|
||||||
to optical media or filesystem objects.
|
to optical media or filesystem objects.
|
||||||
</LI>
|
</LI>
|
||||||
@ -112,11 +116,6 @@ Can activate ISOLINUX boot images by El Torito boot record and by MBR.
|
|||||||
<LI>
|
<LI>
|
||||||
Can perform multi-session tasks as emulation of mkisofs and cdrecord.
|
Can perform multi-session tasks as emulation of mkisofs and cdrecord.
|
||||||
</LI>
|
</LI>
|
||||||
<!--
|
|
||||||
<LI>
|
|
||||||
Content may get zisofs compressed or filtered by external processes.
|
|
||||||
</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>
|
||||||
@ -284,6 +283,14 @@ Files with names ending by ".o" or ".swp" are excluded by options -not_leaf.
|
|||||||
<DD><KBD> -update_r /home/thomas/personal_mail /personal_mail \</KBD></DD>
|
<DD><KBD> -update_r /home/thomas/personal_mail /personal_mail \</KBD></DD>
|
||||||
<DD><KBD> -commit -toc -eject all</KBD></DD>
|
<DD><KBD> -commit -toc -eject all</KBD></DD>
|
||||||
|
|
||||||
|
<DT>
|
||||||
|
To apply zisofs compression to those data files which get newly copied from
|
||||||
|
the local filesystem, perform immediately before -commit :
|
||||||
|
<DD>
|
||||||
|
<KBD> -find / -type f -lba_range -1 2000000000 -exec set_filter --zisofs -- \</KBD></DD>
|
||||||
|
</DD>
|
||||||
|
</DT>
|
||||||
|
|
||||||
<DT>
|
<DT>
|
||||||
<HR>
|
<HR>
|
||||||
</DT>
|
</DT>
|
||||||
@ -404,8 +411,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.6.pl00.tar.gz">xorriso-0.3.6.pl00.tar.gz</A>
|
<DD><A HREF="xorriso-0.3.8.pl00.tar.gz">xorriso-0.3.8.pl00.tar.gz</A>
|
||||||
(1180 KB).
|
(1220 KB).
|
||||||
</DD>
|
</DD>
|
||||||
</DL>
|
</DL>
|
||||||
</DD>
|
</DD>
|
||||||
@ -431,14 +438,10 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
|
|||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
<P>
|
<P>
|
||||||
Bug fixes towards xorriso-0.3.4.pl00:
|
Bug fixes towards xorriso-0.3.6.pl00:
|
||||||
<UL>
|
<UL>
|
||||||
<LI>Solaris recognized Rock Ridge in ISO images from xorriso
|
|
||||||
only if the new AAIP extension hid a bug with -compliance old_rr</LI>
|
|
||||||
<LI>Solaris was not able to use the ".." directory entry for navigation
|
|
||||||
in xorriso generated ISO images</LI>
|
|
||||||
<!--
|
|
||||||
<LI>- none -</LI>
|
<LI>- none -</LI>
|
||||||
|
<!--
|
||||||
-->
|
-->
|
||||||
|
|
||||||
</UL>
|
</UL>
|
||||||
@ -446,17 +449,25 @@ in xorriso generated ISO images</LI>
|
|||||||
</P>
|
</P>
|
||||||
|
|
||||||
<P>
|
<P>
|
||||||
Enhancements towards previous stable version xorriso-0.3.4.pl00:
|
Enhancements towards previous stable version xorriso-0.3.6.pl00:
|
||||||
<UL>
|
<UL>
|
||||||
<LI>
|
<LI>
|
||||||
Dummy MMC adapter for compilation on systems other than Linux, FreeBSD
|
New options -set_filter , -set_filter_r, -find -exec set_filter
|
||||||
</LI>
|
</LI>
|
||||||
<LI>
|
<LI>
|
||||||
Default of -compliance has been changed to "old_rr". The previous default is
|
New option -zisofs, built-in filters --zisofs , --gzip , --gunzip</LI>
|
||||||
now available as "new_rr".
|
|
||||||
</LI>
|
</LI>
|
||||||
<LI>
|
<LI>
|
||||||
New -stream_recording modes with start address or "data". "on" is now 32s.
|
New options -external_filter , -unregister_filter, -close_filter_list
|
||||||
|
</LI>
|
||||||
|
<LI>
|
||||||
|
New options -show_stream, -show_stream_r
|
||||||
|
</LI>
|
||||||
|
<LI>
|
||||||
|
New -osirrox mode "banned"
|
||||||
|
</LI>
|
||||||
|
<LI>
|
||||||
|
New option -auto_charset based on xattr "isofs.cs"
|
||||||
</LI>
|
</LI>
|
||||||
</UL>
|
</UL>
|
||||||
</P>
|
</P>
|
||||||
@ -473,11 +484,11 @@ Library copies included in xorriso tarballs:
|
|||||||
<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.16</DT>
|
<DT>libisofs-0.6.19</DT>
|
||||||
<DD>operates on ISO 9660 filesystem images.</DD>
|
<DD>operates on ISO 9660 filesystem images.</DD>
|
||||||
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
|
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
|
||||||
from team of libburnia-project.org)</DD>
|
from team of libburnia-project.org)</DD>
|
||||||
<DT>libisoburn-0.3.6</DT>
|
<DT>libisoburn-0.3.8</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>
|
||||||
@ -491,40 +502,25 @@ cdrecord and mkisofs.</DT>
|
|||||||
|
|
||||||
<P>
|
<P>
|
||||||
<DL>
|
<DL>
|
||||||
<DT><H3>Development snapshot, version 0.3.7 :</H3></DT>
|
<DT><H3>Development snapshot, version 0.3.9 :</H3></DT>
|
||||||
<DD>Bug fixes towards xorriso-0.3.6.pl00:
|
<DD>Bug fixes towards xorriso-0.3.8.pl00:
|
||||||
<UL>
|
<UL>
|
||||||
<LI>- none yet -</LI>
|
<LI>- none yet -</LI>
|
||||||
<!--
|
<!--
|
||||||
-->
|
-->
|
||||||
</UL>
|
</UL>
|
||||||
</DD>
|
</DD>
|
||||||
<DD>Enhancements towards stable version 0.3.6.pl00:
|
<DD>Enhancements towards stable version 0.3.8.pl00:
|
||||||
<UL>
|
<UL>
|
||||||
<LI>
|
|
||||||
New option -auto_charset based on xattr "isofs.cs" and "isofs.st"
|
|
||||||
</LI>
|
|
||||||
<LI>
|
|
||||||
New options -external_filter , -unregister_filter , -close_filter_list , -set_filter , -set_filter_r
|
|
||||||
</LI>
|
|
||||||
<LI>
|
|
||||||
New option -zisofs, builtin filters --zisofs and --zisofs-decode
|
|
||||||
</LI>
|
|
||||||
<LI>
|
|
||||||
New options -show_stream, -show_stream_r
|
|
||||||
</LI>
|
|
||||||
<LI>
|
|
||||||
New -osirrox mode "banned"
|
|
||||||
</LI>
|
|
||||||
<!--
|
|
||||||
<LI>- none yet -</LI>
|
<LI>- none yet -</LI>
|
||||||
|
<!--
|
||||||
-->
|
-->
|
||||||
</UL>
|
</UL>
|
||||||
</DD>
|
</DD>
|
||||||
<DD> </DD>
|
<DD> </DD>
|
||||||
<DD><A HREF="README_xorriso_devel">README 0.3.7</A>
|
<DD><A HREF="README_xorriso_devel">README 0.3.9</A>
|
||||||
<DD><A HREF="xorriso_help_devel">xorriso_0.3.7 -help</A></DD>
|
<DD><A HREF="xorriso_help_devel">xorriso_0.3.9 -help</A></DD>
|
||||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.7)</A></DD>
|
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.3.9)</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
|
||||||
@ -534,7 +530,7 @@ libburnia libraries.
|
|||||||
installation see README)
|
installation see README)
|
||||||
</DD>
|
</DD>
|
||||||
<DD>
|
<DD>
|
||||||
<A HREF="xorriso-0.3.7.tar.gz">xorriso-0.3.7.tar.gz</A>
|
<A HREF="xorriso-0.3.9.tar.gz">xorriso-0.3.9.tar.gz</A>
|
||||||
(1220 KB).
|
(1220 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.7"
|
#define Xorriso_program_versioN "0.3.8"
|
||||||
|
|
||||||
/** The source code release timestamp */
|
/** The source code release timestamp */
|
||||||
#include "xorriso_timestamp.h"
|
#include "xorriso_timestamp.h"
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2009.04.16.145617"
|
#define Xorriso_timestamP "2009.04.18.120001"
|
||||||
|
@ -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 7
|
#define xorriso_libisoburn_req_micro 8
|
||||||
|
|
||||||
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
||||||
|
|
||||||
@ -211,16 +211,6 @@ int Xorriso_burn_track(struct XorrisO *xorriso, off_t write_start_address,
|
|||||||
int Xorriso_get_profile(struct XorrisO *xorriso, int *profile_number,
|
int Xorriso_get_profile(struct XorrisO *xorriso, int *profile_number,
|
||||||
char profile_name[80], int flag);
|
char profile_name[80], int flag);
|
||||||
|
|
||||||
#ifdef NIX
|
|
||||||
|
|
||||||
/* @param flag bit0= do not mark image as changed */
|
|
||||||
int Xorriso_set_publisher(struct XorrisO *xorriso, char *name, int flag);
|
|
||||||
|
|
||||||
/* @param flag bit0= do not mark image as changed */
|
|
||||||
int Xorriso_set_application_id(struct XorrisO *xorriso, char *name, int flag);
|
|
||||||
|
|
||||||
#endif /* NIX */
|
|
||||||
|
|
||||||
/* @param flag bit0= node_pt is a valid ISO object handle, ignore pathname
|
/* @param flag bit0= node_pt is a valid ISO object handle, ignore pathname
|
||||||
*/
|
*/
|
||||||
int Xorriso_iso_file_open(struct XorrisO *xorriso, char *pathname,
|
int Xorriso_iso_file_open(struct XorrisO *xorriso, char *pathname,
|
||||||
|
Reference in New Issue
Block a user