Updated copyright marks to 2010

This commit is contained in:
Thomas Schmitt 2010-01-01 13:00:47 +00:00
parent ea9cb3ab4b
commit ab1336dc29
9 changed files with 26 additions and 16 deletions

View File

@ -1,11 +1,11 @@
Mario Danic <mario.danic@gmail.com>, Mario Danic <mario.danic@gmail.com>,
Vreixo Formoso <metalpain2002@yahoo.es> Vreixo Formoso <metalpain2002@yahoo.es>
Thomas Schmitt <scdbackup@gmx.net> Thomas Schmitt <scdbackup@gmx.net>
libisoburn is Copyright (C) 2007-2009 Vreixo Formoso, Thomas Schmitt libisoburn is Copyright (C) 2007-2010 Vreixo Formoso, Thomas Schmitt
xorriso is Copyright (C) 2007-2009 Thomas Schmitt xorriso is Copyright (C) 2007-2010 Thomas Schmitt
libisofs (if included) is Copyright (C) 2007-2009 Vreixo Formoso, Mario Danic libisofs (if included) is Copyright (C) 2007-2010 Vreixo Formoso, Mario Danic
libburn (if included) is Copyright (C) 2002-2006 Derek Foreman, Ben Jansens libburn (if included) is Copyright (C) 2002-2006 Derek Foreman, Ben Jansens
and Copyright (C) 2006-2009 Mario Danic, Thomas Schmitt and Copyright (C) 2006-2010 Mario Danic, Thomas Schmitt
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify

4
README
View File

@ -5,7 +5,7 @@ libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net> and Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org. Integrated sub project of libburnia-project.org.
http://files.libburnia-project.org/releases/libisoburn-0.4.6.pl00.tar.gz http://files.libburnia-project.org/releases/libisoburn-0.4.6.pl00.tar.gz
Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt. Copyright (C) 2006-2010 Vreixo Formoso, Thomas Schmitt.
Provided under GPL version 2. Provided under GPL version 2.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -176,7 +176,7 @@ libburnia-project.org
By Mario Danic <mario.danic@gmail.com>, By Mario Danic <mario.danic@gmail.com>,
Vreixo Formoso <metalpain2002@yahoo.es> Vreixo Formoso <metalpain2002@yahoo.es>
Thomas Schmitt <scdbackup@gmx.net> Thomas Schmitt <scdbackup@gmx.net>
Copyright (C) 2006-2009 Mario Danic, Vreixo Formoso, Thomas Schmitt. Copyright (C) 2006-2010 Mario Danic, Vreixo Formoso, Thomas Schmitt.
libburnia-project.org is inspired by and in other components still containing libburnia-project.org is inspired by and in other components still containing
parts of old parts of old

View File

@ -1,7 +1,7 @@
/* /*
data source for libisoburn. data source for libisoburn.
Copyright 2007 - 2009 Vreixo Formoso Lopes <metalpain2002@yahoo.es> Copyright 2007 - 2010 Vreixo Formoso Lopes <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net> and Thomas Schmitt <scdbackup@gmx.net>
*/ */

View File

