Version leap to 0.1.1

This commit is contained in:
Thomas Schmitt 2008-02-15 21:19:24 +00:00
parent 33e666da11
commit 5163a66a02
11 changed files with 116 additions and 92 deletions

19
README
View File

@ -25,17 +25,17 @@ 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.1.0 : Dynamic library and compile time header requirements for libisoburn-0.1.1 :
- libburn.so.4 , version libburn-0.4.2 or higher - libburn.so.4 , version libburn-0.4.2 or higher
- libisofs.so.6 , version libisofs-0.6.2 or higher - libisofs.so.6 , version libisofs-0.6.2 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.1.0.tar.gz, take it to a directory of your choice and do: Obtain libisoburn-0.1.1.tar.gz, take it to a directory of your choice and do:
tar xzf libisoburn-0.1.0.tar.gz tar xzf libisoburn-0.1.1.tar.gz
cd libisoburn-0.1.0 cd libisoburn-0.1.1
Within that directory execute: Within that directory execute:
@ -53,12 +53,17 @@ as well as
/usr/lib/libburn/libburn.h /usr/lib/libburn/libburn.h
xorriso
libisoburn includes a command line and dialog application named xorriso, libisoburn includes a command line and dialog application named xorriso,
which offers a substantial part of libisoburn features to shell scripts and which offers a substantial part of libisoburn features to shell scripts and
users. users. Its file xorriso/README describes a standlone tarball as first
After installation its documentation is available via preference for xorriso installation.
man xorriso The installation described here produces a dynamically linked xorriso binary
as described in chapter "libisoburn" at the end of that text.
After installation documentation is available via
man xorriso
Drives and Disk File Objects Drives and Disk File Objects

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [0.0.1], [http://libburnia-project.org]) AC_INIT([libisoburn], [0.1.1], [http://libburnia-project.org])
AC_PREREQ([2.50]) AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h]) dnl AC_CONFIG_HEADER([config.h])
@ -14,7 +14,7 @@ dnl LT_CURREN, LT_AGE, LT_REVISION where SONAME becomes LT_CURRENT - LT_AGE
dnl 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=0 ISOBURN_MINOR_VERSION=1
ISOBURN_MICRO_VERSION=1 ISOBURN_MICRO_VERSION=1
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
@ -24,13 +24,18 @@ AC_SUBST(ISOBURN_MICRO_VERSION)
dnl AC_SUBST(ISOBURN_VERSION) dnl AC_SUBST(ISOBURN_VERSION)
dnl Libtool versioning dnl Libtool versioning
dnl Generate libisoburn.so.1.0.0 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 ts A80215
dnl This is the developmen t version after stable release libisoburn.so.1.1.0
dnl LT_CURRENT++, LT_AGE++ has not happened yet.
dnl dnl
dnl SONAME = 2 - 1 = 1 . Library name = libburn.so.1.1.1
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=1 LT_CURRENT=2
LT_AGE=0 LT_AGE=1
LT_REVISION=0 LT_REVISION=1
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
AC_SUBST(LT_RELEASE) AC_SUBST(LT_RELEASE)
@ -83,15 +88,12 @@ AC_CHECK_HEADER(readline/history.h, AC_CHECK_LIB(readline, add_history, X= , REA
AC_SUBST(READLINE_DEF) AC_SUBST(READLINE_DEF)
dnl >>> How to check for proper library versions ?
dnl >>> would need libburn-0.4.2 or higher .so.4
dnl >>> would need libisofs-0.6.1 or higher .so.6
AC_CHECK_HEADER(libburn/libburn.h) AC_CHECK_HEADER(libburn/libburn.h)
AC_CHECK_HEADER(libisofs/libisofs.h) AC_CHECK_HEADER(libisofs/libisofs.h)
dnl Check for proper library versions dnl Check for proper library versions
LIBBURN_REQUIRED=0.4.2 LIBBURN_REQUIRED=0.4.2
LIBISOFS_REQUIRED=0.6.1 LIBISOFS_REQUIRED=0.6.2
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED) PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED) PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)

