diff options
author | Timothy Pearson <[email protected]> | 2014-01-29 12:32:33 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-01-29 12:32:33 -0600 |
commit | aa821e987c94c007d54c3ff125838da509684faf (patch) | |
tree | d8967bdd9a910964290bd4e30483c7d4001fd262 /configure.in.in | |
parent | feab120fa9cbead2aef624dcec6770d6a28911df (diff) | |
download | kaffeine-aa821e987c94c007d54c3ff125838da509684faf.tar.gz kaffeine-aa821e987c94c007d54c3ff125838da509684faf.zip |
Add check for libcdio >= 0.90
This relates to Bug 1853
Clean up autogenerated autotools files
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in.in b/configure.in.in index 9751e7c..5da2d91 100644 --- a/configure.in.in +++ b/configure.in.in @@ -10,5 +10,10 @@ if test "$build_arts" = "yes"; then AC_SUBST(LIB_ARTS) fi +KDE_CHECK_HEADER(cdio/paranoia/cdda.h, [have_libcdio_090="yes"], [have_libcdio_090="no"]) +if test "x$have_libcdio_090" = "xyes"; then + AC_DEFINE(HAVE_LIBCDIO_090, 1, [have libcdio >= 0.90]) +fi + KDE_INIT_DOXYGEN([The API Reference], [Version $VERSION]) |