diff options
author | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-10-21 20:42:59 +0000 |
---|---|---|
committer | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-10-21 20:42:59 +0000 |
commit | c387f20bacfe8e86f602bba59936db590582fc55 (patch) | |
tree | 9a7642b22a48fb190b6ebdda7923d656d41965fb | |
parent | 11197eb4a22f44e101c218161f7a171ccb90442f (diff) |
Notes
-rw-r--r-- | www/w3m/files/patch-au | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/www/w3m/files/patch-au b/www/w3m/files/patch-au new file mode 100644 index 000000000000..d061e70c3b1e --- /dev/null +++ b/www/w3m/files/patch-au @@ -0,0 +1,16 @@ +--- terms.c.orig Sun Oct 22 00:46:08 2000 ++++ terms.c Sun Oct 22 01:23:53 2000 +@@ -17,7 +17,13 @@ + #include <gpm.h> + #endif /* USE_GPM */ + #ifdef USE_SYSMOUSE ++#include <osreldate.h> ++#if (__FreeBSD_version >= 400017) ++#include <sys/consio.h> ++#include <sys/fbio.h> ++#else + #include <machine/console.h> ++#endif + int (*sysm_handler) (int x, int y, int nbs, int obs); + static int cwidth = 8, cheight = 16; + static int xpix, ypix, nbs, obs = 0; |