diff options
author | nox <nox@FreeBSD.org> | 2008-03-22 06:20:07 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2008-03-22 06:20:07 +0800 |
commit | 0c1a5b3a5f4ad9f19eb7e591592e6411762f4935 (patch) | |
tree | f10591a5c3fa258019220c9a3d5e58172fb8e55f | |
parent | 252a73d3af4d88362749d4b2d3d28add7e58d216 (diff) | |
download | freebsd-ports-gnome-0c1a5b3a5f4ad9f19eb7e591592e6411762f4935.tar.gz freebsd-ports-gnome-0c1a5b3a5f4ad9f19eb7e591592e6411762f4935.tar.zst freebsd-ports-gnome-0c1a5b3a5f4ad9f19eb7e591592e6411762f4935.zip |
- Fix -curses typo concerning ctrl-d and ctrl-t handling
- Bump PORTREVISION
Obtained from: qemu cvs
-rw-r--r-- | emulators/qemu-devel/Makefile | 2 | ||||
-rw-r--r-- | emulators/qemu-devel/files/patch-curses_keys.h | 17 |
2 files changed, 18 insertions, 1 deletions
diff --git a/emulators/qemu-devel/Makefile b/emulators/qemu-devel/Makefile index 550013e92b88..5a4ec7c0533f 100644 --- a/emulators/qemu-devel/Makefile +++ b/emulators/qemu-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME= qemu PORTVERSION= 0.9.1s.20080302 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= http://qemu.org/:release \ http://qemu-forum.ipi.fi/qemu-snapshots/:snapshot \ diff --git a/emulators/qemu-devel/files/patch-curses_keys.h b/emulators/qemu-devel/files/patch-curses_keys.h new file mode 100644 index 000000000000..697fc53fb98d --- /dev/null +++ b/emulators/qemu-devel/files/patch-curses_keys.h @@ -0,0 +1,17 @@ +Index: qemu/curses_keys.h +=================================================================== +RCS file: /sources/qemu/qemu/curses_keys.h,v +retrieving revision 1.1 +retrieving revision 1.2 +diff -u -p -r1.1 -r1.2 +--- curses_keys.h 10 Feb 2008 16:33:13 -0000 1.1 ++++ curses_keys.h 18 Mar 2008 06:55:27 -0000 1.2 +@@ -198,7 +198,7 @@ int curses2keycode[CURSES_KEYS] = { + + [0x001] = 30 | CNTRL, /* Control + a */ + [0x013] = 31 | CNTRL, /* Control + s */ +- [0x014] = 32 | CNTRL, /* Control + d */ ++ [0x004] = 32 | CNTRL, /* Control + d */ + [0x006] = 33 | CNTRL, /* Control + f */ + [0x007] = 34 | CNTRL, /* Control + g */ + [0x008] = 35 | CNTRL, /* Control + h */ |