diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-03 14:47:08 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-10 13:05:47 -0500 |
commit | f03029354e47d3765ee006bb915fdaf9296900f3 (patch) | |
tree | 42a87f064180f7c0a29a279cc808887e5cad04e9 /configure | |
parent | 8e02e54cc44de66229da0d97698f57e38b69b315 (diff) |
CURL libs are used both by tools and softmmu
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-Id:
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1103,6 +1103,8 @@ EOF curl_libs=`curl-config --libs 2>/dev/null` if compile_prog "$curl_cflags" "$curl_libs" ; then curl=yes + libs_tools="$curl_libs $libs_tools" + libs_softmmu="$curl_libs $libs_softmmu" fi fi # test "$curl" @@ -1690,7 +1692,6 @@ fi if test "$curl" = "yes" ; then echo "CONFIG_CURL=y" >> $config_host_mak echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak - echo "CURL_LIBS=$curl_libs" >> $config_host_mak fi if test "$brlapi" = "yes" ; then echo "CONFIG_BRLAPI=y" >> $config_host_mak |