Compare commits

...

5 Commits

13 changed files with 397 additions and 79 deletions

View File

@ -1,3 +1,19 @@
libburn-1.1.4.tar.gz Sun Aug 07 2011
===============================================================================
* Bug fix: Some drives return -150 as NWA of blank CD, rather than 0.
libburn forwarded this misleading information to the application.
* Bug fix: Some drives returned wrong CD sizes after having burned DVD-R
* Bug fix: Empty ROM drive was mistaken to hold an unsuitable disc
* Bug fix: Avoiding to load speed descriptor list twice
* New API call burn_lookup_device_link()
* New API call burn_disc_get_phys_format_info()
* New cdrskin option --device_links
Release 1.1.2 was skipped to get back in sync with libisoburn.
libburn-1.1.0.pl01.tar.gz Mon Jun 20 2011
===============================================================================
* Bug fix: libburn-1.1.0 compiled only on Linux, FreeBSD, and Solaris
libburn-1.1.0.tar.gz Sat Jun 18 2011
===============================================================================

View File

@ -120,7 +120,7 @@ test_structest_SOURCES = test/structest.c
## cdrskin construction site - ts A60816 - B10618
cdrskin_cdrskin_CPPFLAGS = -Ilibburn
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_1_1_1
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_1_1_4
# cdrskin_cdrskin_LDADD = $(libburn_libburn_la_OBJECTS) $(LIBBURN_EXTRALIBS)
# ts A80123, change proposed by Simon Huggins to cause dynamic libburn linking

25
README
View File

@ -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.1.0.tar.gz
http://files.libburnia-project.org/releases/libburn-1.1.4.tar.gz
------------------------------------------------------------------------------
@ -19,10 +19,10 @@ Copyright (C) 2002-2006 Derek Foreman and Ben Jansens
From tarball
Obtain libburn-1.1.0.tar.gz, take it to a directory of your choice and do:
Obtain libburn-1.1.4.tar.gz, take it to a directory of your choice and do:
tar xzf libburn-1.1.0.tar.gz
cd libburn-1.1.0
tar xzf libburn-1.1.4.tar.gz
cd libburn-1.1.4
./configure --prefix=/usr
make
@ -110,7 +110,7 @@ See README files there.
libburnia-project.org is an open-source software project for reading, mastering
and writing optical discs.
For now this means CD media, all DVD media except DVD-R DL, all BD media.
For now this means CD media, all DVD media, all BD media.
The project comprises of several more or less interdependent parts which
together strive to be a usable foundation for application development.
@ -624,7 +624,22 @@ Project history as far as known to me:
The consumption of stack memory was reduced. Statical program analysis found
some rarely occuring memory leaks. Several small bugs were fixed.
The suffix .plXY was dropped from tarball names of libburn and libisoburn.
- Mon Jun 20 2011 patch release libburn-1.1.0.pl01:
libburn-1.1.0 compiled only on Linux, FreeBSD, and Solaris, but not on
other X/Open compliant systems.
- Fri Jul 08 2011 release libisofs-1.1.2 and libisoburn-1.1.2:
A severe regression was fixed in libisoburn and xorriso, which was introducedi
with version 1.0.6. It caused ISO 9660 images to be unreadable if they were
written to a write-only random-access file. E.g. by: xorrisofs ... >image.iso
- Sun Aug 07 2011 release libiburn-1.1.4 and libisoburn-1.1.4:
Several bugs were fixed in libburn. The most severe of them prevented xorriso
on some drives from burning mountable ISO 9660 images to CD media.
New means to list drives by their udev symbolic links help to deal with
non-persistent drive addresses on modern GNU/Linux.
------------------------------------------------------------------------------

View File

@ -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.1.1.tar.gz
http://scdbackup.sourceforge.net/cdrskin-1.1.4.tar.gz
Copyright (C) 2006-2011 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.1.1.tar.gz, take it to a directory of your choice and do:
Obtain cdrskin-1.1.4.tar.gz, take it to a directory of your choice and do:
tar xzf cdrskin-1.1.1.tar.gz
cd cdrskin-1.1.1
tar xzf cdrskin-1.1.4.tar.gz
cd cdrskin-1.1.4
Within that directory execute:
@ -560,7 +560,7 @@ contributions in a due way.
Based on and sub project of:
libburnia-project.org
By Mario Danic <mario.danic@gmail.com> and Thomas Schmitt <scdbackup@gmx.net>
Copyright (C) 2006-2010 Mario Danic, Thomas Schmitt
Copyright (C) 2006-2011 Mario Danic, Thomas Schmitt
libburnia-project.org is inspired by and in other components still containing
parts of

