Revert 24897:f25e5785327e "Export configure variables to hypervisor build"
authorKeir Fraser <keir@xen.org>
Wed, 29 Feb 2012 15:11:31 +0000 (15:11 +0000)
committerKeir Fraser <keir@xen.org>
Wed, 29 Feb 2012 15:11:31 +0000 (15:11 +0000)
Signed-off-by: Keir Fraser <keir@xen.org>
.gitignore
.hgignore
config/Tools.mk.in
config/Xen.mk.in [deleted file]
tools/configure
tools/configure.ac
xen/Rules.mk

index 865505fb1e427662bb4bf5247d299512f4339d7a..8810b35b54cb7ae7da319fcc8f64816efd18aff6 100644 (file)
@@ -111,7 +111,6 @@ tools/config.log
 tools/config.status
 tools/config.cache
 config/Tools.mk
-config/Xen.mk
 tools/blktap2/daemon/blktapctrl
 tools/blktap2/drivers/img2qcow
 tools/blktap2/drivers/lock-util
index 7d5ccc17f8c8c26b27cb9b246bab2d1aad6c2b07..46655adff6a669ccf71486fe5b680e2fe678e161 100644 (file)
--- a/.hgignore
+++ b/.hgignore
 ^tools/config\.status$
 ^tools/config\.cache$
 ^config/Tools\.mk$
-^config/Xen\.mk$
 ^xen/\.banner.*$
 ^xen/BLOG$
 ^xen/System.map$
index 315ced494557a64f593f5a043c64538909719f8b..06d5e8974b99291e80d3941cdb0e75843086158f 100644 (file)
@@ -24,6 +24,10 @@ PREPEND_LIB         := @PREPEND_LIB@
 APPEND_INCLUDES     := @APPEND_INCLUDES@
 APPEND_LIB          := @APPEND_LIB@
 
+# Enable XSM security module (by default, Flask).
+XSM_ENABLE          := @xsm@
+FLASK_ENABLE        := @xsm@
+
 # Download GIT repositories via HTTP or GIT's own protocol?
 # GIT's protocol is faster and more robust, when it works at all (firewalls
 # may block it). We make it the default, but if your GIT repository downloads
diff --git a/config/Xen.mk.in b/config/Xen.mk.in
deleted file mode 100644 (file)
index e152f39..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-# Prefix and install folder
-PREFIX              := @prefix@
-LIBLEAFDIR_x86_64   := @LIB_PATH@
-
-# A debug build of xen?
-debug               := @debug@
-
-# Tools path
-PYTHON              := @PYTHON@
-
-# Extra folder for libs/includes
-PREPEND_INCLUDES    := @PREPEND_INCLUDES@
-PREPEND_LIB         := @PREPEND_LIB@
-APPEND_INCLUDES     := @APPEND_INCLUDES@
-APPEND_LIB          := @APPEND_LIB@
-
-# Enable XSM security module (by default, Flask).
-XSM_ENABLE          := @xsm@
-FLASK_ENABLE        := @xsm@
index 5fe72cf8e22ca02347a9e6b2c383e056d7e9110e..5c0a314ec9d5a9af12bfb50a649475b17bfd3902 100755 (executable)
@@ -2446,8 +2446,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 ac_config_files="$ac_config_files ../config/Tools.mk"
 
-ac_config_files="$ac_config_files ../config/Xen.mk"
-
 ac_config_headers="$ac_config_headers config.h"
 
 
@@ -9657,7 +9655,6 @@ for ac_config_target in $ac_config_targets
 do
   case $ac_config_target in
     "../config/Tools.mk") CONFIG_FILES="$CONFIG_FILES ../config/Tools.mk" ;;
-    "../config/Xen.mk") CONFIG_FILES="$CONFIG_FILES ../config/Xen.mk" ;;
     "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
 
   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
index 5b2815d16c21abbc7b4e28fe8794e490f62eb2aa..c5dec9c59fc3438dac2d5e85378080fb16e152cb 100644 (file)
@@ -6,7 +6,6 @@ AC_INIT([Xen Hypervisor], m4_esyscmd([../version.sh ../xen/Makefile]),
     [xen-devel@lists.xensource.com])
 AC_CONFIG_SRCDIR([libxl/libxl.c])
 AC_CONFIG_FILES([../config/Tools.mk])
-AC_CONFIG_FILES([../config/Xen.mk])
 AC_CONFIG_HEADERS([config.h])
 AC_PREFIX_DEFAULT([/usr])
 AC_CONFIG_AUX_DIR([.])
index 6c17a3fad4e357537da26caf9017b6473e7b3a17..6123835ec14bb05073200aab9fb89d1a38876639 100644 (file)
@@ -12,7 +12,6 @@ frame_pointer ?= n
 lto           ?= n
 
 include $(XEN_ROOT)/Config.mk
-include $(XEN_ROOT)/config/Xen.mk
 
 # Hardcoded configuration implications and dependencies.
 # Do this is a neater way if it becomes unwieldy.