comparison libmpdvdkit2/config.h @ 7031:a1ff955aa49b

importing libmpdvdkit files
author arpi
date Fri, 16 Aug 2002 22:43:44 +0000
parents
children 24c517eeac25
comparison
equal deleted inserted replaced
7030:660a8439c679 7031:a1ff955aa49b
1
2 /* Version number of package */
3 #define VERSION "1.2.2"
4 #define HAVE_UNISTD_H 1
5
6 /* Define if your processor stores words with the most significant
7 byte first (like Motorola and SPARC, unlike Intel and VAX). */
8 #ifdef HAVE_MPLAYER
9
10 #include "../config.h"
11
12 #else
13
14 #undef WORDS_BIGENDIAN
15
16 /* Define if you have the <stddef.h> header file. */
17 #define HAVE_STDDEF_H 1
18
19 /* Define if <sys/dvdio.h> defines dvd_struct. */
20 #undef DVD_STRUCT_IN_SYS_DVDIO_H
21
22 /* Define if <sys/cdio.h> defines dvd_struct. */
23 #undef DVD_STRUCT_IN_SYS_CDIO_H
24
25 /* Define if <linux/cdrom.h> defines DVD_STRUCT. */
26 #define DVD_STRUCT_IN_LINUX_CDROM_H 1
27
28 /* Define if <dvd.h> defines DVD_STRUCT. */
29 #undef DVD_STRUCT_IN_DVD_H
30
31 /* Define if <extras/BSDI_dvdioctl/dvd.h> defines DVD_STRUCT. */
32 #undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H
33
34 /* Have userspace SCSI headers. */
35 #undef SOLARIS_USCSI
36
37 /* Define if Linux-like dvd_struct is defined. */
38 #define HAVE_LINUX_DVD_STRUCT 1
39
40 /* Define if BSD-like dvd_struct is defined. */
41 #undef HAVE_BSD_DVD_STRUCT
42
43 #endif
44
45 /* assert support */
46 #undef HAVE_ASSERT_H
47
48 #ifndef HAVE_ASSERT_H
49 #define assert( ... ) do {} while(0)
50 #endif