aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorChristoph Egger <Christoph.Egger@amd.com>2009-07-30 15:33:57 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-10 13:05:25 -0500
commitac8ab73ad145b8ac15520446f8b98d28957b6acf (patch)
tree0b46b0a1b18f141675e5102b3cce996e72c358ef /configure
parentbb87ece518e5ae0f7309b4f1758ee9d1c7a56b74 (diff)
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 <Christoph.Egger@amd.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index e5b94317e..a8bb60c11 100755
--- a/configure
+++ b/configure
@@ -880,7 +880,7 @@ if test "$xen" = "yes" ; then
#include <xs.h>
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"