On 06/08/10 00:48, Ken Moffat wrote: > cdrdao-1.2.3 - looks as if gcc-4.5 is breaking this, I've got a patch to > dao/ScsiIf-linux to add in<sys/types.h> and<sys/stat.h> based on > part of the pld gcc4 patch. >
It's a change to glibc that has caused that problem. One of glibc's headers used to #include <sys/stat.h>, which cdrdao's dao/ScsiIf-linux.cc needed. glibc's headers don't pull in sys/stat.h so cdrdao's dao/ScsiIf-linux.cc needs to be told to include it: sed -i '/<sys/a#include <sys/stat.h>' dao/ScsiIf-linux.cc Andy -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
