Configuration for use of libcdio on cygwin. Thanks Rocky Bernstein.

This commit is contained in:
2012-10-02 13:47:05 +00:00
parent 002dfc88e4
commit 548128f7d2
3 changed files with 23 additions and 7 deletions

View File

@ -307,10 +307,18 @@ then
fi
case $host_os in
cygwin*|mingw*)
default_libcdio=yes
;;
*)
default_libcdio=no
;;
esac
AH_TEMPLATE([Libburn_use_libcdiO], [Define to use libcdio as system adapter])
AC_ARG_ENABLE(libcdio,
[ --enable-libcdio Enable EXPERIMENTAL use of libcdio as system adapter, default=no],
, enable_libcdio=no)
[ --enable-libcdio Enable use of libcdio as system adapter, default=no (except on MSWindows)],
, enable_libcdio=$default_libcdio)
if test x$enable_libcdio = xyes; then
dnl Check whether there is libcdio-devel and libcdio-runtime.
dnl If not, erase this macro
@ -327,7 +335,7 @@ then
echo "WARNING: could not enable use of libcdio as system adapter"
fi
else
echo "enabled EXPERIMENTAL use of libcdio as system adapter"
echo "enabled use of libcdio as system adapter"
fi
if test x$LIBCDIO_DEF = x-DLibburn_use_libcdiO
then