View File

@ -38,7 +38,7 @@ original="./libburn_svn_release.tgz"
# My changes are in $changes , mainly in $changes/cdrskin
changes="./libburn-release"
skin_release="1.1.0"
skin_release="1.1.4"
patch_level=""
# patch_level=".pl00"
skin_rev="$skin_release""$patch_level"

View File

@ -38,7 +38,7 @@ original="./libburn_svn.tgz"
# My changes are in $changes , mainly in $changes/cdrskin
changes="./libburn-develop"
skin_release="1.1.1"
skin_release="1.1.5"
patch_level=""
skin_rev="$skin_release""$patch_level"

View File

@ -12,8 +12,7 @@ See also : http://scdbackup.sourceforge.net/cdrskin_eng.html
Interested users of cdrecord are encouraged to contribute further option
implementations as they need them. Contributions will get published under GPL
but it is essential that the authors allow a future release under LGPL and/or
BSD license.
but it is essential that the authors allow a future release under LGPL.
There is a script test/cdrecord_spy.sh which may be installed between
the cdrecord command and real cdrecord in order to learn about the options
@ -88,7 +87,7 @@ or
/** The official program version */
#ifndef Cdrskin_prog_versioN
#define Cdrskin_prog_versioN "1.1.1"
#define Cdrskin_prog_versioN "1.1.4"
#endif
/** The official libburn interface revision to use.
@ -101,7 +100,7 @@ or
#define Cdrskin_libburn_minoR 1
#endif
#ifndef Cdrskin_libburn_micrO
#define Cdrskin_libburn_micrO 1
#define Cdrskin_libburn_micrO 4
#endif
@ -135,43 +134,37 @@ or
#endif /* Cdrskin_libburn_cvs_A60220_tS */
#ifdef Cdrskin_libburn_1_1_0
#define Cdrskin_libburn_versioN "1.1.0"
#ifdef Cdrskin_libburn_1_1_4
#define Cdrskin_libburn_versioN "1.1.4"
#define Cdrskin_libburn_from_pykix_svN 1
#endif
#ifdef Cdrskin_libburn_1_1_1
#define Cdrskin_libburn_versioN "1.1.1"
#ifdef Cdrskin_libburn_1_1_5
#define Cdrskin_libburn_versioN "1.1.5"
#define Cdrskin_libburn_from_pykix_svN 1
/* Place novelty switch macros here.
Move them down to Cdrskin_libburn_from_pykix_svN on version leap
*/
#endif /* Cdrskin_libburn_1_1_1 */
#endif
#ifndef Cdrskin_libburn_versioN
#define Cdrskin_libburn_1_1_1
#define Cdrskin_libburn_versioN "1.1.1"
#define Cdrskin_libburn_1_1_4
#define Cdrskin_libburn_versioN "1.1.4"
#define Cdrskin_libburn_from_pykix_svN 1
#endif
#ifdef Cdrskin_libburn_1_1_0
#ifdef Cdrskin_libburn_1_1_4
#undef Cdrskin_libburn_majoR
#undef Cdrskin_libburn_minoR
#undef Cdrskin_libburn_micrO
#define Cdrskin_libburn_majoR 1
#define Cdrskin_libburn_minoR 1
#define Cdrskin_libburn_micrO 0
#define Cdrskin_libburn_micrO 4
#endif
#ifdef Cdrskin_libburn_1_1_1
#ifdef Cdrskin_libburn_1_1_5
#undef Cdrskin_libburn_majoR
#undef Cdrskin_libburn_minoR
#undef Cdrskin_libburn_micrO
#define Cdrskin_libburn_majoR 1
#define Cdrskin_libburn_minoR 1
#define Cdrskin_libburn_micrO 1
#define Cdrskin_libburn_micrO 5
#endif