View File

@ -62,12 +62,12 @@ libburn demands rw-permissions to drive device file resp. file object.
If the input drive provides a suitable ISO RockRidge image, then its tree If the input drive provides a suitable ISO RockRidge image, then its tree
may be loaded into memory and can then be manipulated by libisofs API calls. may be loaded into memory and can then be manipulated by libisofs API calls.
The loading is done by isoburn_read_image() under control of The loading is done by isoburn_read_image() under control of
struct isoburn_read_opts which the application obtains from libisoburn. struct isoburn_read_opts which the application obtains from libisoburn
It may be manipulated by the family of isoburn_ropt_set_*() functions. and manipulates by the family of isoburn_ropt_set_*() functions.
Writing of result images is controlled by libisofs related parameters Writing of result images is controlled by libisofs related parameters
in a struct isoburn_imgen_opts which the application obtains from libisoburn. in a struct isoburn_imgen_opts which the application obtains from libisoburn
It may be manipulated by the family of isoburn_igopt_set_*() functions. and manipulates by the family of isoburn_igopt_set_*() functions.
All multi-session aspects are handled by libisoburn according to these All multi-session aspects are handled by libisoburn according to these
settings. The application does not have to analyze media state and write settings. The application does not have to analyze media state and write
@ -164,12 +164,19 @@ int isoburn_is_compatible(int major, int minor, int micro, int flag);
Pare numbers indicate a version with frozen API. I.e. you can Pare numbers indicate a version with frozen API. I.e. you can
rely on the same set of features to be present in all rely on the same set of features to be present in all
published releases with that major.minor.micro combination. published releases with that major.minor.micro combination.
Features of a pare release will stay available and ABI
compatible as long as the SONAME of libisoburn stays "1".
Currently there are no plans to ever change the SONAME.
Odd numbers indicate that API upgrades are in progress. Odd numbers indicate that API upgrades are in progress.
I.e. new features might be already present or they might I.e. new features might be already present or they might
be still missing. be still missing. Newly introduced features may be changed
incompatibly or even be revoked before release of a pare
version.
So micro revisions {1,3,5,7,9} should never be used for So micro revisions {1,3,5,7,9} should never be used for
dynamic linking unless the proper library match can be dynamic linking unless the proper library match can be
guaranteed by external circumstances. guaranteed by external circumstances.
@return 1 success, <=0 might in future become an error indication @return 1 success, <=0 might in future become an error indication
*/ */
void isoburn_version(int *major, int *minor, int *micro); void isoburn_version(int *major, int *minor, int *micro);
@ -224,13 +231,13 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
@since 0.1.0 @since 0.1.0
*/ */
#define isoburn_header_version_major 0 #define isoburn_header_version_major 0
#define isoburn_header_version_minor 0 #define isoburn_header_version_minor 1
#define isoburn_header_version_micro 1 #define isoburn_header_version_micro 1
/** 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.
For the library compatibility check ISOBURN_*_VERSION in configure.ac For the library compatibility check, ISOBURN_*_VERSION in configure.ac
are not decisive. Only the three numbers above do matter. are not decisive. Only the three numbers here do matter.
*/ */
/** Usage discussion: /** Usage discussion:
@ -273,8 +280,20 @@ at the cost of excluding some older libraries.
These two advises are mutually exclusive. These two advises are mutually exclusive.
-----------------------------------------------------
For an implementation of the Thomas Schmitt approach, For an implementation of the Thomas Schmitt approach,
see libisoburn/burn_wrap.c : isoburn_initialize() see libisoburn/burn_wrap.c : isoburn_initialize()
This connects libisoburn as "application" with libisofs
as "library".
The compatible part of Vreixo Formoso's approach is implemented
in configure.ac LIBBURN_REQUIRED, LIBISOFS_REQUIRED.
In isoburn_initialize() it would rather test by
iso_lib_is_compatible(isoburn_libisofs_req_major,...
than by
iso_lib_is_compatible(iso_lib_header_version_major,...
and would leave out the ugly compile time traps.
*/ */

