Mercurial > mplayer.hg
annotate libmpdvdkit2/config.h @ 9899:248c478a0699
typo fix
author | nexus |
---|---|
date | Thu, 10 Apr 2003 08:34:43 +0000 |
parents | acab62e4e026 |
children | 483e955893b8 |
rev | line source |
---|---|
7031 | 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 | |
7391
24c517eeac25
hpux scsi dvd support by Martin Gansser <mgansser@ngi.de>
alex
parents:
7031
diff
changeset
|
34 /* HPUX SCSI headers. */ |
9489
acab62e4e026
HPUX DVD fix by Martin Gansser <MGansser@rand.de>, checked by Arpi.
diego
parents:
7391
diff
changeset
|
35 #undef HPUX_SCTL_IO |
7391
24c517eeac25
hpux scsi dvd support by Martin Gansser <mgansser@ngi.de>
alex
parents:
7031
diff
changeset
|
36 |
7031 | 37 /* Have userspace SCSI headers. */ |
38 #undef SOLARIS_USCSI | |
39 | |
40 /* Define if Linux-like dvd_struct is defined. */ | |
41 #define HAVE_LINUX_DVD_STRUCT 1 | |
42 | |
43 /* Define if BSD-like dvd_struct is defined. */ | |
44 #undef HAVE_BSD_DVD_STRUCT | |
45 | |
46 #endif | |
47 | |
48 /* assert support */ | |
49 #undef HAVE_ASSERT_H | |
50 | |
51 #ifndef HAVE_ASSERT_H | |
52 #define assert( ... ) do {} while(0) | |
53 #endif |