View File

@ -65,7 +65,7 @@ connected via SCSI, PATA (aka IDE, ATA), USB, or SATA.
GPL software included:<BR>
</H2>
<DL>
<DT>libburn-1.1.0</DT>
<DT>libburn-1.1.4</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,9 +200,16 @@ Standalone ISO 9660 multi-session CD/DVD/BD tool
<P>
<DL>
<DT>Download as source code (see README):</DT>
<DD><A HREF="cdrskin-1.1.0.tar.gz">cdrskin-1.1.0.tar.gz</A>
<DD><A HREF="cdrskin-1.1.4.tar.gz">cdrskin-1.1.4.tar.gz</A>
(870 KB).
</DD>
<DD><A HREF="cdrskin-1.1.4.tar.gz.sig">cdrskin-1.1.4.tar.gz.sig</A></DD>
<DD>
(detached GPG signature for verification by
<KBD>gpg --verify cdrskin-1.1.4.tar.gz.sig cdrskin-1.1.4.tar.gz</KBD>
<BR>
after <KBD>gpg --keyserver keys.gnupg.net --recv-keys ABC0A854</KBD>).
</DD>
<DD>
The cdrskin tarballs are source code identical with libburn releases
of the same version number.
@ -250,20 +257,24 @@ 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.0.6.pl00:
Enhancements towards previous stable version cdrskin-1.1.0.pl01:
<UL>
<LI>none</LI>
<LI>
New option --device_links for GNU/Linux with unpredictable
device numbers and udev
</LI>
<!--
<LI>none</LI>
-->
</UL>
Bug fixes towards cdrskin-1.0.6.pl00:
Bug fixes towards cdrskin-1.1.0.pl01:
<UL>
<LI>
Option -format as_needed issued a wrong block size.
A Pioneer BDR-205 drive refused on that command.
Some drives returned wrong CD sizes after having burned DVD-R
</LI>
<LI>
Empty ROM drive was mistaken to hold an unsuitable disc
</LI>
<!--
<LI>none</LI>
@ -274,8 +285,8 @@ A Pioneer BDR-205 drive refused on that command.
<P>
<DL>
<DT><H3>Development snapshot, version 1.1.1 :</H3></DT>
<DD>Enhancements towards current stable version 1.0.0:
<DT><H3>Development snapshot, version 1.1.5 :</H3></DT>
<DD>Enhancements towards current stable version 1.0.4:
<UL>
<LI>none yet</LI>
<!--
@ -285,7 +296,7 @@ A Pioneer BDR-205 drive refused on that command.
</UL>
</DD>
<DD>Bug fixes towards cdrskin-1.1.0:
<DD>Bug fixes towards cdrskin-1.1.4:
<UL>
<LI>none yet</LI>
<!--
@ -295,10 +306,10 @@ A Pioneer BDR-205 drive refused on that command.
</DD>
<DD>&nbsp;</DD>
<DD><A HREF="README_cdrskin_devel">README 1.1.1</A>
<DD><A HREF="cdrskin__help_devel">cdrskin-1.1.1 --help</A></DD>
<DD><A HREF="cdrskin_help_devel">cdrskin-1.1.1 -help</A></DD>
<DD><A HREF="man_1_cdrskin_devel.html">man cdrskin (as of 1.1.1)</A></DD>
<DD><A HREF="README_cdrskin_devel">README 1.1.5</A>
<DD><A HREF="cdrskin__help_devel">cdrskin-1.1.5 --help</A></DD>
<DD><A HREF="cdrskin_help_devel">cdrskin-1.1.5 -help</A></DD>
<DD><A HREF="man_1_cdrskin_devel.html">man cdrskin (as of 1.1.5)</A></DD>
<DD>&nbsp;</DD>
<DT>Maintainers of cdrskin unstable packages please use SVN of
<A HREF="http://libburnia-project.org"> libburnia-project.org</A></DT>
@ -318,7 +329,7 @@ admins with full system souvereignty.</DT>
<A HREF="README_cdrskin_devel">upcoming README</A> ):
</DD>
<DD>
<A HREF="cdrskin-1.1.1.tar.gz">cdrskin-1.1.1.tar.gz</A>
<A HREF="cdrskin-1.1.5.tar.gz">cdrskin-1.1.5.tar.gz</A>
(870 KB).
</DD>
@ -468,10 +479,11 @@ First of all: this relationship is single sided, as cdrskin has to be aware of
cdrecord but not vice versa.
<BR>
<BR>
I am a long time user of cdrecord and it works fine for me.
I was a long time user of cdrecord and it worked fine for me.
Especially i do appreciate its write mode -tao which allows to pipe arbitrary
data on CD and CD-RW via stdin. cdrecord is reliable, versatile and well
maintained. So for me - there would be no problem with it.
maintained. So for me - there would be no problem with using it for
burning CDs.
<BR>
But the author of cdrecord and the Linux kernel people foster a very hostile
relationship. Ok, that's their business, not mine (or ours if you are with me).

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2011.08.01.153305"
#define Cdrskin_timestamP "2011.08.07.100001"

