Commit 204fe9b5 authored by Rocky Bernstein's avatar Rocky Bernstein

In libcdio < 0.76

#include <cdio/cdda.h> /* Pulls in #include <cdio/paranoia.h> */

In libcdio >= 0.76

#include <cdio/paranoia.h> /* Pulls in #include <cdio/cdda.h> */

and

#include <cdio/cdda.h>     /* These lines can be | In either order    */
#include <cdio/paranoia.h> /* in either order    | these lines can be */

So that's what we go with. See the libcdio-devel@gnu.org mailing list
for more information on why the change in 0.76

parent b638a3db
......@@ -66,6 +66,7 @@
#if LIBCDIO_VERSION_NUM >= 72
#include <cdio/cdda.h>
#include <cdio/paranoia.h>
#else
#define CdIo_t CdIo
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment