diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2003-01-15 16:08:44 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2003-01-15 16:08:44 +0000 |
commit | 0512a0d2a58e4ad611af1a50d10da4117db14b54 (patch) | |
tree | c434d4b7009342b623040cb9a421b2d134a94157 /src/input/input_dvb.c | |
parent | 817dc65373b33a704dd2ea2309c8599096627f68 (diff) | |
download | xine-lib-0512a0d2a58e4ad611af1a50d10da4117db14b54.tar.gz xine-lib-0512a0d2a58e4ad611af1a50d10da4117db14b54.tar.bz2 |
- Must include <sys/ioccom.h> on solaris to get the _IOC..() macros for
ioctl command codes
- Must include <inttypes.h> on solaris, there is no <stdint.h>
CVS patchset: 3927
CVS date: 2003/01/15 16:08:44
Diffstat (limited to 'src/input/input_dvb.c')
-rw-r--r-- | src/input/input_dvb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c index 7dd052e54..4233399b7 100644 --- a/src/input/input_dvb.c +++ b/src/input/input_dvb.c @@ -36,6 +36,9 @@ #include <errno.h> #include <sys/time.h> #include <sys/ioctl.h> +#ifdef __sun +#include <sys/ioccom.h> +#endif #include <sys/poll.h> /* These will eventually be #include <linux/dvb/...> */ |