View File

@ -9584,7 +9584,7 @@ Replaced some large local variables by other means in libburn/toc.c
libburn/mmc.c
Bug fix: burn_disc_format() on DVD-RW issued wrong block size with type 00h
8 Jun 2011 [3861]
08 Jun 2011 [3861]
configure.ac
Makefile.am
Introduced AC_CONFIG_MACRO_DIR() and ACLOCAL_AMFLAGS on advise of George Danchev
@ -9593,7 +9593,7 @@ Introduced AC_CONFIG_MACRO_DIR() and ACLOCAL_AMFLAGS on advise of George Danchev
libburn/write.c
Replaced some large local variables by other means in libburn/write.c
9 Jun 2011 [3864]
09 Jun 2011 [3864]
bootstrap
Added option -I . to aclocal in bootstrap script on advise of George Danchev
@ -9660,20 +9660,290 @@ Made number transition to 1.1.1
+ cdrskin/add_ts_changes_to_libburn_1_1_1
Updated cdrskin tarball generator
18 Jun 2011 []
18 Jun 2011 [3877]
ChangeLog
cdrskin/changelog.txt
Documented changes and release timestamp
[]
svn move -m libburn release 1.1.1 is ready
http://svn.libburnia-project.org/libburn/branches/1.1.1
http://svn.libburnia-project.org/libburn/tags/1.1.1
18 Jun 2011 [3878]
svn move -m libburn release 1.1.0 is ready
http://svn.libburnia-project.org/libburn/branches/1.1.0
http://svn.libburnia-project.org/libburn/tags/1.1.0
------------------------------------ cycle - cdrskin-1.1.1 - 2011.06.18.154942
------------------------------------ cycle - cdrskin-1.1.1 -
------------------------------------ cycle - cdrskin-1.1.1 -
2011.06.19.203515 [3882]
libburn/sg-dummy.c
Bug fix: libburn-1.1.0 did only compile on Linux, FreeBSD, and Solaris
20 Jun 2011 [3883]
svn copy -m Branching for libburn release 1.1.0.pl01
http://svn.libburnia-project.org/libburn/tags/1.1.0
http://svn.libburnia-project.org/libburn/branches/1.1.0.pl01
2011.06.20.110001 [3884] [3885] (branch 1.0.0.pl01)
libburn/sg-dummy.c
ChangeLog
cdrskin/cdrskin_timestamp.h
Bug fix: libburn-1.1.0 did only compile on Linux, FreeBSD, and Solaris
20 Jun 2011 [3886]
svn move -m "libburn bugfix release 1.0.0.pl01 is ready"
http://svn.libburnia-project.org/libburn/branches/1.1.0.pl01
http://svn.libburnia-project.org/libburn/tags/1.1.0.pl01
------------------------------ release - libburn-1.1.0.pl01 - 2011.06.20.110001
* Bug fix: libburn-1.1.0 compiled only on Linux, FreeBSD, and Solaris
2011.06.22.093127 [3888]
libburn/sg-libcdio.c
Silenced compiler warnings about signedness
22 Jun 2011 [3889]
releng/releng_build_os
Beginning to create a test suite for libburn and cdrskin
2011.07.04.143922 [4041]
libburn/spc.c
Avoiding to load speed descriptor list twice
2011.07.04.171649 [4047]
libburn/file.c
Reacted on warnings of -Wunused-but-set-variable
2011.07.06.142532 [4071]
libburn/init.h
libburn/async.c
Reacted on warnings of -Wunused-but-set-variable
2011.07.06.143104 [4072]
libburn/mmc.c
Reacted on warnings of -Wunused-but-set-variable
2011.07.06.143313 [4073]
libburn/spc.c
Reacted on warnings of -Wunused-but-set-variable
2011.07.06.143441 [4074]
libburn/toc.c
Reacted on warnings of -Wunused-but-set-variable
2011.07.06.143536 [4075]
libburn/write.c
Reacted on warnings of -Wunused-but-set-variable
2011.07.06.143724 [4076]
cdrskin/cdrskin.c
Reacted on warnings of -Wtype-limits and -Wunused-but-set-variable
2011.07.06.143904 [4077]
cdrskin/cdrfifo.c
Reacted on warnings of -Wunused-but-set-variable
2011.07.07.114911 [4083]
libburn/mmc.c
Silenced warning of cppcheck
2011.07.07.115006 [4084]
libburn/sg-linux.c
Silenced warning of cppcheck
2011.07.07.120719 [4085]
libburn/util.c
Reacted on warning of cppcheck
2011.07.11.143934 [4133]
libburn/sg.c
Implemented macro Libburn_use_sg_freebsd_porT
2011.07.12.095936 [4138]
cdrskin/cdrfifo.c
Reacted on warning of cppcheck about cdrskin/cdrfifo.c
2011.07.12.105955 [4139]
cdrskin/cleanup.c
Reacted on warning of cppcheck about cdrskin/cleanup.c
2011.07.12.110131 [4140]
libburn/async.c
Reacted on warning of cppcheck about libburn/async.c
2011.07.12.110223 [4142]
libburn/cleanup.c
Reacted on warning of cppcheck about libburn/cleanup.c
2011.07.12.110306 [4143]
libburn/drive.c
Reacted on warning of cppcheck about libburn/drive.c
2011.07.12.110405 [4144]
libburn/read.c
Reacted on warning of cppcheck about libburn/read.c
2011.07.12.110453 [4145]
test/poll.c
Reacted on warning of cppcheck about test/poll.c
2011.07.12.141659 [4147]
libburn/sg.c
Improved intentional compiler warning about lack of suitable system adapter
2011.07.12.141838 [4148]
libburn/sg-dummy.c
Reacted on warning of cppcheck about libburn/sg-dummy.c
2011.07.12.141932 [4149]
libburn/sg-freebsd-port.c
Reacted on warning of cppcheck about libburn/sg-freebsd-port.c
2011.07.12.142018 [4150]
libburn/sg-freebsd.c
Reacted on warning of cppcheck about libburn/sg-freebsd.c
2011.07.12.142141 [4151]
libburn/sg-libcdio.c
Reacted on warning of cppcheck about libburn/sg-libcdio.c
2011.07.12.155335 [4152]
cdrskin/cdrskin.c
Improved -atip and -minfo with empty drive
2011.07.12.155417 [4153]
libburn/drive.c
Bug fix: Empty ROM drive was mistaken to hold an unsuitable disc
2011.07.12.173727 [4154]
libburn/sg-solaris.c
Reacted on warning of cppcheck about libburn/sg-solaris.c
2011.07.14.162150 [4164]
cdrskin/cdrskin.c
Fixed possible uninitialized variable use introduced by rev 4152
2011.07.15.081325 [4170]
libburn/sg-freebsd.c
Reacted on warning of cppcheck about libburn/sg-freebsd.c
2011.07.28.191202 [4222]
libburn/libburn.h
libburn/drive.c
libburn/libburn.ver
New API call burn_lookup_device_link()
2011.07.28.191536 [4223]
cdrskin/cdrskin.c
cdrskin/cdrskin.1
New option --device_links
2011.07.31.080152 [4227]
libburn/transport.h
libburn/drive.h
libburn/drive.c
libburn/spc.c
libburn/mmc.c
Bug fix: Some drives returned wrong CD sizes after having burnt DVD-R
2011.07.31.083046 [4228]
libburn/spc.c
libburn/mmc.c
Bug fix: Some drives return -150 as NWA of blank CD, rather than 0
2011.08.01.125405 [4232]
libburn/libburn.h
libburn/drive.c
libburn/mmc.c
libburn/libburn.ver
New API call burn_disc_get_phys_format_info()
2011.08.01.153305 [4237]
libburn/mmc.h
Forgot to upload the header which defines mmc_get_phys_format_info
Release 1.1.2 was skipped to get back in sync with libisoburn.
07 Aug 2011 [4247]
copy -m Branching for libburn release 1.1.4
http://svn.libburnia-project.org/libburn/trunk
http://svn.libburnia-project.org/libburn/branches/1.1.4
2011.08.07.100001 [4249]
Makefile.am
configure.ac
README
libburn/libburn.h
cdrskin/cdrskin.c
cdrskin/README
cdrskin/compile_cdrskin.sh
cdrskin/cdrskin_timestamp.h
cdrskin/cdrskin_eng.html
Made number transition to 1.1.4
07 Aug 2011 [4250]
- cdrskin/add_ts_changes_to_libburn_1_1_0
- cdrskin/add_ts_changes_to_libburn_1_1_1
+ cdrskin/add_ts_changes_to_libburn_1_1_4
+ cdrskin/add_ts_changes_to_libburn_1_1_5
Updated cdrskin tarball generator
07 Aug 2011 [4251]
ChangeLog
cdrskin/changelog.txt
Documented changes and release timestamp
------------------------------------ cycle - cdrskin-1.1.4 - 2011.08.07.100001
* Bug fix: Some drives return -150 as NWA of blank CD, rather than 0.
libburn forwarded this misleading information to the application.
* Bug fix: Some drives returned wrong CD sizes after having burned DVD-R
* Bug fix: Empty ROM drive was mistaken to hold an unsuitable disc
* Bug fix: Avoiding to load speed descriptor list twice
* New API call burn_lookup_device_link()
* New API call burn_disc_get_phys_format_info()
* New cdrskin option --device_links
[]
Makefile.am
configure.ac
README
libburn/libburn.h
cdrskin/cdrskin.c
cdrskin/README
cdrskin/compile_cdrskin.sh
cdrskin/cdrskin_timestamp.h
cdrskin/cdrskin_eng.html
Made number transition to 1.1.5
[]
- cdrskin/add_ts_changes_to_libburn_1_1_0
- cdrskin/add_ts_changes_to_libburn_1_1_1
+ cdrskin/add_ts_changes_to_libburn_1_1_4
+ cdrskin/add_ts_changes_to_libburn_1_1_5
Updated cdrskin tarball generator
[]
ChangeLog
cdrskin/changelog.txt
Documented changes and release timestamp
------------------------------------ cycle - cdrskin-1.1.5 -
[]
ChangeLog
cdrskin/changelog.txt
Documented changes and release timestamp
------------------------------------ cycle - cdrskin-1.1.5 -
[]
ChangeLog
cdrskin/changelog.txt
Documented changes and release timestamp
------------------------------------ cycle - cdrskin-1.1.5 -
@ -9686,15 +9956,26 @@ Important: When adding a public API function then add its name to file
TODO
===============================================================================
- libburn.h talks of "persistent drive address" which on modern Linux
is far from being persistent. Change to "system drive address" (or so).
- cdrskin/cdrskin.c has too many macro cases which cause cppcheck warnings
and make the code hard to understand
----------------------------------------------------------------------
Get sg-freebsd-port.c functional.
Throw out old burn_print() calls
Expose BD type from bytes 8+4 to 10+4 out of READ BD STRUCTURE form 0.
Better motivation of burn_set_signal_handling() in libburn.h.
Explore MMC command GET EVENT STATUS NOTIFICATION
-------------------------------- Solaris -----------------------------------
Locking of device files.

