mirror of
https://github.com/qemu/qemu.git
synced 2025-08-10 12:46:22 +00:00
Fold CURSES_LIBS into libsoftmmu_libs
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
This commit is contained in:
parent
6362a53f55
commit
d2ef30d5d3
@ -416,7 +416,7 @@ vl.o: qemu-options.h
|
|||||||
|
|
||||||
monitor.o: qemu-monitor.h
|
monitor.o: qemu-monitor.h
|
||||||
|
|
||||||
LIBS += $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
|
LIBS += $(COCOA_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
|
||||||
ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
|
ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
|
||||||
|
|
||||||
endif # !CONFIG_USER_ONLY
|
endif # !CONFIG_USER_ONLY
|
||||||
|
5
configure
vendored
5
configure
vendored
@ -1074,9 +1074,9 @@ if test "$curses" = "yes" ; then
|
|||||||
int main(void) { resize_term(0, 0); return curses_version(); }
|
int main(void) { resize_term(0, 0); return curses_version(); }
|
||||||
EOF
|
EOF
|
||||||
if compile_prog "" "-lncurses" ; then
|
if compile_prog "" "-lncurses" ; then
|
||||||
curses_libs="-lncurses"
|
libs_softmmu="-lncurses $libs_softmmu"
|
||||||
elif compile_prog "" "-lcurses" ; then
|
elif compile_prog "" "-lcurses" ; then
|
||||||
curses_libs="-lcurses"
|
libs_softmmu="-lcurses $libs_softmmu"
|
||||||
else
|
else
|
||||||
curses=no
|
curses=no
|
||||||
fi
|
fi
|
||||||
@ -1658,7 +1658,6 @@ if test "$cocoa" = "yes" ; then
|
|||||||
fi
|
fi
|
||||||
if test "$curses" = "yes" ; then
|
if test "$curses" = "yes" ; then
|
||||||
echo "CONFIG_CURSES=y" >> $config_host_mak
|
echo "CONFIG_CURSES=y" >> $config_host_mak
|
||||||
echo "CURSES_LIBS=$curses_libs" >> $config_host_mak
|
|
||||||
fi
|
fi
|
||||||
if test "$atfile" = "yes" ; then
|
if test "$atfile" = "yes" ; then
|
||||||
echo "CONFIG_ATFILE=y" >> $config_host_mak
|
echo "CONFIG_ATFILE=y" >> $config_host_mak
|
||||||
|
Loading…
Reference in New Issue
Block a user