Made number transition to 1.4.9
This commit is contained in:
parent
260fc2983d
commit
f1fc16bb8a
@ -116,7 +116,7 @@ test_poll_SOURCES = test/poll.c
|
||||
|
||||
## cdrskin construction site - ts A60816 - B70912
|
||||
cdrskin_cdrskin_CPPFLAGS = -Ilibburn
|
||||
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_1_4_8
|
||||
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_1_4_9
|
||||
|
||||
# cdrskin_cdrskin_LDADD = $(libburn_libburn_la_OBJECTS) $(LIBBURN_EXTRALIBS)
|
||||
# ts A80123, change proposed by Simon Huggins to cause dynamic libburn linking
|
||||
|
@ -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.4.8.tar.gz
|
||||
http://scdbackup.sourceforge.net/cdrskin-1.4.9.tar.gz
|
||||
|
||||
Copyright (C) 2006-2017 Thomas Schmitt, provided under GPL version 2 or later.
|
||||
------------------------------------------------------------------------------
|
||||
@ -15,7 +15,7 @@ most of the libburn features from the command line.
|
||||
|
||||
Currently it is fully supported on GNU/Linux with kernels >= 2.4, on FreeBSD,
|
||||
on OpenSolaris, and on NetBSD.
|
||||
IDE drives under Linux 2.4. need kernel module ide-scsi.
|
||||
IDE drives under Linux 2.4 need kernel module ide-scsi.
|
||||
ATA and SATA drives under FreeBSD need kernel module atapicam.
|
||||
On other X/Open compliant systems there will only be emulated drives, but no
|
||||
direct MMC operation on real CD/DVD/BD drives.
|
||||
@ -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.4.8.tar.gz, take it to a directory of your choice and do:
|
||||
Obtain cdrskin-1.4.9.tar.gz, take it to a directory of your choice and do:
|
||||
|
||||
tar xzf cdrskin-1.4.8.tar.gz
|
||||
cd cdrskin-1.4.8
|
||||
tar xzf cdrskin-1.4.9.tar.gz
|
||||
cd cdrskin-1.4.9
|
||||
|
||||
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.4.7, Sep 12, 2017"
|
||||
.TH CDRSKIN 1 "Version 1.4.9, Sep 12, 2017"
|
||||
.\" 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.4.8"
|
||||
#define Cdrskin_prog_versioN "1.4.9"
|
||||
#endif
|
||||
|
||||
/** The official libburn interface revision to use.
|
||||
|
@ -1 +1 @@
|
||||
#define Cdrskin_timestamP "2017.09.12.110001"
|
||||
#define Cdrskin_timestamP "2017.09.13.075728"
|
||||
|
@ -1,4 +1,4 @@
|
||||
AC_INIT([libburn], [1.4.8], [http://libburnia-project.org])
|
||||
AC_INIT([libburn], [1.4.9], [http://libburnia-project.org])
|
||||
AC_PREREQ([2.50])
|
||||
dnl AC_CONFIG_HEADER([config.h])
|
||||
|
||||
@ -135,7 +135,7 @@ dnl
|
||||
dnl As said: Only copies. Original in libburn/libburn.h : burn_header_version_*
|
||||
BURN_MAJOR_VERSION=1
|
||||
BURN_MINOR_VERSION=4
|
||||
BURN_MICRO_VERSION=8
|
||||
BURN_MICRO_VERSION=9
|
||||
BURN_VERSION=$BURN_MAJOR_VERSION.$BURN_MINOR_VERSION.$BURN_MICRO_VERSION
|
||||
|
||||
AC_SUBST(BURN_MAJOR_VERSION)
|
||||
@ -146,8 +146,8 @@ 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.4.8
|
||||
dnl ### This is the development version after above release version
|
||||
dnl ### This is the release version libburn-1.4.8
|
||||
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
|
||||
|
@ -3706,7 +3706,7 @@ void burn_version(int *major, int *minor, int *micro);
|
||||
*/
|
||||
#define burn_header_version_major 1
|
||||
#define burn_header_version_minor 4
|
||||
#define burn_header_version_micro 8
|
||||
#define burn_header_version_micro 9
|
||||
/** 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