@ -5,7 +5,7 @@ xorriso. By Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org but also published via: Integrated sub project of libburnia-project.org but also published via:
http://scdbackup.sourceforge.net/xorriso_eng.html http://scdbackup.sourceforge.net/xorriso_eng.html
http://scdbackup.sourceforge.net/xorriso-0.4.7.tar.gz http://scdbackup.sourceforge.net/xorriso-0.4.7.tar.gz
Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2. Copyright (C) 2006-2010 Thomas Schmitt, provided under GPL version 2.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
@ -306,7 +306,7 @@ libburnia-project.org
By Mario Danic <mario.danic@gmail.com>, By Mario Danic <mario.danic@gmail.com>,
Vreixo Formoso <metalpain2002@yahoo.es> Vreixo Formoso <metalpain2002@yahoo.es>
Thomas Schmitt <scdbackup@gmx.net> Thomas Schmitt <scdbackup@gmx.net>
Copyright (C) 2006-2009 Mario Danic, Vreixo Formoso, Thomas Schmitt. Copyright (C) 2006-2010 Mario Danic, Vreixo Formoso, Thomas Schmitt.
libburnia-project.org is inspired by and in other components still containing libburnia-project.org is inspired by and in other components still containing
parts of old parts of old

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
# compile_xorriso.sh # compile_xorriso.sh
# Copyright 2005 - 2009 Thomas Schmitt, scdbackup@gmx.net, GPL version 2 # Copyright 2005 - 2010 Thomas Schmitt, scdbackup@gmx.net, GPL version 2
# #
# Not intended for general use in production installations ! # Not intended for general use in production installations !
# Rather use: ./bootstrap ; ./configure ; make # Rather use: ./bootstrap ; ./configure ; make
@ -26,6 +26,7 @@ warn_opts="-Wall"
nglibisofs=1 nglibisofs=1
def_libreadline="-DXorriso_with_readlinE" def_libreadline="-DXorriso_with_readlinE"
link_libreadline="-lreadline" link_libreadline="-lreadline"
link_libcdio=
for i in "$@" for i in "$@"
do do
@ -43,12 +44,20 @@ do
then then
def_libreadline="" def_libreadline=""
link_libreadline="" link_libreadline=""
elif test "$i" = "-dvd_obs_64k"
then
def_opts="$def_opts -DXorriso_dvd_obs_default_64K"
elif test "$i" = "-use_libcdio"
then
link_libcdio="-lcdio"
elif test "$i" = "-help" -o "$i" = "--help" -o "$i" = "-h" elif test "$i" = "-help" -o "$i" = "--help" -o "$i" = "-h"
then then
echo \ echo \
"$xorr/compile_xorriso.sh : to be executed above top level directories" "$xorr/compile_xorriso.sh : to be executed above top level directories"
echo "Options:" echo "Options:"
echo " -dvd_obs_64k 64 KB default size for DVD/BD writing."
echo " -no_libreadline do not compile for and link with libreadline." echo " -no_libreadline do not compile for and link with libreadline."
echo " -use_libcdio link with -lcdio because libburn uses it."
echo " -do_diet produce capability reduced lean version." echo " -do_diet produce capability reduced lean version."
echo " -do_strip apply program strip to compiled programs." echo " -do_strip apply program strip to compiled programs."
echo " -g produce debuggable programm." echo " -g produce debuggable programm."
@ -98,7 +107,7 @@ echo "Version timestamp : $(sed -e 's/#define Xorriso_timestamP "//' -e 's/"$//
date -u '+#define Xorriso_build_timestamP "%Y.%m.%d.%H%M%S"' >"$xorr"/xorriso_buildstamp.h date -u '+#define Xorriso_build_timestamP "%Y.%m.%d.%H%M%S"' >"$xorr"/xorriso_buildstamp.h
echo "Build timestamp : $(sed -e 's/#define Xorriso_build_timestamP "//' -e 's/"$//' "$xorr"/xorriso_buildstamp.h)" echo "Build timestamp : $(sed -e 's/#define Xorriso_build_timestamP "//' -e 's/"$//' "$xorr"/xorriso_buildstamp.h)"
echo "compiling program $xorr/xorriso.c $static_opts $debug_opts $def_opts" echo "compiling program $xorr/xorriso.c $static_opts $debug_opts $def_opts $link_libcdio"
cc -I. -DXorriso_with_maiN $def_libreadline \ cc -I. -DXorriso_with_maiN $def_libreadline \
$warn_opts \ $warn_opts \
$static_opts \ $static_opts \
@ -147,6 +156,7 @@ cc -I. -DXorriso_with_maiN $def_libreadline \
$libisofs \ $libisofs \
\ \
$link_libreadline \ $link_libreadline \
$link_libcdio \
\ \
-lpthread \ -lpthread \
-lacl \ -lacl \

View File

@ -2,7 +2,7 @@
/* Command line oriented batch and dialog tool which creates, loads, /* Command line oriented batch and dialog tool which creates, loads,
manipulates and burns ISO 9660 filesystem images. manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2009 Thomas Schmitt, <scdbackup@gmx.net> Copyright 2007-2010 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2. Provided under GPL version 2.
@ -239,7 +239,7 @@ int Xorriso_msgs_submit_void(void *xorriso,
/** Evaluate an advise whether to abort or whether to go on with option /** Evaluate an advise whether to abort or whether to go on with option
processing. This should be called after any option function was processed. processing. This should be called after any option function was processed.
It updates the problem status by processing the library message queues It updates the problem status by processing the library message queues
and then it uses this status and the submitted return value ot the and then it uses this status and the submitted return value of the
option function to evaluate the situation. option function to evaluate the situation.
@param xorriso The environment handle @param xorriso The environment handle
@param ret The return value of the previously called option function @param ret The return value of the previously called option function

View File

@ -2,7 +2,7 @@
/* Command line oriented batch and dialog tool which creates, loads, /* Command line oriented batch and dialog tool which creates, loads,
manipulates and burns ISO 9660 filesystem images. manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2009 Thomas Schmitt, <scdbackup@gmx.net> Copyright 2007-2010 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2. Provided under GPL version 2.

View File

@ -1 +1 @@
#define Xorriso_timestamP "2010.01.01.125742" #define Xorriso_timestamP "2010.01.01.130215"

View File

@ -4,7 +4,7 @@
a command line oriented batch and dialog tool which creates, loads, a command line oriented batch and dialog tool which creates, loads,
manipulates and burns ISO 9660 filesystem images. manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2009 Thomas Schmitt, <scdbackup@gmx.net> Copyright 2007-2010 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2. Provided under GPL version 2.