Version leap to 0.1.4
This commit is contained in:
parent
3d6fff30c1
commit
4eb2ce019c
@ -1,5 +1,5 @@
|
||||
------------------------------------------------------------------------------
|
||||
libburnia-project.org
|
||||
http:libburnia-project.org
|
||||
------------------------------------------------------------------------------
|
||||
libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
|
||||
and Thomas Schmitt <scdbackup@gmx.net>
|
||||
@ -25,17 +25,18 @@ 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-0.1.3 :
|
||||
- libburn.so.4 , version libburn-0.4.2 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.3 or higher
|
||||
Dynamic library and compile time header requirements for libisoburn-0.1.4 :
|
||||
- libburn.so.4 , version libburn-0.4.4 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.4 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.
|
||||
|
||||
Obtain libisoburn-0.1.3.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain libisoburn-0.1.4.pl00.tar.gz, take it to a directory of your choice
|
||||
and do:
|
||||
|
||||
tar xzf libisoburn-0.1.3.tar.gz
|
||||
cd libisoburn-0.1.3
|
||||
tar xzf libisoburn-0.1.4.pl00.tar.gz
|
||||
cd libisoburn-0.1.4
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
@ -44,7 +45,7 @@ Within that directory execute:
|
||||
|
||||
Then become superuser and execute
|
||||
make install
|
||||
which will make available libisoburn.so.1 .
|
||||
which will make available libisoburn.so.1 and program xorriso.
|
||||
|
||||
For the API concepts and calls see
|
||||
./libisoburn/libisoburn.h
|
||||
@ -59,7 +60,7 @@ libisoburn includes a command line and dialog application named xorriso,
|
||||
which offers a substantial part of libisoburn features to shell scripts and
|
||||
users. Its file xorriso/README describes a standlone tarball as first
|
||||
preference for xorriso installation.
|
||||
The installation described here produces a dynamically linked xorriso binary
|
||||
The installation described above produces a dynamically linked xorriso binary
|
||||
as described in chapter "libisoburn" at the end of that text.
|
||||
|
||||
After installation documentation is available via
|
||||
|
@ -1,4 +1,4 @@
|
||||
AC_INIT([libisoburn], [0.1.3], [http://libburnia-project.org])
|
||||
AC_INIT([libisoburn], [0.1.4], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
dnl AC_CONFIG_HEADER([config.h])
|
||||
|
||||
@ -7,6 +7,12 @@ AC_CANONICAL_TARGET
|
||||
|
||||
AM_INIT_AUTOMAKE([subdir-objects])
|
||||
|
||||
dnl Hint: Search list for version code aspects:
|
||||
dnl /AC_INT(
|
||||
dnl /ISOBURN_.*_VERSION
|
||||
dnl /LT_.*
|
||||
dnl /LIB.*_REQUIRED
|
||||
|
||||
dnl The API version codes are now defined in libisoburn/libisoburn.h
|
||||
dnl #define isoburn_header_version_*
|
||||
dnl configure.ac only rules the libtool revision numbering about
|
||||
@ -15,7 +21,7 @@ dnl
|
||||
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
||||
ISOBURN_MAJOR_VERSION=0
|
||||
ISOBURN_MINOR_VERSION=1
|
||||
ISOBURN_MICRO_VERSION=3
|
||||
ISOBURN_MICRO_VERSION=4
|
||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||
|
||||
AC_SUBST(ISOBURN_MAJOR_VERSION)
|
||||
@ -27,14 +33,15 @@ dnl Libtool versioning
|
||||
dnl Generate libisoburn.so.1.x.y
|
||||
dnl SONAME will become LT_CURRENT - LT_AGE
|
||||
dnl
|
||||
dnl ts A80215
|
||||
dnl This is the development version after stable release libisoburn.so.1.1.0
|
||||
dnl LT_CURRENT++, LT_AGE++ has happened meanwhile.
|
||||
dnl ts A80428
|
||||
dnl This is the release version 0.1.4 = libisoburn.so.1.3.0
|
||||
dnl ###This is the development version after stable release libisoburn.so.1.3.0
|
||||
dnl ### LT_CURRENT++, LT_AGE++ havae not happened yet.
|
||||
dnl
|
||||
dnl SONAME = 3 - 2 = 1 . Library name = libburn.so.1.2.0
|
||||
dnl SONAME = 4 - 3 = 1 . Library name = libburn.so.1.3.0
|
||||
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
|
||||
LT_CURRENT=3
|
||||
LT_AGE=2
|
||||
LT_CURRENT=4
|
||||
LT_AGE=3
|
||||
LT_REVISION=0
|
||||
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
||||
|
||||
@ -92,8 +99,8 @@ AC_CHECK_HEADER(libburn/libburn.h)
|
||||
AC_CHECK_HEADER(libisofs/libisofs.h)
|
||||
|
||||
dnl Check for proper library versions
|
||||
LIBBURN_REQUIRED=0.4.2
|
||||
LIBISOFS_REQUIRED=0.6.2
|
||||
LIBBURN_REQUIRED=0.4.4
|
||||
LIBISOFS_REQUIRED=0.6.4
|
||||
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
|
||||
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)
|
||||
|
||||
|
@ -188,7 +188,7 @@ void isoburn_version(int *major, int *minor, int *micro);
|
||||
*/
|
||||
#define isoburn_libisofs_req_major 0
|
||||
#define isoburn_libisofs_req_minor 6
|
||||
#define isoburn_libisofs_req_micro 3
|
||||
#define isoburn_libisofs_req_micro 4
|
||||
|
||||
/** The minimum version of libburn to be used with this version of libisoburn
|
||||
at compile time.
|
||||
@ -232,7 +232,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
|
||||
*/
|
||||
#define isoburn_header_version_major 0
|
||||
#define isoburn_header_version_minor 1
|
||||
#define isoburn_header_version_micro 3
|
||||
#define isoburn_header_version_micro 4
|
||||
/** Note:
|
||||
Above version numbers are also recorded in configure.ac because libtool
|
||||
wants them as parameters at build time.
|
||||
|
@ -4,7 +4,7 @@
|
||||
xorriso. By Thomas Schmitt <scdbackup@gmx.net>
|
||||
Integrated sub project of libburnia-project.org but also published via:
|
||||
http://scdbackup.sourceforge.net/xorriso_eng.html
|
||||
http://scdbackup.sourceforge.net/xorriso-0.1.3.tar.gz
|
||||
http://scdbackup.sourceforge.net/xorriso-0.1.4.pl00.tar.gz
|
||||
Copyright (C) 2006-2008 Thomas Schmitt, provided under GPL version 2.
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
@ -35,10 +35,10 @@ The tarball contains anything that is needed except libc and libpthread.
|
||||
libreadline and the readline-dev headers will make dialog mode more convenient,
|
||||
but are not mandatory.
|
||||
|
||||
Obtain xorriso-0.1.3.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain xorriso-0.1.4.pl00.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf xorriso-0.1.3.tar.gz
|
||||
cd xorriso-0.1.3
|
||||
tar xzf xorriso-0.1.4.pl00.tar.gz
|
||||
cd xorriso-0.1.4
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
@ -160,13 +160,9 @@ and a matching dynamically linked xorriso binary.
|
||||
This binary is leaner but depends on properly installed libraries of suitable
|
||||
revision.
|
||||
|
||||
WARNING: There is no libisoburn-0.1.2 suitable for dynamic linking because
|
||||
libisoburn-0.1.1 uses features of libisofs-0.6.3 of which the API/ABI is
|
||||
not decared frozen yet.
|
||||
|
||||
Dynamic library and compile time header requirements for libisoburn-0.1.3 :
|
||||
- libburn.so.4 , version libburn-0.4.2 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.3 or higher
|
||||
Dynamic library and compile time header requirements for libisoburn-0.1.4 :
|
||||
- libburn.so.4 , version libburn-0.4.4 or higher
|
||||
- libisofs.so.6 , version libisofs-0.6.4 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.
|
||||
|
@ -1,4 +1,4 @@
|
||||
AC_INIT([xorriso], [0.1.3], [http://libburnia-project.org])
|
||||
AC_INIT([xorriso], [0.1.4], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
dnl AC_CONFIG_HEADER([config.h])
|
||||
|
||||
|
@ -25,11 +25,11 @@
|
||||
current_dir=$(pwd)
|
||||
lone_dir="$current_dir"/"xorriso-standalone"
|
||||
|
||||
xorriso_rev=0.1.3
|
||||
xorriso_rev=0.1.4
|
||||
# For unstable uploads:
|
||||
xorriso_pl=""
|
||||
# xorriso_pl=""
|
||||
# For stable releases:
|
||||
# xorriso_pl=".pl00"
|
||||
xorriso_pl=".pl00"
|
||||
|
||||
with_bootstrap_tarball=1
|
||||
|
||||
|
@ -58,14 +58,14 @@ and to MMC-5 for DVD).
|
||||
GPL software included:<BR>
|
||||
</H2>
|
||||
<DL>
|
||||
<DT>libburn-0.4.3</DT>
|
||||
<DT>libburn-0.4.5</DT>
|
||||
<DD>reads and writes data from and to CD and DVD.</DD>
|
||||
<DD>(founded by Derek Foreman and Ben Jansens,
|
||||
furthered since August 2006 by team of libburnia-project.org)</DD>
|
||||
<DT>libisofs-0.6.3</DT>
|
||||
<DT>libisofs-0.6.4</DT>
|
||||
<DD>operates ISO 9660 images.</DD>
|
||||
<DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD>
|
||||
<DT>libisoburn-0.1.1</DT>
|
||||
<DT>libisoburn-0.1.4</DT>
|
||||
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
|
||||
<DD>(By Vreixo Formoso and Thomas Schmitt
|
||||
from team of libburnia-project.org)</DD>
|
||||
@ -287,25 +287,10 @@ Testers wanted who are willing to risk some double layer DVD media.
|
||||
<A NAME="download"></A>
|
||||
<P>
|
||||
<DL>
|
||||
<DT>Download as source code (see README):</DT>
|
||||
<DD><A HREF="xorriso-0.1.2.pl00.tar.gz">xorriso-0.1.2.pl00.tar.gz</A>
|
||||
(950 KB).
|
||||
<DT><H3>Download as source code (see README):</H3></DT>
|
||||
<DD><A HREF="xorriso-0.1.4.pl00.tar.gz">xorriso-0.1.4.pl00.tar.gz</A>
|
||||
(955 KB).
|
||||
</DD>
|
||||
|
||||
<!--
|
||||
<DD> </DD>
|
||||
<DT>Download as single x86 binaries (untar and move to /usr/bin/xorriso):</DT>
|
||||
<DD><A HREF="xorriso_0.1.0.pl00-x86-suse9_0.tar.gz">
|
||||
xorriso_0.1.0.pl00-x86-suse9_0.tar.gz</A>, ( KB),
|
||||
<DL>
|
||||
<DD>runs on SuSE 9.0 (2.4.21) , SuSE 10.2 (2.6.18.2) and others.</DD>
|
||||
</DL>
|
||||
<DD><A HREF="xorriso_0.1.0.pl00-x86-suse9_0-static.tar.gz">
|
||||
xorriso_0.1.0.pl00-x86-suse9_0-static.tar.gz</A>, ( KB), -static compiled,
|
||||
<DL>
|
||||
<DD>runs on many other systems.</DD>
|
||||
-->
|
||||
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
@ -330,27 +315,18 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
Enhancements towards previous stable version xorriso-0.1.0:
|
||||
Enhancements towards previous stable version xorriso-0.1.2.pl00:
|
||||
<UL>
|
||||
<LI>Improved attribute transfer from disk for implicit target directories</LI>
|
||||
<LI>New option -as "cdrecord" emulates a narrow set of cdrecord gestures</LI>
|
||||
<LI>New option -as "mkisofs" emulates a narrow set of mkisofs gestures</LI>
|
||||
<LI>New option -publisher</LI>
|
||||
<LI>New option -errfile_log</LI>
|
||||
<LI>Support for DVD+R/DL media</LI>
|
||||
<LI>New options -compare , -compare_r and according -find -exec action</LI>
|
||||
<LI>New options -update , -update_r and according -find -exec action</LI>
|
||||
<LI>New -find actions "rm", "rm_r", new -findx -type "m" -exec "empty_iso_dir"
|
||||
</LI>
|
||||
<LI>New option -cut_out</LI>
|
||||
<LI>Coordination of -cut_out, -compare and -update</LI>
|
||||
<LI>New option -split_size, automated splitting of oversized files</LI>
|
||||
<LI>Improved performance with reading directory trees</LI>
|
||||
<LI>New option -session_log</LI>
|
||||
<LI>Dynamically linkable with release version 0.6.4 of libisofs</LI>
|
||||
</UL>
|
||||
Bug fixes towards xorriso-0.1.0.pl00:
|
||||
Bug fixes towards xorriso-0.1.2.pl00:
|
||||
<UL>
|
||||
<LI>-report_about HINT or higher did not report at all</LI>
|
||||
<LI>speed=number without unit or media type letter was always CD speed</LI>
|
||||
<LI>It was possible to write to appendable media which was not -indev</LI>
|
||||
<LI>-follow param did not work for adding non-directory symbolic links</LI>
|
||||
<LI>It was not possible to do: -add /THIS=a /b=THIS --</LI>
|
||||
<LI>-as mkisofs -no-pad was misspelled -nopad</LI>
|
||||
<LI>Implicite directory attribute copying with -cut_out was wrong</LI>
|
||||
</UL>
|
||||
</P>
|
||||
|
||||
@ -358,27 +334,23 @@ Bug fixes towards xorriso-0.1.0.pl00:
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Development snapshot, version 0.1.3 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.1.2.pl00:
|
||||
<DT><H3>Development snapshot, version 0.1.5 :</H3></DT>
|
||||
<DD>Bug fixes towards xorriso-0.1.4.pl00:
|
||||
<UL>
|
||||
<LI>-as mkisofs -no-pad was misspelled -nopad</LI>
|
||||
<LI>Implicite directory attribute copying with -cut_out was wrong</LI>
|
||||
<LI>- none yet -</LI>
|
||||
<!-- <LI>- none yet -</LI> -->
|
||||
</UL>
|
||||
</DD>
|
||||
<DD>Enhancements towards stable version 0.1.2.pl00:
|
||||
<DD>Enhancements towards stable version 0.1.4.pl00:
|
||||
<UL>
|
||||
<LI>Coordination of -cut_out, -compare and -update</LI>
|
||||
<LI>New option -session_log</LI>
|
||||
<LI>New option -split_size allows automated splitting of oversized files</LI>
|
||||
<LI>Improved performance with reading directory trees</LI>
|
||||
<LI>- none yet -</LI>
|
||||
<!-- <LI>- none yet -</LI> -->
|
||||
</UL>
|
||||
</DD>
|
||||
<DD> </DD>
|
||||
<DD><A HREF="README_xorriso_devel">README 0.1.3</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso_0.1.3 -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.1.3)</A></DD>
|
||||
<DD><A HREF="README_xorriso_devel">README 0.1.5</A>
|
||||
<DD><A HREF="xorriso_help_devel">xorriso_0.1.5 -help</A></DD>
|
||||
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.1.5)</A></DD>
|
||||
<DD> </DD>
|
||||
<DT>If you want to distribute development versions of xorriso, then use
|
||||
this tarball which produces static linking between xorriso and the
|
||||
@ -388,7 +360,7 @@ libburnia libraries.
|
||||
installation see README)
|
||||
</DD>
|
||||
<DD>
|
||||
<A HREF="xorriso-0.1.3.tar.gz">xorriso-0.1.3.tar.gz</A>
|
||||
<A HREF="xorriso-0.1.5.tar.gz">xorriso-0.1.5.tar.gz</A>
|
||||
(960 KB).
|
||||
</DD>
|
||||
<DT>A dynamically linked development version of xorriso can be obtained
|
||||
@ -418,16 +390,6 @@ vanilla tools like make and gcc are needed.</DD>
|
||||
</DD>
|
||||
<DD> </DD>
|
||||
|
||||
<!--
|
||||
<DD>Binary (untar and move to /usr/bin/xorriso):</DD>
|
||||
<DD><A HREF="xorriso_0.1.1-x86-suse9_0.tar.gz">
|
||||
xorriso_0.1.1-x86-suse9_0.tar.gz</A>, ( KB).
|
||||
</DD>
|
||||
<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)
|
||||
</DD>
|
||||
-->
|
||||
|
||||
</DL>
|
||||
</P>
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
#ifndef Xorriso_private_includeD
|
||||
#define Xorriso_private_includeD yes
|
||||
|
||||
#define Xorriso_program_versioN "0.1.3"
|
||||
#define Xorriso_program_versioN "0.1.4"
|
||||
|
||||
/** The source code release timestamp */
|
||||
#include "xorriso_timestamp.h"
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2008.04.20.111419"
|
||||
#define Xorriso_timestamP "2008.04.28.120001"
|
||||
|
@ -21,7 +21,7 @@ struct FindjoB;
|
||||
*/
|
||||
#define xorriso_libisoburn_req_major 0
|
||||
#define xorriso_libisoburn_req_minor 1
|
||||
#define xorriso_libisoburn_req_micro 3
|
||||
#define xorriso_libisoburn_req_micro 4
|
||||
|
||||
int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user