Made number transition to 1.3.0
This commit is contained in:
parent
5c2c4e3b40
commit
5c1ef0d55a
@ -118,9 +118,9 @@ test_structest_CPPFLAGS = -Ilibburn
|
||||
test_structest_LDADD = $(libburn_libburn_la_OBJECTS) $(LIBBURN_EXTRALIBS)
|
||||
test_structest_SOURCES = test/structest.c
|
||||
|
||||
## cdrskin construction site - ts A60816 - B30318
|
||||
## cdrskin construction site - ts A60816 - B30517
|
||||
cdrskin_cdrskin_CPPFLAGS = -Ilibburn
|
||||
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_1_2_9
|
||||
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_1_3_0
|
||||
|
||||
# cdrskin_cdrskin_LDADD = $(libburn_libburn_la_OBJECTS) $(LIBBURN_EXTRALIBS)
|
||||
# ts A80123, change proposed by Simon Huggins to cause dynamic libburn linking
|
||||
|
13
README
13
README
@ -11,7 +11,7 @@ Still containing parts of Libburn. By Derek Foreman <derek@signalmarketing.com>
|
||||
and Ben Jansens <xor@orodu.net>
|
||||
Copyright (C) 2002-2006 Derek Foreman and Ben Jansens
|
||||
|
||||
http://files.libburnia-project.org/releases/libburn-1.2.8.tar.gz
|
||||
http://files.libburnia-project.org/releases/libburn-1.3.0.tar.gz
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
@ -19,10 +19,10 @@ Copyright (C) 2002-2006 Derek Foreman and Ben Jansens
|
||||
|
||||
From tarball
|
||||
|
||||
Obtain libburn-1.2.8.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain libburn-1.3.0.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf libburn-1.2.8.tar.gz
|
||||
cd libburn-1.2.8
|
||||
tar xzf libburn-1.3.0.tar.gz
|
||||
cd libburn-1.3.0
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
|
||||
@ -697,6 +697,11 @@ Project history as far as known to me:
|
||||
handling of incomplete sessions has been improved. xorriso's mkisofs
|
||||
emulation learned to set El Torito section id strings.
|
||||
|
||||
- Fri May 17 2013 release 1.3.0:
|
||||
Several bugs were fixed in the libraries and in xorriso. The recently
|
||||
introduced new boot preparation capabilities have been tested. New
|
||||
boot preparation options for GRUB2 were added.
|
||||
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
cdrskin. By Thomas Schmitt <scdbackup@gmx.net>
|
||||
Integrated sub project of libburnia-project.org but also published via:
|
||||
http://scdbackup.sourceforge.net/cdrskin_eng.html
|
||||
http://scdbackup.sourceforge.net/cdrskin-1.2.9.tar.gz
|
||||
http://scdbackup.sourceforge.net/cdrskin-1.3.0.tar.gz
|
||||
|
||||
Copyright (C) 2006-2013 Thomas Schmitt, provided under GPL version 2 or later.
|
||||
------------------------------------------------------------------------------
|
||||
@ -26,10 +26,10 @@ By using this software you agree to the disclaimer at the end of this text
|
||||
|
||||
Compilation, First Glimpse, Installation
|
||||
|
||||
Obtain cdrskin-1.2.9.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain cdrskin-1.3.0.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf cdrskin-1.2.9.tar.gz
|
||||
cd cdrskin-1.2.9
|
||||
tar xzf cdrskin-1.3.0.tar.gz
|
||||
cd cdrskin-1.3.0
|
||||
|
||||
Within that directory execute:
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH CDRSKIN 1 "Version 1.2.9, Mar 18, 2013"
|
||||
.TH CDRSKIN 1 "Version 1.3.0, May 17, 2013"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
|
@ -87,7 +87,7 @@ or
|
||||
|
||||
/** The official program version */
|
||||
#ifndef Cdrskin_prog_versioN
|
||||
#define Cdrskin_prog_versioN "1.2.9"
|
||||
#define Cdrskin_prog_versioN "1.3.0"
|
||||
#endif
|
||||
|
||||
/** The official libburn interface revision to use.
|
||||
@ -97,10 +97,10 @@ or
|
||||
#define Cdrskin_libburn_majoR 1
|
||||
#endif
|
||||
#ifndef Cdrskin_libburn_minoR
|
||||
#define Cdrskin_libburn_minoR 2
|
||||
#define Cdrskin_libburn_minoR 3
|
||||
#endif
|
||||
#ifndef Cdrskin_libburn_micrO
|
||||
#define Cdrskin_libburn_micrO 8
|
||||
#define Cdrskin_libburn_micrO 0
|
||||
#endif
|
||||
|
||||
|
||||
@ -120,34 +120,34 @@ or
|
||||
#undef Cdrskin_libburn_versioN
|
||||
#endif
|
||||
|
||||
#ifdef Cdrskin_libburn_1_2_8
|
||||
#define Cdrskin_libburn_versioN "1.2.8"
|
||||
#ifdef Cdrskin_libburn_1_3_0
|
||||
#define Cdrskin_libburn_versioN "1.3.0"
|
||||
#endif
|
||||
|
||||
#ifdef Cdrskin_libburn_1_2_9
|
||||
#define Cdrskin_libburn_versioN "1.2.9"
|
||||
#ifdef Cdrskin_libburn_1_3_1
|
||||
#define Cdrskin_libburn_versioN "1.3.1"
|
||||
#endif
|
||||
|
||||
#ifndef Cdrskin_libburn_versioN
|
||||
#define Cdrskin_libburn_1_2_8
|
||||
#define Cdrskin_libburn_versioN "1.2.8"
|
||||
#define Cdrskin_libburn_1_3_0
|
||||
#define Cdrskin_libburn_versioN "1.3.0"
|
||||
#endif
|
||||
|
||||
#ifdef Cdrskin_libburn_1_2_8
|
||||
#ifdef Cdrskin_libburn_1_3_0
|
||||
#undef Cdrskin_libburn_majoR
|
||||
#undef Cdrskin_libburn_minoR
|
||||
#undef Cdrskin_libburn_micrO
|
||||
#define Cdrskin_libburn_majoR 1
|
||||
#define Cdrskin_libburn_minoR 2
|
||||
#define Cdrskin_libburn_micrO 8
|
||||
#define Cdrskin_libburn_minoR 3
|
||||
#define Cdrskin_libburn_micrO 0
|
||||
#endif
|
||||
#ifdef Cdrskin_libburn_1_2_9
|
||||
#ifdef Cdrskin_libburn_1_3_1
|
||||
#undef Cdrskin_libburn_majoR
|
||||
#undef Cdrskin_libburn_minoR
|
||||
#undef Cdrskin_libburn_micrO
|
||||
#define Cdrskin_libburn_majoR 1
|
||||
#define Cdrskin_libburn_minoR 2
|
||||
#define Cdrskin_libburn_micrO 9
|
||||
#define Cdrskin_libburn_minoR 3
|
||||
#define Cdrskin_libburn_micrO 1
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -65,7 +65,7 @@ connected via SCSI, PATA (aka IDE, ATA), USB, or SATA.
|
||||
GPL software included:<BR>
|
||||
</H2>
|
||||
<DL>
|
||||
<DT>libburn-1.2.8</DT>
|
||||
<DT>libburn-1.3.0</DT>
|
||||
<DD>(founded by Derek Foreman and Ben Jansens,
|
||||
developed and maintained since August 2006 by
|
||||
Thomas Schmitt from team of libburnia-project.org)
|
||||
@ -200,13 +200,13 @@ Standalone ISO 9660 multi-session CD/DVD/BD tool
|
||||
<P>
|
||||
<DL>
|
||||
<DT>Download as source code (see README):</DT>
|
||||
<DD><A HREF="cdrskin-1.2.8.tar.gz">cdrskin-1.2.8.tar.gz</A>
|
||||
(945 KB).
|
||||
<DD><A HREF="cdrskin-1.3.0.tar.gz">cdrskin-1.3.0.tar.gz</A>
|
||||
(950 KB).
|
||||
</DD>
|
||||
<DD><A HREF="cdrskin-1.2.8.tar.gz.sig">cdrskin-1.2.8.tar.gz.sig</A></DD>
|
||||
<DD><A HREF="cdrskin-1.3.0.tar.gz.sig">cdrskin-1.3.0.tar.gz.sig</A></DD>
|
||||
<DD>
|
||||
(detached GPG signature for verification by
|
||||
<KBD>gpg --verify cdrskin-1.2.8.tar.gz.sig cdrskin-1.2.8.tar.gz</KBD>
|
||||
<KBD>gpg --verify cdrskin-1.3.0.tar.gz.sig cdrskin-1.3.0.tar.gz</KBD>
|
||||
<BR>
|
||||
after <KBD>gpg --keyserver keys.gnupg.net --recv-keys ABC0A854</KBD>).
|
||||
</DD>
|
||||
@ -257,27 +257,21 @@ cdrskin_0.4.2.pl00-x86-suse9_0-static.tar.gz</A>, (310 KB), -static compiled,
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
Enhancements towards previous stable version cdrskin-1.2.6:
|
||||
Enhancements towards previous stable version cdrskin-1.2.8:
|
||||
<UL>
|
||||
<LI>
|
||||
-toc and -minfo now report about tracks in the incomplete session
|
||||
</LI>
|
||||
<LI>
|
||||
New cdrskin option --list_speeds
|
||||
</LI>
|
||||
<LI>none</LI>
|
||||
<!--
|
||||
<LI>none</LI>
|
||||
-->
|
||||
</UL>
|
||||
|
||||
Bug fixes towards cdrskin-1.2.6:
|
||||
Bug fixes towards cdrskin-1.2.8:
|
||||
<UL>
|
||||
<LI>
|
||||
All CD tracks were reported with the sizes of the tracks in the
|
||||
first session. Regression introduced with version 1.2.0
|
||||
Full formatting of BD-RE used certification regardless of drive capabilities
|
||||
</LI>
|
||||
<LI>
|
||||
On some drives the request for minimum speed yielded maximum speed
|
||||
DVD+R with damaged TOC were reported by -minfo with wrong end address
|
||||
</LI>
|
||||
<!--
|
||||
<LI>none</LI>
|
||||
@ -288,8 +282,8 @@ On some drives the request for minimum speed yielded maximum speed
|
||||
|
||||
<P>
|
||||
<DL>
|
||||
<DT><H3>Development snapshot, version 1.2.9 :</H3></DT>
|
||||
<DD>Enhancements towards current stable version 1.2.8:
|
||||
<DT><H3>Development snapshot, version 1.3.1 :</H3></DT>
|
||||
<DD>Enhancements towards current stable version 1.3.0:
|
||||
<UL>
|
||||
<LI>
|
||||
none yet
|
||||
@ -301,14 +295,9 @@ none yet
|
||||
</UL>
|
||||
</DD>
|
||||
|
||||
<DD>Bug fixes towards cdrskin-1.2.8:
|
||||
<DD>Bug fixes towards cdrskin-1.3.0:
|
||||
<UL>
|
||||
<LI>
|
||||
Full formatting of BD-RE used certification regardless of drive capabilities
|
||||
</LI>
|
||||
<LI>
|
||||
DVD+R with damaged TOC were reported by -minfo with wrong end address
|
||||
</LI>
|
||||
<LI>none yet</LI>
|
||||
<!--
|
||||
<LI>none yet</LI>
|
||||
-->
|
||||
@ -316,10 +305,10 @@ DVD+R with damaged TOC were reported by -minfo with wrong end address
|
||||
</DD>
|
||||
|
||||
<DD> </DD>
|
||||
<DD><A HREF="README_cdrskin_devel">README 1.2.9</A>
|
||||
<DD><A HREF="cdrskin__help_devel">cdrskin-1.2.9 --help</A></DD>
|
||||
<DD><A HREF="cdrskin_help_devel">cdrskin-1.2.9 -help</A></DD>
|
||||
<DD><A HREF="man_1_cdrskin_devel.html">man cdrskin (as of 1.2.9)</A></DD>
|
||||
<DD><A HREF="README_cdrskin_devel">README 1.3.1</A>
|
||||
<DD><A HREF="cdrskin__help_devel">cdrskin-1.3.1 --help</A></DD>
|
||||
<DD><A HREF="cdrskin_help_devel">cdrskin-1.3.1 -help</A></DD>
|
||||
<DD><A HREF="man_1_cdrskin_devel.html">man cdrskin (as of 1.3.1)</A></DD>
|
||||
<DD> </DD>
|
||||
<DT>Maintainers of cdrskin unstable packages please use SVN of
|
||||
<A HREF="http://libburnia-project.org"> libburnia-project.org</A></DT>
|
||||
@ -339,8 +328,8 @@ admins with full system souvereignty.</DT>
|
||||
<A HREF="README_cdrskin_devel">upcoming README</A> ):
|
||||
</DD>
|
||||
<DD>
|
||||
<A HREF="cdrskin-1.2.9.tar.gz">cdrskin-1.2.9.tar.gz</A>
|
||||
(945 KB).
|
||||
<A HREF="cdrskin-1.3.1.tar.gz">cdrskin-1.3.1.tar.gz</A>
|
||||
(950 KB).
|
||||
</DD>
|
||||
|
||||
<!-- This is not offered any more since spring 2008
|
||||
@ -536,11 +525,15 @@ and by <A HREF="http://sourceforge.net">sourceforge.net</A><BR>
|
||||
<A href="http://sourceforge.net">
|
||||
<IMG src="sflogo-88-1.png" BORDER="0" ALT="SourceForge Logo"></A>
|
||||
<!-- on sourceforge use : <IMG src="http://sourceforge.net/sflogo.php?group_id=16010" width="88" height="31" border="0" alt="SourceForge Logo"></A> -->
|
||||
|
||||
<!--
|
||||
<P>
|
||||
Enjoying a FreeBSD shell account with the opportunity to
|
||||
build and install cdrskin at<BR>
|
||||
<A HREF="http://www.en.free-shells.com.ar">free-shells.com.ar</A>
|
||||
</P>
|
||||
-->
|
||||
|
||||
</FONT></CENTER>
|
||||
<HR>
|
||||
<DL>
|
||||
|
@ -1 +1 @@
|
||||
#define Cdrskin_timestamP "2013.05.10.072542"
|
||||
#define Cdrskin_timestamP "2013.05.17.090001"
|
||||
|
@ -8,7 +8,7 @@ debug_opts="-O2"
|
||||
def_opts=
|
||||
largefile_opts="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1"
|
||||
fifo_opts=""
|
||||
libvers="-DCdrskin_libburn_1_2_9"
|
||||
libvers="-DCdrskin_libburn_1_3_0"
|
||||
|
||||
# To be used if Makefile.am uses libburn_libburn_la_CFLAGS
|
||||
# burn="libburn/libburn_libburn_la-"
|
||||
@ -41,15 +41,15 @@ do
|
||||
elif test "$i" = "-compile_dewav"
|
||||
then
|
||||
compile_dewav=1
|
||||
elif test "$i" = "-libburn_1_2_8"
|
||||
elif test "$i" = "-libburn_1_3_0"
|
||||
then
|
||||
libvers="-DCdrskin_libburn_1_2_8"
|
||||
libvers="-DCdrskin_libburn_1_3_0"
|
||||
libdax_audioxtr_o="$burn"libdax_audioxtr.o
|
||||
libdax_msgs_o="$burn"libdax_msgs.o
|
||||
cleanup_src_or_obj="$burn"cleanup.o
|
||||
elif test "$i" = "-libburn_svn"
|
||||
then
|
||||
libvers="-DCdrskin_libburn_1_2_9"
|
||||
libvers="-DCdrskin_libburn_1_3_1"
|
||||
libdax_audioxtr_o="$burn"libdax_audioxtr.o
|
||||
libdax_msgs_o="$burn"libdax_msgs.o
|
||||
cleanup_src_or_obj="$burn"cleanup.o
|
||||
@ -99,7 +99,7 @@ do
|
||||
echo "Options:"
|
||||
echo " -compile_cdrfifo compile program cdrskin/cdrfifo."
|
||||
echo " -compile_dewav compile program test/dewav without libburn."
|
||||
echo " -libburn_1_2_8 set macro to match libburn-1.2.8"
|
||||
echo " -libburn_1_3_0 set macro to match libburn-1.3.0"
|
||||
echo " -libburn_svn set macro to match current libburn-SVN."
|
||||
echo " -dvd_obs_64k 64 KB default size for DVD/BD writing."
|
||||
echo " -use_libcdio link with -lcdio because libburn uses it."
|
||||
|
17
configure.ac
17
configure.ac
@ -1,4 +1,4 @@
|
||||
AC_INIT([libburn], [1.2.9], [http://libburnia-project.org])
|
||||
AC_INIT([libburn], [1.3.0], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
dnl AC_CONFIG_HEADER([config.h])
|
||||
|
||||
@ -100,6 +100,7 @@ dnl 1.2.2 = libburn.so.4.75.0
|
||||
dnl 1.2.4 = libburn.so.4.77.0
|
||||
dnl 1.2.6 = libburn.so.4.79.0
|
||||
dnl 1.2.8 = libburn.so.4.81.0
|
||||
dnl 1.3.0 = libburn.so.4.83.0
|
||||
dnl
|
||||
dnl So LT_CURRENT, LT_REVISION and LT_AGE get set directly here.
|
||||
dnl SONAME of the emerging library is LT_CURRENT - LT_AGE.
|
||||
@ -124,8 +125,8 @@ dnl If BURN_*_VERSION changes, be sure to change AC_INIT above to match.
|
||||
dnl
|
||||
dnl As said: Only copies. Original in libburn/libburn.h : burn_header_version_*
|
||||
BURN_MAJOR_VERSION=1
|
||||
BURN_MINOR_VERSION=2
|
||||
BURN_MICRO_VERSION=9
|
||||
BURN_MINOR_VERSION=3
|
||||
BURN_MICRO_VERSION=0
|
||||
BURN_VERSION=$BURN_MAJOR_VERSION.$BURN_MINOR_VERSION.$BURN_MICRO_VERSION
|
||||
|
||||
AC_SUBST(BURN_MAJOR_VERSION)
|
||||
@ -136,14 +137,14 @@ AC_SUBST(BURN_VERSION)
|
||||
dnl Libtool versioning
|
||||
LT_RELEASE=$BURN_MAJOR_VERSION.$BURN_MINOR_VERSION.$BURN_MICRO_VERSION
|
||||
dnl
|
||||
dnl ### This is the release version libburn-1.2.8
|
||||
dnl This is the development version after above release version
|
||||
dnl This is the release version libburn-1.3.0
|
||||
dnl ### This is the development version after above release version
|
||||
dnl LT_CURRENT++, LT_AGE++ has not yet happened.
|
||||
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
|
||||
dnl
|
||||
dnl SONAME = 85 - 81 = 4 . Linux library name = libburn.so.4.81.0
|
||||
LT_CURRENT=85
|
||||
LT_AGE=81
|
||||
dnl SONAME = 87 - 83 = 4 . Linux library name = libburn.so.4.83.0
|
||||
LT_CURRENT=87
|
||||
LT_AGE=83
|
||||
LT_REVISION=0
|
||||
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
|
||||
|
||||
|
@ -3484,8 +3484,8 @@ void burn_version(int *major, int *minor, int *micro);
|
||||
|
||||
*/
|
||||
#define burn_header_version_major 1
|
||||
#define burn_header_version_minor 2
|
||||
#define burn_header_version_micro 9
|
||||
#define burn_header_version_minor 3
|
||||
#define burn_header_version_micro 0
|
||||
/** Note:
|
||||
Above version numbers are also recorded in configure.ac because libtool
|
||||
wants them as parameters at build time.
|
||||
|
Loading…
Reference in New Issue
Block a user