Requiring libburn-0.7.4 now
This commit is contained in:
parent
783ad87750
commit
59dec6ac9e
4
README
4
README
@ -29,8 +29,8 @@ By using this software you agree to the disclaimer at the end of this text:
|
|||||||
|
|
||||||
Compilation, First Glimpse, Installation
|
Compilation, First Glimpse, Installation
|
||||||
|
|
||||||
Dynamic library and compile time header requirements for libisoburn-0.4.4 :
|
Dynamic library and compile time header requirements for libisoburn-0.4.5 :
|
||||||
- libburn.so.4 , version libburn-0.7.2 or higher
|
- libburn.so.4 , version libburn-0.7.4 or higher
|
||||||
- libisofs.so.6 , version libisofs-0.6.24 or higher
|
- libisofs.so.6 , version libisofs-0.6.24 or higher
|
||||||
libisoburn and xorriso will not start with libraries which are older than their
|
libisoburn and xorriso will not start with libraries which are older than their
|
||||||
headers seen at compile time.
|
headers seen at compile time.
|
||||||
|
@ -21,7 +21,7 @@ dnl
|
|||||||
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
dnl These three are only copies to provide libtool with unused LT_RELEASE
|
||||||
ISOBURN_MAJOR_VERSION=0
|
ISOBURN_MAJOR_VERSION=0
|
||||||
ISOBURN_MINOR_VERSION=4
|
ISOBURN_MINOR_VERSION=4
|
||||||
ISOBURN_MICRO_VERSION=3
|
ISOBURN_MICRO_VERSION=5
|
||||||
|
|
||||||
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
|
||||||
|
|
||||||
@ -213,7 +213,7 @@ AC_CHECK_HEADER(libburn/libburn.h)
|
|||||||
AC_CHECK_HEADER(libisofs/libisofs.h)
|
AC_CHECK_HEADER(libisofs/libisofs.h)
|
||||||
|
|
||||||
dnl Check for proper library versions
|
dnl Check for proper library versions
|
||||||
LIBBURN_REQUIRED=0.7.3
|
LIBBURN_REQUIRED=0.7.4
|
||||||
LIBISOFS_REQUIRED=0.6.24
|
LIBISOFS_REQUIRED=0.6.24
|
||||||
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
|
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
|
||||||
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)
|
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)
|
||||||
|
@ -224,7 +224,7 @@ void isoburn_version(int *major, int *minor, int *micro);
|
|||||||
*/
|
*/
|
||||||
#define isoburn_libburn_req_major 0
|
#define isoburn_libburn_req_major 0
|
||||||
#define isoburn_libburn_req_minor 7
|
#define isoburn_libburn_req_minor 7
|
||||||
#define isoburn_libburn_req_micro 3
|
#define isoburn_libburn_req_micro 4
|
||||||
|
|
||||||
|
|
||||||
/** The minimum version of libisofs to be used with this version of libisoburn
|
/** The minimum version of libisofs to be used with this version of libisoburn
|
||||||
|
@ -59,7 +59,10 @@ Within that directory execute:
|
|||||||
This will produce a binary named
|
This will produce a binary named
|
||||||
./xorriso/xorriso
|
./xorriso/xorriso
|
||||||
|
|
||||||
which you may strip to reduce it in size
|
If you want xorriso to report a "Build timestamp" with its option -version :
|
||||||
|
make buildstamped
|
||||||
|
|
||||||
|
You may strip the binary to reduce it in size
|
||||||
strip ./xorriso/xorriso
|
strip ./xorriso/xorriso
|
||||||
|
|
||||||
You may copy or move it to a directory where it can be found by the shell,
|
You may copy or move it to a directory where it can be found by the shell,
|
||||||
@ -102,21 +105,18 @@ By default the filter feature is disabled if effective user id and real
|
|||||||
user id differ. This ban can be lifted by
|
user id differ. This ban can be lifted by
|
||||||
--enable-external-filters-setuid
|
--enable-external-filters-setuid
|
||||||
|
|
||||||
|
Sometimes xorriso will yield better write performance on Linux if 64 KB are
|
||||||
|
transmitted in each write operation rather than 32 KB. See option -dvd_obs .
|
||||||
|
64k can be made default at configure time by:
|
||||||
|
--enable-dvd-obs-64k
|
||||||
|
|
||||||
|
For xorriso -as cdrecord emulation only:
|
||||||
In some situations Linux may deliver a better write performance to drives if
|
In some situations Linux may deliver a better write performance to drives if
|
||||||
the track input is read with O_DIRECT (see man 2 open). The included libburn
|
the track input is read with O_DIRECT (see man 2 open). The included libburn
|
||||||
and the cdrecord emulation of xorriso can be told to use this peculiar read
|
and the cdrecord emulation of xorriso can be told to use this peculiar read
|
||||||
mode by:
|
mode by:
|
||||||
--enable-track-src-odirect
|
--enable-track-src-odirect
|
||||||
|
|
||||||
But often libburn will yield even better performance in such a situation if
|
|
||||||
64 KB are transmitted in each write operation rather than 32 KB.
|
|
||||||
64k can be made default at configure time by:
|
|
||||||
--enable-dvd-obs-64k
|
|
||||||
This may be combined with above --enable-track-src-odirect .
|
|
||||||
|
|
||||||
If you want xorriso to report a "Build timestamp" with its option -version:
|
|
||||||
make buildstamped
|
|
||||||
|
|
||||||
|
|
||||||
Drives and Disk File Objects
|
Drives and Disk File Objects
|
||||||
|
|
||||||
@ -275,8 +275,8 @@ and a matching dynamically linked xorriso binary.
|
|||||||
This binary is leaner but depends on properly installed libraries of suitable
|
This binary is leaner but depends on properly installed libraries of suitable
|
||||||
revision.
|
revision.
|
||||||
|
|
||||||
Dynamic library and compile time header requirements for libisoburn-0.4.0 :
|
Dynamic library and compile time header requirements for libisoburn-0.4.5 :
|
||||||
- libburn.so.4 , version libburn-0.7.2 or higher
|
- libburn.so.4 , version libburn-0.7.4 or higher
|
||||||
- libisofs.so.6 , version libisofs-0.6.24 or higher
|
- libisofs.so.6 , version libisofs-0.6.24 or higher
|
||||||
libisoburn and xorriso will not start with libraries which are older than their
|
libisoburn and xorriso will not start with libraries which are older than their
|
||||||
headers seen at compile time. So compile in the oldest possible installation
|
headers seen at compile time. So compile in the oldest possible installation
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2009.11.28.124241"
|
#define Xorriso_timestamP "2009.12.07.082130"
|
||||||
|
Loading…
Reference in New Issue
Block a user