Build outside of source fixes for TEST. We're in 0.80 land now.

This commit is contained in:
rocky
2007-12-28 02:11:01 +00:00
parent d9469c2d77
commit 05a512cfaa
7 changed files with 37 additions and 14 deletions

7
NEWS
View File

@@ -1,4 +1,7 @@
$Id: NEWS,v 1.112 2007/10/27 04:02:36 rocky Exp $ $Id: NEWS,v 1.113 2007/12/28 02:11:01 rocky Exp $
version 0.80
- Add get_media_changed for FreeBSD
version 0.79 version 0.79
2007-10-27 2007-10-27
@@ -387,4 +390,4 @@ version 0.1
Routines split off from VCDImager. Routines split off from VCDImager.
$Id: NEWS,v 1.112 2007/10/27 04:02:36 rocky Exp $ $Id: NEWS,v 1.113 2007/12/28 02:11:01 rocky Exp $

View File

@@ -15,11 +15,11 @@ dnl along with this program; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
dnl 02110-1301 USA. dnl 02110-1301 USA.
define(RELEASE_NUM, 79) define(RELEASE_NUM, 80)
define(CDIO_VERSION_STR, 0.$1) define(CDIO_VERSION_STR, 0.$1)
AC_PREREQ(2.52) AC_PREREQ(2.52)
AC_REVISION([$Id: configure.ac,v 1.217 2007/12/15 22:36:35 rocky Exp $])dnl AC_REVISION([$Id: configure.ac,v 1.218 2007/12/28 02:11:01 rocky Exp $])dnl
AC_INIT(libcdio, CDIO_VERSION_STR(RELEASE_NUM)) AC_INIT(libcdio, CDIO_VERSION_STR(RELEASE_NUM))
AC_CONFIG_SRCDIR(src/cd-info.c) AC_CONFIG_SRCDIR(src/cd-info.c)

View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
#$Id: check_cd_read.sh,v 1.9 2007/11/16 22:25:08 flameeyes Exp $ #$Id: check_cd_read.sh,v 1.10 2007/12/28 02:11:01 rocky Exp $
# #
# Copyright (C) 2003, 2005 Rocky Bernstein <rocky@panix.com> # Copyright (C) 2003, 2005 Rocky Bernstein <rocky@panix.com>
# #
@@ -23,7 +23,11 @@ if test -z $srcdir ; then
srcdir=`pwd` srcdir=`pwd`
fi fi
. check_common_fn if test "X$top_builddir" = "X" ; then
top_builddir=`pwd`/..
fi
. ${top_builddir}/test/check_common_fn
if test ! -x ../src/cd-read ; then if test ! -x ../src/cd-read ; then
exit 77 exit 77

View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
#$Id: check_cue.sh.in,v 1.30 2007/11/16 22:25:08 flameeyes Exp $ #$Id: check_cue.sh.in,v 1.31 2007/12/28 02:11:01 rocky Exp $
# Tests to see that BIN/CUE and cdrdao TOC file iamge reading is correct # Tests to see that BIN/CUE and cdrdao TOC file iamge reading is correct
# (via cd-info). # (via cd-info).
@@ -15,7 +15,11 @@ if test "X$top_srcdir" = "X" ; then
top_srcdir=`pwd`/.. top_srcdir=`pwd`/..
fi fi
. check_common_fn if test "X$top_builddir" = "X" ; then
top_builddir=`pwd`/..
fi
. ${top_builddir}/test/check_common_fn
if test ! -x $top_srcdir/src/cd-info ; then if test ! -x $top_srcdir/src/cd-info ; then
exit 77 exit 77

View File

@@ -1,11 +1,15 @@
#!/bin/sh #!/bin/sh
#$Id: check_iso.sh.in,v 1.13 2007/11/16 22:25:09 flameeyes Exp $ #$Id: check_iso.sh.in,v 1.14 2007/12/28 02:11:01 rocky Exp $
if test -z $srcdir ; then if test -z $srcdir ; then
srcdir=`pwd` srcdir=`pwd`
fi fi
. check_common_fn if test "X$top_builddir" = "X" ; then
top_builddir=`pwd`/..
fi
. ${top_builddir}/test/check_common_fn
if test ! -x ../src/iso-info ; then if test ! -x ../src/iso-info ; then
exit 77 exit 77

View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
#$Id: check_nrg.sh.in,v 1.16 2007/11/16 22:25:09 flameeyes Exp $ #$Id: check_nrg.sh.in,v 1.17 2007/12/28 02:11:01 rocky Exp $
if test "@VCDINFO_LIBS@X" != "X" ; then if test "@VCDINFO_LIBS@X" != "X" ; then
vcd_opt='--no-vcd' vcd_opt='--no-vcd'
@@ -13,7 +13,11 @@ if test "X$top_srcdir" = "X" ; then
top_srcdir=`pwd`/.. top_srcdir=`pwd`/..
fi fi
. check_common_fn if test "X$top_builddir" = "X" ; then
top_builddir=`pwd`/..
fi
. ${top_builddir}/test/check_common_fn
if test ! -x $top_srcdir/src/cd-info ; then if test ! -x $top_srcdir/src/cd-info ; then
exit 77 exit 77

View File

@@ -1,11 +1,15 @@
#!/bin/sh #!/bin/sh
#$Id: check_opts.sh,v 1.9 2007/11/16 22:25:08 flameeyes Exp $ #$Id: check_opts.sh,v 1.10 2007/12/28 02:11:01 rocky Exp $
# Check cd-info options # Check cd-info options
if test -z "$srcdir" ; then if test -z "$srcdir" ; then
srcdir=`pwd` srcdir=`pwd`
fi fi
. check_common_fn if test "X$top_builddir" = "X" ; then
top_builddir=`pwd`/..
fi
. ${top_builddir}/test/check_common_fn
if test ! -x ../src/cd-info ; then if test ! -x ../src/cd-info ; then
exit 77 exit 77