diff options
author | Simon Horman <horms@verge.net.au> | 2007-03-19 12:56:59 +0900 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2007-03-19 13:38:50 +0900 |
commit | d73cc37554560b7f282d6a3f2472f6a92ec1458a (patch) | |
tree | 1171917979e6336e9e1c413b195def95576167b1 | |
parent | cdbc9b011fe43407908632d842e3a39e495e48d9 (diff) |
Default to --with_xen
It seems safe enough to enable --with_xen by default as
the required header is checked for later on in confiugre,
and will turn off --with_xen if needed.
Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4d1b226..031f6ff 100644 --- a/configure.ac +++ b/configure.ac @@ -72,8 +72,8 @@ AC_ARG_WITH([gamecube], AC_HELP_STRING([--with-gamecube],[enable gamecube suppor AC_ARG_WITH([zlib], AC_HELP_STRING([--without-zlib],[disable gamecube support]), [ with_zlib="$withval"], [ with_zlib=yes ] ) -AC_ARG_WITH([xen], AC_HELP_STRING([--with-xen],[enable extended xen support]), - [ with_xen="$withval"], [ with_xen=no ] ) +AC_ARG_WITH([xen], AC_HELP_STRING([--without-xen], + [disable extended xen support]), [ with_xen="$withval"], [ with_xen=yes ] ) dnl ---Programs dnl To specify a different compiler, just 'export CC=/path/to/compiler' |