Perfomed version leap in respect to SVN
This commit is contained in:
parent
fa0ab21469
commit
5994793119
2
000_CAUTION_RELEASE_CANDIDATE
Normal file
2
000_CAUTION_RELEASE_CANDIDATE
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Note: this is a libburn-0.2.2 release candidate
|
||||||
|
|
@ -128,7 +128,7 @@ test_iso_SOURCES = test/iso.c
|
|||||||
|
|
||||||
## cdrskin construction site - ts A60816
|
## cdrskin construction site - ts A60816
|
||||||
cdrskin_cdrskin_CPPFLAGS = -Ilibburn
|
cdrskin_cdrskin_CPPFLAGS = -Ilibburn
|
||||||
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_0_2_1
|
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_0_2_2
|
||||||
cdrskin_cdrskin_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
cdrskin_cdrskin_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS)
|
||||||
cdrskin_cdrskin_SOURCES = cdrskin/cdrskin.c cdrskin/cdrfifo.c cdrskin/cdrfifo.h cdrskin/cleanup.c cdrskin/cleanup.h cdrskin/cdrskin_timestamp.h
|
cdrskin_cdrskin_SOURCES = cdrskin/cdrskin.c cdrskin/cdrfifo.c cdrskin/cdrfifo.h cdrskin/cleanup.c cdrskin/cleanup.h cdrskin/cdrskin_timestamp.h
|
||||||
##
|
##
|
||||||
|
2
README
2
README
@ -144,6 +144,8 @@ Project history as far as known to me:
|
|||||||
Rewrites of other components will follow and concluded by claiming full
|
Rewrites of other components will follow and concluded by claiming full
|
||||||
copyright within the group of libburn.pykix.org-copyright holders.
|
copyright within the group of libburn.pykix.org-copyright holders.
|
||||||
|
|
||||||
|
- 16th September 2006 feature freeze for release of libburn-0.2.2 .
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -26,12 +26,12 @@ following possible.
|
|||||||
cdrskin. By Thomas Schmitt <scdbackup@gmx.net>
|
cdrskin. By Thomas Schmitt <scdbackup@gmx.net>
|
||||||
Integrated sub project of libburn.pykix.org but also published via:
|
Integrated sub project of libburn.pykix.org but also published via:
|
||||||
http://scdbackup.sourceforge.net/cdrskin_eng.html
|
http://scdbackup.sourceforge.net/cdrskin_eng.html
|
||||||
http://scdbackup.sourceforge.net/cdrskin-0.1.5.tar.gz
|
http://scdbackup.sourceforge.net/cdrskin-0.2.2.tar.gz
|
||||||
Copyright (C) 2006 Thomas Schmitt
|
Copyright (C) 2006 Thomas Schmitt
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
On top of libburn there is implemented cdrskin 0.1.5, a limited cdrecord
|
On top of libburn there is implemented cdrskin 0.2.2, a limited cdrecord
|
||||||
compatibility wrapper which allows to use some libburn features from
|
compatibility wrapper which allows to use some libburn features from
|
||||||
the command line.
|
the command line.
|
||||||
Interested users of cdrecord are invited to participate in the development
|
Interested users of cdrecord are invited to participate in the development
|
||||||
@ -58,16 +58,16 @@ systems, including 64 bit systems. (Further reports are welcome.)
|
|||||||
|
|
||||||
Compilation, First Glimpse, Installation
|
Compilation, First Glimpse, Installation
|
||||||
|
|
||||||
Obtain cdrskin-0.1.5.tar.gz , take it to a directory of your choice and do:
|
Obtain cdrskin-0.2.2.tar.gz , take it to a directory of your choice and do:
|
||||||
|
|
||||||
tar xzf cdrskin-0.1.5.tar.gz
|
tar xzf cdrskin-0.2.2.tar.gz
|
||||||
cd cdrskin-0.1.5
|
cd cdrskin-0.2.2
|
||||||
|
|
||||||
Or obtain a libburn.pykix.org SVN snapshot,
|
Or obtain a libburn.pykix.org SVN snapshot,
|
||||||
go into the toplevel directory of the snapshot (e.g. cd libburn_pykix ),
|
go into the toplevel directory of the snapshot (e.g. cd libburn_pykix ),
|
||||||
and execute the autotools script ./bootstrap . Use autools version >= 1.7 .
|
and execute the autotools script ./bootstrap . Use autools version >= 1.7 .
|
||||||
|
|
||||||
Within that toplevel directory of either cdrskin-0.1.5 or libburn then execute:
|
Within that toplevel directory of either cdrskin-0.2.2 or libburn then execute:
|
||||||
|
|
||||||
./configure
|
./configure
|
||||||
make
|
make
|
||||||
|
@ -127,7 +127,7 @@ or
|
|||||||
|
|
||||||
/** The official program version */
|
/** The official program version */
|
||||||
#ifndef Cdrskin_prog_versioN
|
#ifndef Cdrskin_prog_versioN
|
||||||
#define Cdrskin_prog_versioN "0.1.5"
|
#define Cdrskin_prog_versioN "0.2.2"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/** The source code release timestamp */
|
/** The source code release timestamp */
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Cdrskin_timestamP "2006.09.15.174748"
|
#define Cdrskin_timestamP "2006.09.16.194730"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
debug_opts=
|
debug_opts=
|
||||||
def_opts=
|
def_opts=
|
||||||
libvers="-DCdrskin_libburn_0_2_1"
|
libvers="-DCdrskin_libburn_0_2_2"
|
||||||
do_strip=0
|
do_strip=0
|
||||||
static_opts=
|
static_opts=
|
||||||
warn_opts="-Wall"
|
warn_opts="-Wall"
|
||||||
@ -33,7 +33,7 @@ do
|
|||||||
libvers="-DCdrskin_libburn_0_2_1"
|
libvers="-DCdrskin_libburn_0_2_1"
|
||||||
elif test "$i" = "-libburn_0_2_2"
|
elif test "$i" = "-libburn_0_2_2"
|
||||||
then
|
then
|
||||||
libvers="-DCdrskin_libburn_0_2_2 -DCdrskin_prog_versioN="'"0.2.2"'
|
libvers="-DCdrskin_libburn_0_2_2"
|
||||||
elif test "$i" = "-newapi" -o "$i" = "-experimental"
|
elif test "$i" = "-newapi" -o "$i" = "-experimental"
|
||||||
then
|
then
|
||||||
def_opts="$def_opts -DCdrskin_new_api_tesT"
|
def_opts="$def_opts -DCdrskin_new_api_tesT"
|
||||||
@ -62,6 +62,8 @@ do
|
|||||||
echo " -tarball_0_2 set macro to match libburn-0.2.ts.tar.gz"
|
echo " -tarball_0_2 set macro to match libburn-0.2.ts.tar.gz"
|
||||||
echo " -cvs_A51208 set macro to match libburn-CVS of 8 Dec 2005."
|
echo " -cvs_A51208 set macro to match libburn-CVS of 8 Dec 2005."
|
||||||
echo " -cvs_A60220 set macro to match libburn-CVS of 20 Feb 2006."
|
echo " -cvs_A60220 set macro to match libburn-CVS of 20 Feb 2006."
|
||||||
|
echo " -libburn_0_2_1 set macro to match libburn-SVN of 15 Sep 2006."
|
||||||
|
echo " -libburn_0_2_2 set macro to match libburn-0.2.2"
|
||||||
echo " -do_not_compile_cdrskin omit compilation of cdrskin/cdrskin."
|
echo " -do_not_compile_cdrskin omit compilation of cdrskin/cdrskin."
|
||||||
echo " -experimental use newly introduced libburn features."
|
echo " -experimental use newly introduced libburn features."
|
||||||
echo " -do_diet produce capability reduced lean version."
|
echo " -do_diet produce capability reduced lean version."
|
||||||
|
2
zzz_CAUTION_RELEASE_CANDIDATE
Normal file
2
zzz_CAUTION_RELEASE_CANDIDATE
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Note: this is a libburn-0.2.2 release candidate
|
||||||
|
|
Loading…
Reference in New Issue
Block a user