View File

@ -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.1.0.tar.gz http://scdbackup.sourceforge.net/xorriso-0.1.1.tar.gz
Copyright (C) 2006-2008 Thomas Schmitt, provided under GPL version 2. Copyright (C) 2006-2008 Thomas Schmitt, provided under GPL version 2.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -27,17 +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
The most simple way to get xorriso is the xorriso standalone tarball. The most simple way to get xorriso from source code is the xorriso standalone
tarball.
Prerequisites: Prerequisites:
The tarball contains anything that is needed except libc and libpthread. The tarball contains anything that is needed except libc and libpthread.
libreadline and the libreadline-dev headers will make dialog mode libreadline and the readline-dev headers will make dialog mode more convenient,
more convenient, but are not mandatory. but are not mandatory.
Obtain xorriso-0.1.0.tar.gz, take it to a directory of your choice and do: Obtain xorriso-0.1.1.tar.gz, take it to a directory of your choice and do:
tar xzf xorriso-0.1.0.tar.gz tar xzf xorriso-0.1.1.tar.gz
cd xorriso-0.1.0 cd xorriso-0.1.1
Within that directory execute: Within that directory execute:
@ -159,7 +160,7 @@ 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.1.0 : Dynamic library and compile time header requirements for libisoburn-0.1.1 :
- libburn.so.4 , version libburn-0.4.2 or higher - libburn.so.4 , version libburn-0.4.2 or higher
- libisofs.so.6 , version libisofs-0.6.2 or higher - libisofs.so.6 , version libisofs-0.6.2 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

View File

@ -1,9 +1,14 @@
#!/bin/sh #!/bin/sh
# compile_xorriso.sh # compile_xorriso.sh
# Copyright 2005 - 2007 Thomas Schmitt, scdbackup@gmx.net, GPL # Copyright 2005 - 2008 Thomas Schmitt, scdbackup@gmx.net, GPL
# to be executed in a common parent of the directories given with #
# $isofs $isoburn $burn # Not intended for general use in production installations !
# Rather use: ./bootstrap ; ./configure ; make
#
# This is a development tool which expects a special setup of directories.
# It is to be executed in a common parent of the directories given with
# $isofs $isoburn $burn $xorr
isofs=./nglibisofs-develop/libisofs isofs=./nglibisofs-develop/libisofs
burn=./libburn-develop/libburn burn=./libburn-develop/libburn

View File