View File

@ -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_1_1"
libvers="-DCdrskin_libburn_1_1_4"
# To be used if Makefile.am uses libburn_libburn_la_CFLAGS
# burn="libburn/libburn_libburn_la-"
@ -19,7 +19,7 @@ libdax_msgs_o="$burn"libdax_msgs.o
libdax_audioxtr_o="$burn"libdax_audioxtr.o
do_strip=0
static_opts=
warn_opts="-Wall"
warn_opts="-Wall -Wextra -Wno-unused-parameter"
libcdio=
fifo_source="cdrskin/cdrfifo.c"
compile_cdrskin=1
@ -47,15 +47,15 @@ do
libdax_audioxtr_o=
libdax_msgs_o="$burn"message.o
cleanup_src_or_obj="-DCleanup_has_no_libburn_os_H cdrskin/cleanup.c"
elif test "$i" = "-libburn_1_1_0"
elif test "$i" = "-libburn_1_1_4"
then
libvers="-DCdrskin_libburn_1_1_0"
libvers="-DCdrskin_libburn_1_1_4"
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_1_1"
libvers="-DCdrskin_libburn_1_1_5"
libdax_audioxtr_o="$burn"libdax_audioxtr.o
libdax_msgs_o="$burn"libdax_msgs.o
cleanup_src_or_obj="$burn"cleanup.o
@ -109,7 +109,7 @@ do
echo "Options:"
echo " -compile_cdrfifo compile program cdrskin/cdrfifo."
echo " -compile_dewav compile program test/dewav without libburn."
echo " -libburn_1_1_0 set macro to match libburn-1.1.0"
echo " -libburn_1_1_4 set macro to match libburn-1.1.4"
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."

