diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-16 20:51:19 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-16 20:51:19 +0000 |
commit | bc7f42e95e56f173540cff9bfa51669b193dc337 (patch) | |
tree | e3a922215d713240eb89cb969d3cb6920da17924 /src | |
parent | 4bd0dcfca0534098b03013d6e1eaa178ab42133d (diff) | |
download | xine-lib-bc7f42e95e56f173540cff9bfa51669b193dc337.tar.gz xine-lib-bc7f42e95e56f173540cff9bfa51669b193dc337.tar.bz2 |
change suggested by Bill Fink: you can run Linux on Sun SPARC machines, so
just testing for __sun might not be enough
CVS patchset: 6275
CVS date: 2004/03/16 20:51:19
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_rtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c index ce9bac401..8e851cb16 100644 --- a/src/input/input_rtp.c +++ b/src/input/input_rtp.c @@ -80,7 +80,7 @@ #include <stdlib.h> #include <net/if.h> -#ifdef __sun +#if defined (__SVR4) && defined (__sun) # include <sys/sockio.h> #endif |