===== Makefile 1.96 vs edited ===== --- 1.96/Makefile 2005-06-10 01:56:35 -05:00 +++ edited/Makefile 2005-06-10 03:24:17 -05:00 @@ -166,6 +166,7 @@ rm -rf $(D)/usr/$(LIBDIR)/share/xen $(D)/usr/$(LIBDIR)/libxenstore* rm -rf $(D)/var/run/xen* $(D)/var/lib/xen* rm -rf $(D)/usr/include/xcs_proto.h $(D)/usr/include/xc.h + rm -rf $(D)/usr/include/xs.h $(D)/usr/include/xs_lib.h rm -rf $(D)/usr/sbin/xcs $(D)/usr/sbin/xcsdump $(D)/usr/sbin/xen* rm -rf $(D)/usr/sbin/netfix rm -rf $(D)/usr/sbin/xfrd $(D)/usr/sbin/xm ===== tools/xenstore/Makefile 1.3 vs edited ===== --- 1.3/tools/xenstore/Makefile 2005-06-09 15:07:32 -05:00 +++ edited/tools/xenstore/Makefile 2005-06-10 03:06:55 -05:00 @@ -95,5 +95,7 @@ $(INSTALL_PROG) xenstored $(DESTDIR)/usr/sbin $(INSTALL_DIR) -p $(DESTDIR)/usr/$(LIBDIR) $(INSTALL_DATA) libxenstore.a $(DESTDIR)/usr/$(LIBDIR) + $(INSTALL_DATA) xs.h $(DESTDIR)/usr/include + $(INSTALL_DATA) xs_lib.h $(DESTDIR)/usr/include -include $(PROG_DEP) ===== tools/xenstore/xs.c 1.1 vs edited ===== --- 1.1/tools/xenstore/xs.c 2005-06-07 05:57:29 -05:00 +++ edited/tools/xenstore/xs.c 2005-06-10 03:06:55 -05:00 @@ -36,11 +36,6 @@ #include "xs_lib.h" #include "utils.h" -struct xs_handle -{ - int fd; -}; - /* Get the socket from the store daemon handle. */ int xs_fileno(struct xs_handle *h) ===== tools/xenstore/xs.h 1.1 vs edited ===== --- 1.1/tools/xenstore/xs.h 2005-06-07 05:57:29 -05:00 +++ edited/tools/xenstore/xs.h 2005-06-10 03:08:20 -05:00 @@ -22,7 +22,10 @@ /* On failure, these routines set errno. */ #include "xs_lib.h" -struct xs_handle; +struct xs_handle +{ + int fd; +}; /* Connect to the xs daemon. * Returns a handle or NULL.