View File

@ -1,4 +1,4 @@
AC_INIT([libburn], [1.1.1], [http://libburnia-project.org])
AC_INIT([libburn], [1.1.4], [http://libburnia-project.org])
AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h])
@ -92,6 +92,7 @@ dnl 1.0.2 = libburn.so.4.59.0
dnl 1.0.4 = libburn.so.4.61.0
dnl 1.0.6 = libburn.so.4.63.0
dnl 1.1.0 = libburn.so.4.65.0
dnl 1.1.4 = libburn.so.4.67.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.
@ -117,7 +118,7 @@ dnl
dnl As said: Only copies. Original in libburn/libburn.h : burn_header_version_*
BURN_MAJOR_VERSION=1
BURN_MINOR_VERSION=1
BURN_MICRO_VERSION=1
BURN_MICRO_VERSION=4
BURN_VERSION=$BURN_MAJOR_VERSION.$BURN_MINOR_VERSION.$BURN_MICRO_VERSION
AC_SUBST(BURN_MAJOR_VERSION)
@ -128,14 +129,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.1.0
dnl This is the development version after above release version
dnl This is the release version libburn-1.1.4
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 = 69 - 65 = 4 . Linux library name = libburn.so.4.65.0
LT_CURRENT=69
LT_AGE=65
dnl SONAME = 71 - 67 = 4 . Linux library name = libburn.so.4.67.0
LT_CURRENT=71
LT_AGE=67
LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`

View File

@ -1087,7 +1087,7 @@ int burn_drive_convert_scsi_adr(int bus_no, int host_no, int channel_no,
@param flag Bitfield for control purposes. Unused yet. Submit 0.
@return <0 severe error, 0 failed to search, 2 nothing found
1 success, link_adr is valid
@since 1.1.2
@since 1.1.4
*/
int burn_lookup_device_link(char *dev_adr, char link_adr[],
char *dir_adr, char **templ, int num_templ, int flag);
@ -1309,7 +1309,7 @@ int burn_disc_get_bd_spare_info(struct burn_drive *d,
@param flag Bitfield for control purposes (unused yet, submit 0)
@return 1 = reply prarameters are valid,
<=0 = reply is invalid (e.g. because no DVD-R)
@since 1.1.2
@since 1.1.4
*/
int burn_disc_get_phys_format_info(struct burn_drive *d, int *disk_category,
char **book_name, int *part_version, int *num_layers,
@ -2791,7 +2791,7 @@ void burn_version(int *major, int *minor, int *micro);
*/
#define burn_header_version_major 1
#define burn_header_version_minor 1
#define burn_header_version_micro 1
#define burn_header_version_micro 4
/** Note:
Above version numbers are also recorded in configure.ac because libtool
wants them as parameters at build time.