Displaying 4 results from an estimated 4 matches for "ax_path_prog_or_fail".
2012 Apr 13
1
[PATCH] libxl/build: print a pretty message if flex/bison are needed but not found
...tions(+), 2 deletions(-)
diff --git a/tools/configure.ac b/tools/configure.ac
index 3da0c82..8ccdc92 100644
--- a/tools/configure.ac
+++ b/tools/configure.ac
@@ -75,6 +75,8 @@ AC_PROG_CC
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_INSTALL
+AC_PATH_PROG([BISON], [bison])
+AC_PATH_PROG([FLEX], [flex])
AX_PATH_PROG_OR_FAIL([PERL], [perl])
AS_IF([test "x$xapi" = "xy"], [
AX_PATH_PROG_OR_FAIL([CURL], [curl-config])
diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile
index ac8b810..e8ec8e9 100644
--- a/tools/libxl/Makefile
+++ b/tools/libxl/Makefile
@@ -48,6 +48,18 @@ please check libxl_li...
2013 Feb 13
4
[PATCH 0/3] FLASK policy build rework
These patches update the example FLASK policy shipped with Xen and
enable its build if the required tools are present. The third patch
requires rerunning autoconf to update tools/configure.
[PATCH 1/3] flask/policy: sort dom0 accesses
[PATCH 2/3] flask/policy: rework policy build system
[PATCH 3/3] tools/flask: add FLASK policy to build
2013 Mar 15
22
[PATCH 00/09] arm: tools: build for arm64 and enable cross-compiling for both arm32 and arm64
The following patches shave some rough edges off the tools build system
to allow cross compiling for at least arm32 and arm64 based on the
Debian/Ubuntu multiarch infrastructure. They also add the necessary
fixes to build for arm64 (which I have only tried cross, not native).
I have posted some instructions on how to compile with these patches on
the wiki:
2012 Sep 17
9
[PATCH] Upgrade vtpmd to berlios version 0.7.4
...l as86, ld86, bcc and iasl are only present in x86* systems
case "$host_cpu" in
@@ -108,6 +109,9 @@ AS_IF([test "x$pythontools" = "xy"], [
AX_CHECK_PYTHON_VERSION([2], [3])
AX_CHECK_PYTHON_DEVEL()
])
+AS_IF([test "x$vtpm" = "xy"], [
+ AX_PATH_PROG_OR_FAIL([CMAKE], [cmake])
+])
AX_PATH_PROG_OR_FAIL([XGETTEXT], [xgettext])
AX_PATH_PROG_OR_FAIL([AS86], [as86])
AX_PATH_PROG_OR_FAIL([LD86], [ld86])
diff --git a/tools/vtpm/Makefile b/tools/vtpm/Makefile
--- a/tools/vtpm/Makefile
+++ b/tools/vtpm/Makefile
@@ -1,19 +1,15 @@
XEN_ROOT = $(CURDIR)/../..
+i...