diff options
author | anholt <anholt@FreeBSD.org> | 2003-03-13 07:08:50 +0000 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2003-03-13 07:08:50 +0000 |
commit | 701ee3b071df93437ee66d0b5ff7f5880b8376e0 (patch) | |
tree | c2a43ecae1267ec4116f73732441f4999e278276 | |
parent | b6c727d2f19c918832ed020bf637c8400e9a45d5 (diff) | |
download | FreeBSD-ports-701ee3b071df93437ee66d0b5ff7f5880b8376e0.zip FreeBSD-ports-701ee3b071df93437ee66d0b5ff7f5880b8376e0.tar.gz |
Include keysym.h not keysymdef.h, to get XK_ISO_Lock with XFree86 4.3.0.
Submitted by: bento/kris
-rw-r--r-- | editors/elvis/files/patch-ac | 11 | ||||
-rw-r--r-- | graphics/opendx/files/patch-NumberInput.h | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/editors/elvis/files/patch-ac b/editors/elvis/files/patch-ac new file mode 100644 index 0000000..1738266 --- /dev/null +++ b/editors/elvis/files/patch-ac @@ -0,0 +1,11 @@ +--- guix11/guix11.h.orig Wed Mar 12 22:40:16 2003 ++++ guix11/guix11.h Wed Mar 12 22:40:25 2003 +@@ -12,7 +12,7 @@ + #include <X11/Xlib.h> + #include <X11/Xutil.h> + #define XK_MISCELLANY +-#include <X11/keysymdef.h> ++#include <X11/keysym.h> + #include <X11/Xatom.h> + #include <X11/Xresource.h> + #ifdef NEED_XOS_H diff --git a/graphics/opendx/files/patch-NumberInput.h b/graphics/opendx/files/patch-NumberInput.h new file mode 100644 index 0000000..a0b6685 --- /dev/null +++ b/graphics/opendx/files/patch-NumberInput.h @@ -0,0 +1,11 @@ +--- src/uipp/widgets/NumberInput.h.orig Wed Mar 12 22:56:49 2003 ++++ src/uipp/widgets/NumberInput.h Wed Mar 12 23:06:33 2003 +@@ -12,7 +12,7 @@ + #include <stdlib.h> /* strtod() */ + #include <errno.h> /* errno, ERANGE */ + #define XK_MISCELLANY 1 +-#include <X11/keysymdef.h> ++#include <X11/keysym.h> + + #if defined(__cplusplus) || defined(c_plusplus) + extern "C" { |