search for: libxl_linux

Displaying 1 result from an estimated 1 matches for "libxl_linux".

Did you mean: libldlinux
2012 Apr 13
1
[PATCH] libxl/build: print a pretty message if flex/bison are needed but not found
..._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_linux.c and libxl_netbsd.c to see how to get it ported) endif endif +ifeq ($(FLEX),) +%.c %.h:: %.l + $(error Flex is needed to compile libxl, please install it and rerun \ + configure) +endif + +ifeq ($(BISON),) +%.c %.h:: %.y + $(error Bison is needed to compile libxl, please install it an rerun \...