diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-03 14:46:27 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-10 13:05:40 -0500 |
commit | 0705667e2e976d28c9fc8740bcddbbbd52de64f1 (patch) | |
tree | 5ca097405a5b2b253920a43f095131c3a4c63a0e | |
parent | 73da375ee12925a545456a14076f531084c317f3 (diff) |
Add SDL_LIBS to libs_softmmu
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-Id:
-rw-r--r-- | Makefile.target | 2 | ||||
-rwxr-xr-x | configure | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.target b/Makefile.target index 9ffc0b7086..a1892b6d21 100644 --- a/Makefile.target +++ b/Makefile.target @@ -453,7 +453,7 @@ vl.o: qemu-options.h monitor.o: qemu-monitor.h -LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS) +LIBS += $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS) ARLIBS=../libqemu_common.a libqemu.a $(HWLIB) endif # !CONFIG_USER_ONLY @@ -891,6 +891,7 @@ EOF if test "$mingw32" = "yes" ; then sdl_libs="`echo $sdl_libs | sed s/-mwindows//g` -mconsole" fi + libs_softmmu="$sdl_libs $libs_softmmu" fi ########################################## @@ -1632,7 +1633,6 @@ if [ "$build_docs" = "yes" ] ; then fi if test "$sdl" = "yes" ; then echo "CONFIG_SDL=y" >> $config_host_mak - echo "SDL_LIBS=$sdl_libs" >> $config_host_mak echo "SDL_CFLAGS=$sdl_cflags" >> $config_host_mak fi if test "$cocoa" = "yes" ; then |