configure.ac: remove AIX driver for now - it doesn't really work
remove some (but not all) of the valgrind errors in cd-text
Some stylistic things, doxygen comment improvements typos, etc.
src: Cleaner way to get usage and allow it to be customized to a particular
name
configure.ac: add --with-cd-paranoia-name to allow customization of the
cd-paranoia name.
More work is needed to get the binary renamed.
First paranoia regression test. It's run automatically as it assumes
that you have a *flawless* CD-DA in a drive.
*.{c,h}: more integration toward libcdio routines. In particular remove
swap16 and swap32.
iso-info takes options -l and -f to be a little more like isoinfo
configure.ac now allows for disabling cd-paranoia, iso-read,
iso-drive, cd-drive.
Regression tests adjusted to new output and more drive reading capabilities.
Reorganize directory structure for inclusion of cd-paranoia. Works for
GNU/Linux. Other OS's may be broken. Regression test output needs to
be adjusted too.
Move:
lib/driver (split off of lib)
lib/iso9660 (split off of lib)
Add from paranoia:
lib/cdda_interface
lib/paranoia
src/paranoia
Also made some small changes to capability indentification to show
more reading capabilties and show that.
cd-info now shows the total disc size.
start to separate compiler/OS deficiencies into "portable.h"
configure.ac, lib/iso9660_fs.c:
use AM_LANGINFO_CODESET rather than code in our ouwn langinfo.h and
CODESET tests.
vcdimager and when linking just libcdio. From Steven M. Schultz:
I blew a couple minutes tinkering with libcdio.pc and found that
manually adding a quote character (not even a matched set of quotes!)
around the second -framework was enough.
What works for now is manually editing libcdio.pc after it's been
installed:
Libs: -L${libdir} -lcdio -lm -Wl,-framework -Wl,CoreFoundation -Wl,-framework -Wl,IOKit
to:
Libs: -L${libdir} -lcdio -lm -Wl,-framework -Wl,CoreFoundation "-Wl,-framework" -Wl,IOKit
is enough to get vcdimager compiled and linked.
Appears that the thing to do is somehow get the quotes into
libcdio.pc but not into $LIBS - or something like that at any rate.