| |
Changeset 99
- Timestamp:
- 01/14/08 16:53:22
(10 months ago)
- Author:
- mike
- Message:
[fix] 0.9.1 host-cocoa fix for QEMU 0.9.1 (andreasf) (#70)
[fix] 0.9.1 hd-led patch fix for QEMU 0.9.1 (andreasf) (#69)
[fix] 0.9.1 vl.h fix for QEMU 0.9.1 (andreasf) (#68)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r96 |
r99 |
|
| | 1 | Q-0.9.1d99 |
|---|
| | 2 | [fix] 0.9.1 host-cocoa fix for QEMU 0.9.1 (andreasf) (#70) |
|---|
| | 3 | [fix] 0.9.1 hd-led patch fix for QEMU 0.9.1 (andreasf) (#69) |
|---|
| | 4 | [fix] 0.9.1 vl.h fix for QEMU 0.9.1 (andreasf) (#68) |
|---|
| | 5 | |
|---|
| | 6 | Q-0.9.1d98 |
|---|
| | 7 | [new] 0.9.1 branch |
|---|
| | 8 | |
|---|
| 1 | 9 | Q-0.9.0d96 |
|---|
| 2 | 10 | [fix] term "Shutdown" replaced by "turn off" to clearifiy effect. (#19) |
|---|
| r89 |
r99 |
|
| 24 | 24 | |
|---|
| 25 | 25 | #import "cocoaCpuView.h" |
|---|
| 26 | | #import "../vl.h" |
|---|
| | 26 | #import "../qemu-common.h" |
|---|
| 27 | 27 | #import "../block_int.h" |
|---|
| 28 | 28 | |
|---|
| r61 |
r99 |
|
| 37 | 37 | #import <OpenGL/CGLContext.h> |
|---|
| 38 | 38 | |
|---|
| 39 | | #import "../vl.h" |
|---|
| | 39 | #import "../qemu-common.h" |
|---|
| 40 | 40 | #import "../../../q/qcontrol/cocoaControlDOServer.h" |
|---|
| 41 | 41 | #import "cocoaQemuProgressWindow.h" |
|---|
| r95 |
r99 |
|
| 26 | 26 | |
|---|
| 27 | 27 | #import "cocoaQemu.h" |
|---|
| | 28 | #import "sysemu.h" |
|---|
| 28 | 29 | |
|---|
| 29 | 30 | #import "cocoaQemuOpenGLView.h" |
|---|
| r93 |
r99 |
|
| 28 | 28 | #import <OpenGL/CGLContext.h> |
|---|
| 29 | 29 | |
|---|
| 30 | | #import "vl.h" |
|---|
| | 30 | #import "console.h" |
|---|
| 31 | 31 | #import "cocoaQemuWindow.h" |
|---|
| 32 | 32 | |
|---|
| r93 |
r99 |
|
| 25 | 25 | #import <Cocoa/Cocoa.h> |
|---|
| 26 | 26 | |
|---|
| 27 | | #import "vl.h" |
|---|
| | 27 | #import "console.h" |
|---|
| 28 | 28 | #import "cocoaQemuWindow.h" |
|---|
| 29 | 29 | |
|---|
| r5 |
r99 |
|
| 27 | 27 | #import <Cocoa/Cocoa.h> |
|---|
| 28 | 28 | |
|---|
| 29 | | #import "vl.h" |
|---|
| | 29 | #import "console.h" |
|---|
| 30 | 30 | #import "cocoaQemuWindow.h" |
|---|
| 31 | 31 | |
|---|
| r93 |
r99 |
|
| 30 | 30 | #import "cocoaPopUpView.h" |
|---|
| 31 | 31 | #import "cocoaCpuView.h" |
|---|
| 32 | | #import "vl.h" |
|---|
| 33 | 32 | #import "CGSPrivate.h" |
|---|
| 34 | 33 | |
|---|
| r34 |
r99 |
|
| 1 | | --- block_int.h 2006-06-21 18:46:53.000000000 +0200 |
|---|
| 2 | | +++ block_int2.h 2006-07-03 17:20:04.000000000 +0200 |
|---|
| 3 | | @@ -51,6 +51,7 @@ |
|---|
| | 1 | Index: block_int.h |
|---|
| | 2 | =================================================================== |
|---|
| | 3 | RCS file: /sources/qemu/qemu/block_int.h,v |
|---|
| | 4 | retrieving revision 1.16 |
|---|
| | 5 | diff -u -r1.16 block_int.h |
|---|
| | 6 | --- block_int.h 24 Dec 2007 16:10:43 -0000 1.16 |
|---|
| | 7 | +++ block_int.h 8 Jan 2008 15:32:29 -0000 |
|---|
| | 8 | @@ -96,6 +96,7 @@ |
|---|
| 4 | 9 | int removable; /* if true, the media can be removed */ |
|---|
| 5 | 10 | int locked; /* if true, the media cannot temporarily be ejected */ |
|---|
| 6 | 11 | int encrypted; /* if true, the media is encrypted */ |
|---|
| 7 | 12 | + int activityLED; /* if true, the media is accessed atm */ |
|---|
| | 13 | int sg; /* if true, the device is a /dev/sg* */ |
|---|
| 8 | 14 | /* event callback when inserting/removing */ |
|---|
| 9 | 15 | void (*change_cb)(void *opaque); |
|---|
| 10 | | void *change_opaque; |
|---|
| r61 |
r99 |
|
| 1 | | --- Makefile.target 2007-01-31 13:24:18.000000000 +0100 |
|---|
| 2 | | +++ Makefile.target 2007-02-02 14:45:02.000000000 +0100 |
|---|
| 3 | | @@ -415,8 +419,8 @@ |
|---|
| | 1 | Index: Makefile.target |
|---|
| | 2 | =================================================================== |
|---|
| | 3 | RCS file: /sources/qemu/qemu/Makefile.target,v |
|---|
| | 4 | retrieving revision 1.238 |
|---|
| | 5 | diff -u -r1.238 Makefile.target |
|---|
| | 6 | --- Makefile.target 6 Jan 2008 18:27:58 -0000 1.238 |
|---|
| | 7 | +++ Makefile.target 8 Jan 2008 15:42:39 -0000 |
|---|
| | 8 | @@ -516,7 +516,7 @@ |
|---|
| | 9 | VL_OBJS+=gdbstub.o |
|---|
| 4 | 10 | endif |
|---|
| 5 | | VL_OBJS+=vnc.o |
|---|
| 6 | 11 | ifdef CONFIG_COCOA |
|---|
| 7 | | -VL_OBJS+=cocoa.o |
|---|
| 8 | 12 | -COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit |
|---|
| 9 | | +VL_OBJS+=cocoaQemuMain.o cocoaQemuController.o cocoaQemu.o cocoaQemuProgressWindow.o cocoaQemuWindow.o cocoaQemuOpenGLView.o cocoaQemuQuartzView.o cocoaQemuQuickDrawView.o cocoaPopUpView.o cocoaCpuView.o FSController.o FSRoundedView.o FSToolbarController.o FSTransparentButton.o |
|---|
| 10 | 13 | +COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit -framework CoreFoundation -framework OpenGL -framework ApplicationServices |
|---|
| 11 | 14 | ifdef CONFIG_COREAUDIO |
|---|
| 12 | 15 | COCOA_LIBS+=-framework CoreAudio |
|---|
| 13 | 16 | endif |
|---|
| 14 | | @@ -465,7 +469,11 @@ |
|---|
| 15 | | $(QEMU_SYSTEM): $(VL_OBJS) libqemu.a |
|---|
| 16 | | $(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(VL_LIBS) |
|---|
| | 17 | Index: Makefile |
|---|
| | 18 | =================================================================== |
|---|
| | 19 | RCS file: /sources/qemu/qemu/Makefile,v |
|---|
| | 20 | retrieving revision 1.140 |
|---|
| | 21 | diff -u -r1.140 Makefile |
|---|
| | 22 | --- Makefile 6 Jan 2008 18:27:12 -0000 1.140 |
|---|
| | 23 | +++ Makefile 8 Jan 2008 15:42:40 -0000 |
|---|
| | 24 | @@ -93,7 +93,7 @@ |
|---|
| | 25 | OBJS+=vnc.o d3des.o |
|---|
| | 26 | |
|---|
| | 27 | ifdef CONFIG_COCOA |
|---|
| | 28 | -OBJS+=cocoa.o |
|---|
| | 29 | +OBJS+=cocoaQemuMain.o cocoaQemuController.o cocoaQemu.o cocoaQemuProgressWindow.o cocoaQemuWindow.o cocoaQemuOpenGLView.o cocoaQemuQuartzView.o cocoaQemuQuickDrawView.o cocoaPopUpView.o cocoaCpuView.o FSController.o FSRoundedView.o FSToolbarController.o FSTransparentButton.o |
|---|
| | 30 | endif |
|---|
| | 31 | |
|---|
| | 32 | ifdef CONFIG_SLIRP |
|---|
| | 33 | @@ -104,7 +104,10 @@ |
|---|
| | 34 | OBJS+=$(addprefix slirp/, $(SLIRP_OBJS)) |
|---|
| | 35 | endif |
|---|
| 17 | 36 | |
|---|
| 18 | 37 | -cocoa.o: cocoa.m |
|---|
| 19 | | + |
|---|
| 20 | 38 | +cocoa%.o: host-cocoa/cocoa%.m |
|---|
| 21 | 39 | + $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $< |
|---|
Download in other formats:
| |