Hi @sebras, libcdaudio is looking for a maintainer. Would you accept becoming a maintainer of the project, and apply the patch yourself?
Perfect! However, cdcd/libcdaudio is looking for a maintainer. Would you accept becoming a maintainer, so that you can integrate the change directly?
Hello, In src/compat.h we define: #ifdef CDROMEJECT #define CDAUDIO_EJECT CDROMEJECT #endif So we really use CDROMEJECT. The error message comes from this function in src/cdaudio.c: /* Eject the tray */ int cd_eject(int cd_desc) { int r = ioctl(cd_desc, CDAUDIO_EJECT); if(r) { printf("ioctl returned %d\n", r); return -1; } return 0; } What we could add here is an additional print of the errno (with e.g. perror()) to better understand the error. Note that libcdaudio and cdcd are currently in search...
Hello, I have not checked it but there are certainly lots of things to do in the...
Well done, I confirm that this is a problem. Please feel free to submit a fix. I'm...
.gitignore: ignore generated files.
Clean & make ./autogen.sh nicer.
Do not depend on bash.