From 5cdc9db76c7e4c44e1512b5e97dc4d021bbb6d95 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Fri, 24 Nov 2006 12:19:43 +0000 Subject: [PATCH] Version leap to 0.2.7 --- Makefile.am | 2 +- cdrskin/README | 12 ++++++------ cdrskin/cdrskin.c | 7 ++++++- cdrskin/compile_cdrskin.sh | 4 ++-- configure.ac | 4 ++-- 5 files changed, 17 insertions(+), 12 deletions(-) diff --git a/Makefile.am b/Makefile.am index 63886a1..a28ea50 100644 --- a/Makefile.am +++ b/Makefile.am @@ -103,7 +103,7 @@ test_structest_SOURCES = test/structest.c ## cdrskin construction site - ts A60816 cdrskin_cdrskin_CPPFLAGS = -Ilibburn -cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_0_2_6 +cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_0_2_7 cdrskin_cdrskin_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS) cdrskin_cdrskin_SOURCES = cdrskin/cdrskin.c cdrskin/cdrfifo.c cdrskin/cdrfifo.h cdrskin/cdrskin_timestamp.h ## diff --git a/cdrskin/README b/cdrskin/README index 41d6665..bc531ac 100644 --- a/cdrskin/README +++ b/cdrskin/README @@ -26,12 +26,12 @@ following possible. cdrskin. By Thomas Schmitt Integrated sub project of libburn.pykix.org but also published via: http://scdbackup.sourceforge.net/cdrskin_eng.html -http://scdbackup.sourceforge.net/cdrskin-0.2.6.pl01.tar.gz +http://scdbackup.sourceforge.net/cdrskin-0.2.7.tar.gz Copyright (C) 2006 Thomas Schmitt ------------------------------------------------------------------------------ -On top of libburn there is implemented cdrskin 0.2.6, a limited cdrecord +On top of libburn there is implemented cdrskin 0.2.7, a limited cdrecord compatibility wrapper which allows to use some libburn features from the command line. Interested users of cdrecord are invited to participate in the development @@ -59,16 +59,16 @@ systems, including 64 bit systems. (Further reports are welcome.) Compilation, First Glimpse, Installation -Obtain cdrskin-0.2.6.pl01.tar.gz, take it to a directory of your choice and do: +Obtain cdrskin-0.2.7.tar.gz, take it to a directory of your choice and do: - tar xzf cdrskin-0.2.6.pl01.tar.gz - cd cdrskin-0.2.6 + tar xzf cdrskin-0.2.7.tar.gz + cd cdrskin-0.2.7 Or obtain a libburn.pykix.org SVN snapshot, go into the toplevel directory of the snapshot (e.g. cd libburn_pykix ), and execute the autotools script ./bootstrap . Use autools version >= 1.7 . -Within that toplevel directory of either cdrskin-0.2.6 or libburn then execute: +Within that toplevel directory of either cdrskin-0.2.7 or libburn then execute: ./configure make diff --git a/cdrskin/cdrskin.c b/cdrskin/cdrskin.c index 0472b91..1968ec1 100644 --- a/cdrskin/cdrskin.c +++ b/cdrskin/cdrskin.c @@ -123,7 +123,7 @@ or /** The official program version */ #ifndef Cdrskin_prog_versioN -#define Cdrskin_prog_versioN "0.2.6" +#define Cdrskin_prog_versioN "0.2.7" #endif /** The source code release timestamp */ @@ -161,6 +161,11 @@ or #define Cdrskin_libburn_from_pykix_svN 1 #endif /* Cdrskin_libburn_0_2_6 */ +#ifdef Cdrskin_libburn_0_2_7 +#define Cdrskin_libburn_versioN "0.2.7" +#define Cdrskin_libburn_from_pykix_svN 1 +#endif /* Cdrskin_libburn_0_2_6 */ + #ifndef Cdrskin_libburn_versioN #define Cdrskin_libburn_versioN "0.2.6" #define Cdrskin_libburn_from_pykix_svN 1 diff --git a/cdrskin/compile_cdrskin.sh b/cdrskin/compile_cdrskin.sh index 2881787..fa4dc35 100755 --- a/cdrskin/compile_cdrskin.sh +++ b/cdrskin/compile_cdrskin.sh @@ -7,7 +7,7 @@ debug_opts= def_opts= largefile_opts="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1" -libvers="-DCdrskin_libburn_0_2_6" +libvers="-DCdrskin_libburn_0_2_7" cleanup_src_or_obj="libburn/cleanup.o" libdax_msgs_o="libburn/libdax_msgs.o" libdax_audioxtr_o="libburn/libdax_audioxtr.o" @@ -41,7 +41,7 @@ do cleanup_src_or_obj="libburn/cleanup.o" elif test "$i" = "-libburn_svn" then - libvers="-DCdrskin_libburn_0_2_6" + libvers="-DCdrskin_libburn_0_2_7" libdax_audioxtr_o="libburn/libdax_audioxtr.o" libdax_msgs_o="libburn/libdax_msgs.o" cleanup_src_or_obj="libburn/cleanup.o" diff --git a/configure.ac b/configure.ac index 5e90cd1..f0954c7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libburn], [0.2.6], [http://libburn.pykix.org]) +AC_INIT([libburn], [0.2.7], [http://libburn.pykix.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -25,7 +25,7 @@ dnl if MAJOR or MINOR version changes, be sure to change AC_INIT above to match dnl BURN_MAJOR_VERSION=0 BURN_MINOR_VERSION=2 -BURN_MICRO_VERSION=6 +BURN_MICRO_VERSION=7 BURN_INTERFACE_AGE=0 BURN_BINARY_AGE=0 BURN_VERSION=$BURN_MAJOR_VERSION.$BURN_MINOR_VERSION.$BURN_MICRO_VERSION