aboutsummaryrefslogtreecommitdiffstats
path: root/tools/console
diff options
context:
space:
mode:
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>2005-08-24 23:07:29 +0000
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>2005-08-24 23:07:29 +0000
commit60eb66351321ad80bf3356e2e35aeced44522a7a (patch)
tree841dad29849c68d8092c43575c5e60e56c5f1c4b /tools/console
parentd90a3a88c0895f924609743537cd04031a415b93 (diff)
downloadxen-60eb66351321ad80bf3356e2e35aeced44522a7a.tar.gz
xen-60eb66351321ad80bf3356e2e35aeced44522a7a.tar.bz2
xen-60eb66351321ad80bf3356e2e35aeced44522a7a.zip
Rename libxc => libxenctrl and xc.h => xen/xenctrl.h
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk> --HG-- rename : tools/libxc/xc.h => tools/libxc/xenctrl.h
Diffstat (limited to 'tools/console')
-rw-r--r--tools/console/Makefile4
-rw-r--r--tools/console/client/main.c2
-rw-r--r--tools/console/daemon/io.c2
-rw-r--r--tools/console/daemon/main.c2
-rw-r--r--tools/console/daemon/utils.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/tools/console/Makefile b/tools/console/Makefile
index 4a2abdc247..35bac3aaf9 100644
--- a/tools/console/Makefile
+++ b/tools/console/Makefile
@@ -26,11 +26,11 @@ clean:
xenconsoled: $(patsubst %.c,%.o,$(wildcard daemon/*.c))
$(CC) $(CFLAGS) $^ -o $@ -L$(XEN_LIBXC) -L$(XEN_XENSTORE) \
- -lxc -lxenstore
+ -lxenctrl -lxenstore
xenconsole: $(patsubst %.c,%.o,$(wildcard client/*.c))
$(CC) $(CFLAGS) $^ -o $@ -L$(XEN_LIBXC) -L$(XEN_XENSTORE) \
- -lxc -lxenstore
+ -lxenctrl -lxenstore
install: $(BIN)
$(INSTALL_DIR) -p $(DESTDIR)/$(DAEMON_INSTALL_DIR)
diff --git a/tools/console/client/main.c b/tools/console/client/main.c
index a3abd0961e..fb0bf25c5e 100644
--- a/tools/console/client/main.c
+++ b/tools/console/client/main.c
@@ -36,7 +36,7 @@
#include <errno.h>
#include <pty.h>
-#include "xc.h"
+#include "xenctrl.h"
#include "xs.h"
#define ESCAPE_CHARACTER 0x1d
diff --git a/tools/console/daemon/io.c b/tools/console/daemon/io.c
index a6d058acad..9853ffddef 100644
--- a/tools/console/daemon/io.c
+++ b/tools/console/daemon/io.c
@@ -23,7 +23,7 @@
#include "utils.h"
#include "io.h"
-#include "xc.h"
+#include "xenctrl.h"
#include "xs.h"
#include "xen/io/domain_controller.h"
#include "xcs_proto.h"
diff --git a/tools/console/daemon/main.c b/tools/console/daemon/main.c
index e485130793..b37351b898 100644
--- a/tools/console/daemon/main.c
+++ b/tools/console/daemon/main.c
@@ -25,7 +25,7 @@
#include <unistd.h>
#include <sys/types.h>
-#include "xc.h"
+#include "xenctrl.h"
#include "xen/io/domain_controller.h"
#include "xcs_proto.h"
diff --git a/tools/console/daemon/utils.c b/tools/console/daemon/utils.c
index 96f823bdc7..f1ad0be081 100644
--- a/tools/console/daemon/utils.c
+++ b/tools/console/daemon/utils.c
@@ -33,7 +33,7 @@
#include <sys/un.h>
#include <string.h>
-#include "xc.h"
+#include "xenctrl.h"
#include "xen/io/domain_controller.h"
#include "xcs_proto.h"