From: Christoph Egger Date: Thu, 30 Jul 2009 13:33:57 +0000 (+0200) Subject: configure: let it find xen headers and libs X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~11147 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac8ab73ad145b8ac15520446f8b98d28957b6acf;p=sdk%2Femulator%2Fqemu.git configure: let it find xen headers and libs Attached patch lets configure find xen headers and libs with --extra-cflags and --extra-ldlfags option. Signed-off-by: Christoph Egger Signed-off-by: Anthony Liguori Message-Id: --- diff --git a/configure b/configure index e5b9431..a8bb60c 100755 --- a/configure +++ b/configure @@ -880,7 +880,7 @@ if test "$xen" = "yes" ; then #include int main(void) { xs_daemon_open(); xc_interface_open(); return 0; } EOF - if $cc $CFLAGS $ARCH_CFLAGS -c -o $TMPO $TMPC $LDFLAGS $xen_libs 2> /dev/null > /dev/null ; then + if $cc $CFLAGS $ARCH_CFLAGS $EXTRA_CFLAGS -c -o $TMPO $TMPC $LDFLAGS $EXTRA_LDFLAGS $xen_libs 2> /dev/null > /dev/null ; then : else xen="no"