@ -1,4 +1,4 @@
AC_INIT([xorriso], [0.1.0], [http://libburnia-project.org]) AC_INIT([xorriso], [0.1.1], [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,18 +21,8 @@ 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)
dnl The API version codes are now defined in libisoburn/libisoburn.h dnl The API version codes are defined in libisoburn/libisoburn.h
dnl #define isoburn_header_version_* dnl #define isoburn_header_version_*
dnl configure.ac only rules the libtool revision numbering about
dnl LT_CURREN, LT_AGE, LT_REVISION where SONAME becomes LT_CURRENT - LT_AGE
dnl
dnl These three are only copies to provide libtool with unused LT_RELEASE
dnl ISOBURN_MAJOR_VERSION=0
dnl ISOBURN_MINOR_VERSION=0
dnl ISOBURN_MICRO_VERSION=1
dnl AC_SUBST(ISOBURN_MAJOR_VERSION)
dnl AC_SUBST(ISOBURN_MINOR_VERSION)
dnl AC_SUBST(ISOBURN_MICRO_VERSION)
AC_PREFIX_DEFAULT([/usr/local]) AC_PREFIX_DEFAULT([/usr/local])

View File

@ -1,15 +1,20 @@
#!/bin/sh #!/bin/sh
# # make_xorriso_standalone.sh
# Copyright 2008 Thomas Schmitt, scdbackup@gmx.net, GPL # Copyright 2008 Thomas Schmitt, scdbackup@gmx.net, GPL
# #
# Not intended for general use in production installations !
#
# This is a development tool which expects a special setup of directories.
# It is to be executed in a common parent of the directories
# nglibisofs-develop libburn-develop libisoburn-develop
#
# Creates a standalone tree for building xorriso # Creates a standalone tree for building xorriso
# from the contents of a unified libburnia development tree. # from the contents of a unified libburnia development tree.
#
# The ./bootstrap script gets applied and a source tarball # The ./bootstrap script gets applied and a source tarball
# is made. # is made.
# #
# To be executed in the parent of the *-develop directories.
#
# From that tree can be build a binary xorriso/xorriso # From that tree can be build a binary xorriso/xorriso
# which at runtime depends only on libc and libpthread. # which at runtime depends only on libc and libpthread.
# Execute in $lone_dir : # Execute in $lone_dir :
@ -20,7 +25,8 @@
current_dir=$(pwd) current_dir=$(pwd)
lone_dir="$current_dir"/"xorriso-standalone" lone_dir="$current_dir"/"xorriso-standalone"
xorriso_rev=0.0.1 xorriso_rev=0.1.1
# For unstable uploads:
xorriso_pl="" xorriso_pl=""
# For stable releases: # For stable releases:
# xorriso_pl=".pl00" # xorriso_pl=".pl00"
@ -32,7 +38,7 @@ create_dir() {
then then
dummy=dummy dummy=dummy
else else
echo "Failed to create : $r1o" >&2 echo "Failed to create : $1" >&2
exit 1 exit 1
fi fi
} }
@ -73,6 +79,9 @@ create_dir "$lone_dir"
copy_files \ copy_files \
AUTHORS \ AUTHORS \
CONTRIBUTORS \ CONTRIBUTORS \
COPYRIGHT \
COPYING \
INSTALL \
acinclude.m4 \ acinclude.m4 \
aclocal.m4 \ aclocal.m4 \
bootstrap \ bootstrap \
@ -98,7 +107,7 @@ copy_files xorriso/xorriso_pc_in.txt "$lone_dir"/xorriso.pc.in
copy_files xorriso/README "$lone_dir"/README copy_files xorriso/README "$lone_dir"/README
echo "See end of xorriso/changelog.txt" >"$lone_dir"/TODO # echo "See end of xorriso/changelog.txt" >"$lone_dir"/TODO
# libisoburn # libisoburn
@ -127,14 +136,12 @@ copy_files \
"$lone_dir"/test/compare_file.c "$lone_dir"/test/compare_file.c
# >>> create compile_xorriso.sh for standalone
# nglibisofs # nglibisofs
create_dir "$lone_dir"/libisofs create_dir "$lone_dir"/libisofs
goto_dir "$current_dir"/nglibisofs-develop goto_dir "$current_dir"/nglibisofs-develop
copy_files libisofs/*.[ch] "$lone_dir"/libisofs copy_files libisofs/*.[ch] "$lone_dir"/libisofs
copy_files COPYRIGHT "$lone_dir"/libisofs
# To get a common version.h # To get a common version.h
cat version.h.in >> "$lone_dir"/version.h.in cat version.h.in >> "$lone_dir"/version.h.in
@ -176,8 +183,8 @@ fi
create_dir "$lone_dir"/libburn create_dir "$lone_dir"/libburn
goto_dir "$current_dir"/libburn-develop goto_dir "$current_dir"/libburn-develop
copy_files libburn/*.[ch] "$lone_dir"/libburn copy_files libburn/*.[ch] "$lone_dir"/libburn
copy_files COPYRIGHT "$lone_dir"/libburn
copy_files COPYING "$lone_dir"/COPYING
# To get a common version.h # To get a common version.h
cat version.h.in >> "$lone_dir"/version.h.in cat version.h.in >> "$lone_dir"/version.h.in

View File

@ -62,9 +62,9 @@ GPL software included:<BR>
<DD>reads and writes data from and to CD and DVD.</DD> <DD>reads and writes data from and to CD and DVD.</DD>
<DD>(founded by Derek Foreman and Ben Jansens, <DD>(founded by Derek Foreman and Ben Jansens,
furthered by team of libburnia-project.org)</DD> furthered by team of libburnia-project.org)</DD>
<DT>libisofs-0.6.1</DT> <DT>libisofs-0.6.2</DT>
<DD>operates ISO 9660 images.</DD> <DD>operates ISO 9660 images.</DD>
<DD>(By Vreixo Formoso from team of libburnia-project.org)</DD> <DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD>
<DT>libisoburn-0.1.0</DT> <DT>libisoburn-0.1.0</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
@ -119,6 +119,9 @@ Reads its instructions from command line arguments, dialog, and batch files.
<LI> <LI>
Provides navigation commands for interactive ISO image manipulation. Provides navigation commands for interactive ISO image manipulation.
</LI> </LI>
<LI>
Adjustable thresholds for abort, exit value, and problem reporting.
</LI>
</UL> </UL>
</P> </P>
@ -264,8 +267,8 @@ Testers wanted who are willing to risk some double layer DVD media.
<P> <P>
<DL> <DL>
<DT>Download as source code (see README):</DT> <DT>Download as source code (see README):</DT>
<DD><A HREF="xorriso-0.1.0.tar.gz">xorriso-0.1.0.tar.gz</A> <DD><A HREF="xorriso-0.1.0.pl00.tar.gz">xorriso-0.1.0.pl00.tar.gz</A>
( KB). (900 KB).
</DD> </DD>
<!-- <!--
@ -304,27 +307,16 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
</P> </P>
<!--
<HR>
<P>
Enhancements towards previous stable version xorriso-0.1.0:
<UL>
<LI>none yet</LI>
</UL>
Bug fixes towards xorriso-0.1.0.pl00:
<UL>
<LI>none yet</LI>
</UL>
</P>
<HR> <HR>
<P> <P>
<DL> <DL>
<DT><H3>Development snapshot, version 0.1.0 :</H3></DT> <DT><H3>Development snapshot, version 0.1.1 :</H3></DT>
<DD>Bug fixes towards xorriso-0.1.0.pl00:
<UL>
<LI>none yet</LI>
</UL>
</DD>
<DD>Enhancements towards stable version 0.1.0.pl00: <DD>Enhancements towards stable version 0.1.0.pl00:
<UL> <UL>
<LI>none yet</LI> <LI>none yet</LI>
@ -339,14 +331,14 @@ Bug fixes towards xorriso-0.1.0.pl00:
<A HREF="http://libburnia-project.org"> libburnia-project.org</A></DT> <A HREF="http://libburnia-project.org"> libburnia-project.org</A></DT>
<DD>Download: <KBD><B>svn co http://svn.libburnia-project.org/libburn/trunk libburn</B> <DD>Download: <KBD><B>svn co http://svn.libburnia-project.org/libburn/trunk libburn</B>
</KBD></DD> </KBD></DD>
<DD>Build: <KBD><B>cd libburn ; ./bootstrap ; ./configure --prefix /usr ; make</B> <DD>Install: <KBD><B>cd libburn ; ./bootstrap ; ./configure --prefix /usr ; make ; make install</B>
</KBD></DD> </KBD></DD>
<DD>Download: <KBD><B>svn co http://svn.libburnia-project.org/libisoburn/trunk libisburn</B> <DD>Download: <KBD><B>bzr branch lp:libisofs</B></KBD></DD>
<DD>Install: <KBD><B>cd libisofs ; ./bootstrap ; ./configure --prefix /usr ; make ; make install</B>
</KBD></DD> </KBD></DD>
<DD>Build: <KBD><B>cd libisoburn ; ./bootstrap ; ./configure --prefix /usr ; make</B> <DD>Download: <KBD><B>svn co http://svn.libburnia-project.org/libisoburn/trunk libisoburn</B>
</KBD></DD> </KBD></DD>
<DD>Download: - libisofs bzr service not functional yet - </DD> <DD>Install: <KBD><B>cd libisoburn ; ./bootstrap ; ./configure --prefix /usr ; make ; make install</B>
<DD>Build: <KBD><B>cd ng-libisofs ; ./autogen.sh ; ./configure --prefix /usr ; make</B>
</KBD></DD> </KBD></DD>
<DD>Build of SVN versions needs <A HREF="http://sources.redhat.com/autobook/"> <DD>Build of SVN versions needs <A HREF="http://sources.redhat.com/autobook/">
autotools</A> of at least version 1.7 installed. autotools</A> of at least version 1.7 installed.
@ -354,15 +346,17 @@ But after the run of <KBD>./bootstrap</KBD>, only
vanilla tools like make and gcc are needed.</DD> vanilla tools like make and gcc are needed.</DD>
</DD> </DD>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<DT>The following downloads are intended for adventurous end users or <DT>The following download is intended for adventurous end users or
admins with full system souvereignty.</DT> admins with full system souvereignty.</DT>
<DD>Source (./bootstrap is already applied, build tested, for more see <DD>Source (./bootstrap is already applied, build tested, for more see
<A HREF="README_xorriso_devel">upcoming README</A> ): <A HREF="README_xorriso_devel">upcoming README</A> ):
</DD> </DD>
<DD> <DD>
<A HREF="xorriso-0.1.1.tar.gz">xorriso-0.1.1.tar.gz</A> <A HREF="xorriso-0.1.1.tar.gz">xorriso-0.1.1.tar.gz</A>
(680 KB). (900 KB).
</DD> </DD>
<!--
<DD>Binary (untar and move to /usr/bin/xorriso):</DD> <DD>Binary (untar and move to /usr/bin/xorriso):</DD>
<DD><A HREF="xorriso_0.1.1-x86-suse9_0.tar.gz"> <DD><A HREF="xorriso_0.1.1-x86-suse9_0.tar.gz">
xorriso_0.1.1-x86-suse9_0.tar.gz</A>, ( KB). xorriso_0.1.1-x86-suse9_0.tar.gz</A>, ( KB).
@ -370,10 +364,11 @@ xorriso_0.1.1-x86-suse9_0.tar.gz</A>, ( KB).
<DD><A HREF="xorriso_0.1.1-x86-suse9_0-static.tar.gz"> <DD><A HREF="xorriso_0.1.1-x86-suse9_0-static.tar.gz">
xorriso_0.1.1-x86-suse9_0-static.tar.gz</A>, ( KB) xorriso_0.1.1-x86-suse9_0-static.tar.gz</A>, ( KB)
</DD> </DD>
-->
</DL> </DL>
</P> </P>
-->
<HR> <HR>
<P> <P>

View File

@ -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.0.1" #define Xorriso_program_versioN "0.1.1"
/** The source code release timestamp */ /** The source code release timestamp */
#include "xorriso_timestamp.h" #include "xorriso_timestamp.h"

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.02.14.182351" #define Xorriso_timestamP "2008.02.15.211836"

View File

@ -20,8 +20,8 @@ struct FindjoB;
/* The minimum version of libisoburn to be used with this version of xorriso /* The minimum version of libisoburn to be used with this version of xorriso
*/ */
#define xorriso_libisoburn_req_major 0 #define xorriso_libisoburn_req_major 0
#define xorriso_libisoburn_req_minor 0 #define xorriso_libisoburn_req_minor 1
#define xorriso_libisoburn_req_micro 1 #define xorriso_libisoburn_req_micro 0
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag); int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);