Bertrand Duret <[EMAIL PROTECTED]> wrote: > Hi, > > A new release of BBCD is out: 0.3.0. > ( http://tranber1.free.fr/bbcd.html ) > > The main changes are: > > - Use of a cross-platform library to manage CD-drive (libcdaudio), so BBCD > *could* be cross-platform too. But I can only test it against linux...
If you make the following changes, it will compile and run on NetBSD. In fact, I'm quite sure that you should make the change below anyway, as unistd.h should be used rather than sys/unistd.h anyway: --- CD_GUI.cc.orig Mon Jun 24 16:53:11 2002 +++ CD_GUI.cc Fri Jul 5 12:43:50 2002 @@ -23,7 +23,7 @@ #include "CD_Ctrl.hh" #include <sys/types.h> -#include <sys/unistd.h> +#include <unistd.h> #include <X11/Xlib.h> #include <X11/Xresource.h> -Jan -- "Ford," he said, "you're turning into a penguin. Stop it."
