diff options
author | Thomas Klausner <tk@giga.or.at> | 2014-05-19 09:43:44 +0300 |
---|---|---|
committer | Thomas Klausner <tk@giga.or.at> | 2014-05-19 09:43:44 +0300 |
commit | bbf74c1d5bd0b26874cbda9d7f047b422c04fb0b (patch) | |
tree | 536ce7fadbcaad21ce89777f85e1fd903bccb0e7 /contrib | |
parent | a03461a652590c2e341bcd034eb539640599f09e (diff) | |
download | xine-lib-bbf74c1d5bd0b26874cbda9d7f047b422c04fb0b.tar.gz xine-lib-bbf74c1d5bd0b26874cbda9d7f047b422c04fb0b.tar.bz2 |
FreeBSD/DragonFlyBSD compilation fix for libdha
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libdha/sysdep/pci_freebsd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/libdha/sysdep/pci_freebsd.c b/contrib/libdha/sysdep/pci_freebsd.c index 9ad4b15f2..d4a8b6716 100644 --- a/contrib/libdha/sysdep/pci_freebsd.c +++ b/contrib/libdha/sysdep/pci_freebsd.c @@ -8,7 +8,9 @@ /* machine/console.h seems to be outdated by recent FreeBSD * * however pcvt_ioctl.h seems to exist for very long time */ /* #include <machine/console.h>*/ -#include <machine/pcvt_ioctl.h> +/* #include <machine/pcvt_ioctl.h> + * - deprecated, replaced with sys/kbio.h (xine bug #534) */ +#include <sys/kbio.h> #ifndef GCCUSESGAS #define GCCUSESGAS #endif |