Commit Graph

110 Commits

Author SHA1 Message Date
rocky
d364eb5f96 Automake woes. Think I have PACKAGE and VERSION set right now.
lib/Makefile.am: we'll say libcdio has new interfaces
2004-11-06 12:29:37 +00:00
rocky
152d8508b7 Common output routine in utility programs as a concession to
environments which may no have or prefer stdout/stderr such as XBOX.
2004-11-04 10:08:23 +00:00
rocky
e1a034f5d8 Set some package strings. 2004-11-01 08:53:47 +00:00
rocky
4ca6d1cdd1 Typo. 2004-11-01 08:35:22 +00:00
rocky
465e0373ee configure.ac, lib/*, example/*.c, src/iso-read.c:
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.
2004-10-31 13:58:44 +00:00
rocky
b3b2ded91b Fix up Joliet detection or lack thereof. 2004-10-31 03:10:25 +00:00
rocky
299e2ea2f9 configure.ac, iso9660.c: test for tzname variable.
configure.ac, iso9660_fs.c: test for nls_langinfo() and #include <langinfo.h>
iso-info.c: some OS's need 2 args for multi-arg defines.
2004-10-30 02:55:17 +00:00
rocky
9d94b71a53 *: test for daylight and timezone
configure.ac: test for stdbool.h
2004-10-30 00:38:43 +00:00
rocky
6869e97bb2 configure.ac: Add --disable-joliet and disable joliet if iconv is not around
iso9660_fs.c: Setting string length on of UCBE wrong?
test/*: add joliet regression test.
2004-10-28 11:13:40 +00:00
rocky
f8e1ad674d Remove some gettext fascism. 2004-10-26 09:00:11 +00:00
rocky
589fba32d9 Solaris fixes
test/vcd_demo.right: fix when vcd-info is not installed.
2004-10-26 08:32:28 +00:00
rocky
3cc13c287f Test for presence of tzset(). 2004-10-26 06:33:49 +00:00
rocky
fa880ca82a Makefile.am: "make test" now means the same thing as "make check"
configure.ac: make sure we test for iconv. gettext isn't all that important
	      right now.
2004-10-24 14:32:50 +00:00
rocky
ca786556c7 Try to reduce duplicate header tests. 2004-10-24 11:32:21 +00:00
rocky
4df410a412 configure.ac: test for intl and iconv needed for Joliet support
iso-info.c: add --no-joliet option
Doxyfile*, configure.ac: Automatically update some ofthe Doxyfile information
2004-10-24 11:20:30 +00:00
rocky
a492bb4ab6 First cut at Joliet support for ISO 9660 images. More work is needed
to integrate this into CD reading.
2004-10-23 20:55:08 +00:00
rocky
c1905e6879 configure.ac: now in 0.71cvs
*.c: lint-like changes. Tested on Sun's SUNPRO cc compiler.
     Removed feild initialization lingo (even if it is C99).
2004-09-03 23:20:11 +00:00
rocky
a14c20644b Update for release. 2004-09-01 23:39:17 +00:00
rocky
1c08b4e69b Another attempt at a pkgconfig bug workaround 2004-08-19 02:50:35 +00:00
rocky
34749d84ae Fixes for making libcdio work with pkg-config on Darwin when linking
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.
2004-08-19 01:12:27 +00:00
rocky
b1cf0ebe7e Don't know how $target_os got in there, but it's not
defined. $host_os will work although there probably is something better
for cross-compiling.
2004-06-27 16:25:16 +00:00
rocky
79ea450a56 Add type for holding MCN and ISRC. Add type for session
Replace magic constant 100 with CDIO_MAX_TRACK+1 where appropriate.

_cdio_osx: save session number and presumably some tighter coding.
nrg.c: make sure we add zero byte to end of MCN.
2004-06-27 15:29:20 +00:00
rocky
1e59a360a2 thesin says the double -Wl,-framework is necessary when building
vcdimager.
2004-06-26 19:26:36 +00:00
rocky
6bf47238f6 configure.ac: we're now in 0.70cvs
scsi_mmc.h: add doxygen comment.
2004-06-26 01:08:46 +00:00
rocky
8f47e3671e Get ready for real 0.69 release. 2004-06-25 21:26:34 +00:00
rocky
90c266d1ad libvcdinfo is used by cd-info not cd-read. 2004-06-19 16:17:09 +00:00
rocky
3146cb61a3 Allow FreeBSD 5.X: Heiner says it sort of works. 2004-06-12 17:33:46 +00:00
rocky
eaa9f05aec It is a tad nicer to switch off --without-versioned-libs when GNU ld
isn't around rather than give and error and halt.
2004-06-11 02:22:13 +00:00
rocky
692ff69339 Revert last change which is at least wrong for me. 2004-06-02 08:23:55 +00:00
thesin
08d7ceae64 Few fixed for the big rename and fixed a long standing mmmm thing that bothered me, -I-I../lib ;) 2004-06-02 04:52:55 +00:00
thesin
b0416a3eff Fix compile on OS X 10.3, should work on 10.2 and 10.3, still testing for 10.1, OS X Drivers still incomplete this is just to fix compiling. 2004-05-31 15:21:48 +00:00
rocky
08863d33bb It's now AC_HEADER_STDC rather than AC_STDC_HEADERS. Woopie doo. 2004-05-09 17:03:27 +00:00
rocky
739b049e49 Make sure entire warning is printed. 2004-05-08 10:50:51 +00:00
rocky
e41457c9ff Warn when cd-drive, cd-info, cd-read, iso-info and iso-read don't get built. 2004-05-07 11:00:27 +00:00
rocky
582db275fe CDRDAO->cdrdao. 2004-05-04 12:06:40 +00:00
rocky
c286bec8ee Another patch from Heiner Eichmann. 2004-05-03 03:22:24 +00:00
rocky
12762d2d7c *.{c,h}: add cdio_get_drive_cap to determine what kind of CDROM device
we've got.

README.libcdio: suggest stonger making a separate package for cd-info
configure.ac: we are in 0.69cvs now
2004-04-22 03:24:38 +00:00
rocky
058cc085e1 0.68 release. 2004-03-24 00:06:12 +00:00
rocky
6c9b708772 Add C-Preprocessor define CDIO_VERSION so this can easily be tested in
C/C++ applications.
2004-03-20 12:41:23 +00:00
rocky
b0bc1182d0 Check for GNU ld if --with-versioned-libs. 2004-03-20 03:15:35 +00:00
rocky
2a3d73ca21 Changes to make -mno-cygwin (no POSIX emulation on M$) work. In the
process, in configure.ac might have broken cygwin when -mno-cygwin
isn't used. We'll see.
2004-03-10 11:53:10 +00:00
rocky
31aca01ae9 We're 0.68cvs now. 2004-03-06 03:51:19 +00:00
rocky
ee6a49f070 Get ready for 0.67 release. 2004-03-02 00:57:52 +00:00
rocky
36d792ea8e FreeBSD/NetBSD too gets versioned library variables. 2004-03-01 01:29:13 +00:00
rocky
c57db82a2c Add test of iso-info program (which means, of course, another test of
libiso9660).
2004-02-29 04:41:57 +00:00
rocky
223363034c If GNU make isn't found, then we should have --without-versioned-libs
FreeBSD/NetBSD (but now BSDI) don't use versioned libs.
2004-02-28 03:57:41 +00:00
rocky
6b18fe4222 Bug in setting enable_versioned_libs. 2004-02-27 02:53:25 +00:00
rocky
b9289269d0 configure.ac, Makefile.am: don't do library symbol version on BSDis variants
libcdio.texi: minor example improvements.
2004-02-27 02:35:24 +00:00
rocky
513b47f4b9 Better wording of what happens when libvcdinfo is not around. 2004-02-25 02:01:05 +00:00
rocky
25a8e3a407 Give URLs for vcdimager and libcddb when packages are not found or
are new enough.
2004-02-22 09:34:15 +00:00