filename | configure.in |
changeset | 1097:d4807997e450 |
prev | 1074:397d77b6e346 |
next | 1107:7b279d10f46f |
author | nkeynes |
date | Sun Jan 31 18:35:06 2010 +1000 (11 years ago) |
permissions | -rw-r--r-- |
last change | Refactor CDROM host support - Completely separate GDROM hardware (in gdrom/gdrom.c) from generic CDROM support (now in drivers/cdrom) - Add concept of 'sector sources' that can be mixed and matched to create cdrom discs (makes support of arbitrary disc types much simpler) |
file | annotate | diff | log | raw |
1.1 --- a/configure.in Tue Jul 21 20:53:05 2009 +10001.2 +++ b/configure.in Sun Jan 31 18:35:06 2010 +10001.3 @@ -357,6 +357,9 @@1.4 AM_CONDITIONAL(CDROM_LINUX, [test "x$CDROM_DRIVER" = "xlinux"])1.5 AM_CONDITIONAL(CDROM_OSX, [test "x$CDROM_DRIVER" = "xosx"])1.6 AM_CONDITIONAL(CDROM_NONE, [test "x$CDROM_DRIVER" = "x"])1.7 +if test "x$CDROM_DRIVER" = "xlinux"; then1.8 + AC_DEFINE([HAVE_LINUX_CDROM],1,[Using the linux native CDROM driver])1.9 +fi1.11 AC_CHECK_HEADER([linux/joystick.h], [1.12 HAVE_LINUX_JOYSTICK_H=yes
.