diff options
author | Steve Price <steve@FreeBSD.org> | 2000-12-11 02:25:33 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-12-11 02:25:33 +0000 |
commit | a72737d2f32185a85ace436e62dbcc21ccf3bcaa (patch) | |
tree | 247950fa395d5b12f86ae0f68d92a284cf5c5eec /graphics/fxtv | |
parent | f7a5394377c63a5ae99303f80c369798f579091f (diff) | |
download | ports-a72737d2f32185a85ace436e62dbcc21ccf3bcaa.tar.gz ports-a72737d2f32185a85ace436e62dbcc21ccf3bcaa.zip |
Notes
Diffstat (limited to 'graphics/fxtv')
-rw-r--r-- | graphics/fxtv/files/patch-ad | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/fxtv/files/patch-ad b/graphics/fxtv/files/patch-ad new file mode 100644 index 000000000000..35007908089c --- /dev/null +++ b/graphics/fxtv/files/patch-ad @@ -0,0 +1,20 @@ +--- remote.c.orig Sun Dec 10 14:02:55 2000 ++++ remote.c Sun Dec 10 14:06:22 2000 +@@ -45,7 +45,16 @@ + #include <sys/time.h> + #include <sys/socket.h> + #include <sys/un.h> +-#include <machine/mouse.h> ++#ifdef __FreeBSD__ ++# include <sys/param.h> ++# if __FreeBSD_version >= 500013 ++# include <sys/mouse.h> ++# else ++# include <machine/mouse.h> ++# endif ++#else ++# include <machine/mouse.h> ++#endif + #include <X11/Intrinsic.h> + #include "tvdebug.h" + #include "tvutil.h" |