[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v4 03/15] xenstored: enable usage of config.h on both xenstored and oxenstored
From: "Luis R. Rodriguez" <mcgrof@xxxxxxxx> This will be used later for dynamic configuration paths on C code. Signed-off-by: Luis R. Rodriguez <mcgrof@xxxxxxxx> --- tools/ocaml/xenstored/Makefile | 2 ++ tools/xenstore/Makefile | 1 + tools/xenstore/xs.c | 2 ++ 3 files changed, 5 insertions(+) diff --git a/tools/ocaml/xenstored/Makefile b/tools/ocaml/xenstored/Makefile index b18f190..7fa8f53 100644 --- a/tools/ocaml/xenstored/Makefile +++ b/tools/ocaml/xenstored/Makefile @@ -2,6 +2,8 @@ XEN_ROOT = $(CURDIR)/../../.. OCAML_TOPLEVEL = $(CURDIR)/.. include $(OCAML_TOPLEVEL)/common.make +CFLAGS += -I$(XEN_ROOT)/tools/ + OCAMLINCLUDE += \ -I $(OCAML_TOPLEVEL)/libs/xb \ -I $(OCAML_TOPLEVEL)/libs/mmap \ diff --git a/tools/xenstore/Makefile b/tools/xenstore/Makefile index 262f401..21a3f11 100644 --- a/tools/xenstore/Makefile +++ b/tools/xenstore/Makefile @@ -6,6 +6,7 @@ MINOR = 3 CFLAGS += -Werror CFLAGS += -I. +CFLAGS += -I$(XEN_ROOT)/tools/ CFLAGS += $(CFLAGS_libxenctrl) CLIENTS := xenstore-exists xenstore-list xenstore-read xenstore-rm xenstore-chmod diff --git a/tools/xenstore/xs.c b/tools/xenstore/xs.c index 968141d..f1d0f99 100644 --- a/tools/xenstore/xs.c +++ b/tools/xenstore/xs.c @@ -32,6 +32,8 @@ #include <signal.h> #include <stdint.h> #include <errno.h> +#include <config.h> + #include "xenstore.h" #include "list.h" #include "utils.h" -- 1.9.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |