summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJuergen Keil <jkeil@users.sourceforge.net>2001-07-17 13:28:10 +0000
committerJuergen Keil <jkeil@users.sourceforge.net>2001-07-17 13:28:10 +0000
commitd55a686c1b54f6894685c17c648c3f1dbf2b5e78 (patch)
tree6bdd75823b6dc8c84418a9fc93a3c846ce1e038c /src
parent50ce564235215b90890b81fcdcf10603df898fd6 (diff)
downloadxine-lib-d55a686c1b54f6894685c17c648c3f1dbf2b5e78.tar.gz
xine-lib-d55a686c1b54f6894685c17c648c3f1dbf2b5e78.tar.bz2
AM_CHECK_CDROM_IOCTLS, add test for Solaris cdrom ioctls.
Fix typo in input_dvd.c/input_vcd.c (HAVE_SYS_CDIO -> HAVE_SYS_CDIO_H) CVS patchset: 290 CVS date: 2001/07/17 13:28:10
Diffstat (limited to 'src')
-rw-r--r--src/input/input_dvd.c4
-rw-r--r--src/input/input_vcd.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index bbd302ca4..fb8f198ba 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_dvd.c,v 1.14 2001/07/16 19:36:00 mshopf Exp $
+ * $Id: input_dvd.c,v 1.15 2001/07/17 13:28:10 jkeil Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -41,7 +41,7 @@
# include <linux/config.h> /* Check for DEVFS */
# include <linux/cdrom.h>
#endif
-#if ! defined (HAVE_LINUX_CDROM_H) && ! defined (HAVE_SYS_CDIO)
+#if ! defined (HAVE_LINUX_CDROM_H) && ! defined (HAVE_SYS_CDIO_H)
#error "you need to add cdrom / VCD support for your platform to input_vcd and configure.in"
#endif
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c
index 89e08eee0..2058f63ad 100644
--- a/src/input/input_vcd.c
+++ b/src/input/input_vcd.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_vcd.c,v 1.14 2001/07/16 19:36:00 mshopf Exp $
+ * $Id: input_vcd.c,v 1.15 2001/07/17 13:28:10 jkeil Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -43,7 +43,7 @@
# include <sys/cdrio.h>
# endif
#endif
-#if ! defined (HAVE_LINUX_CDROM_H) && ! defined (HAVE_SYS_CDIO)
+#if ! defined (HAVE_LINUX_CDROM_H) && ! defined (HAVE_SYS_CDIO_H)
#error "you need to add cdrom / VCD support for your platform to input_vcd and configure.in"
#endif