Commit 3db38e87a0e90d4fd2d8c999434feaac6ddb1289
1 parent
379ff53d
virtual console support - slirp for win32 support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1017 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
2 deletions
Makefile.target
... | ... | @@ -162,7 +162,7 @@ endif |
162 | 162 | DEFINES+=-D_GNU_SOURCE |
163 | 163 | LIBS+=-lm |
164 | 164 | ifdef CONFIG_WIN32 |
165 | -LIBS+=-lwinmm | |
165 | +LIBS+=-lwinmm -lws2_32 -liphlpapi | |
166 | 166 | endif |
167 | 167 | |
168 | 168 | # profiling code |
... | ... | @@ -237,7 +237,7 @@ ifeq ($(ARCH),alpha) |
237 | 237 | endif |
238 | 238 | |
239 | 239 | # must use static linking to avoid leaving stuff in virtual address space |
240 | -VL_OBJS=vl.o osdep.o block.o monitor.o pci.o | |
240 | +VL_OBJS=vl.o osdep.o block.o monitor.o pci.o console.o | |
241 | 241 | |
242 | 242 | ifeq ($(TARGET_ARCH), i386) |
243 | 243 | # Hardware support | ... | ... |