From 396b2fc430c86dbbf6e738acc89da74eecc5ec05 Mon Sep 17 00:00:00 2001 From: behlendo Date: Mon, 17 Jun 2002 04:13:18 +0000 Subject: [PATCH] Barebones XML support added to obdctl via the --xml option. Validation of the XML should be performed against the lustre.dtd (but isn't yet). Also of note we now need the libxml2 library to be installed. --- lustre/utils/Makefile.am | 2 +- lustre/utils/lustre.dtd | 71 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 lustre/utils/lustre.dtd diff --git a/lustre/utils/Makefile.am b/lustre/utils/Makefile.am index 4b64b74..270e7a8 100644 --- a/lustre/utils/Makefile.am +++ b/lustre/utils/Makefile.am @@ -5,7 +5,7 @@ CFLAGS:=-g -I. -I/usr/include/glib-1.2 -I$(PORTALS)/include \ -I/usr/lib/glib/include -I$(srcdir)/../include -Wall KFLAGS:= CPPFLAGS := -LDADD := -lreadline -ltermcap # -lefence +LDADD := -lreadline -ltermcap -lxml2 # -lefence bin_PROGRAMS = obdctl obdctl_SOURCES = parser.c obdctl.c diff --git a/lustre/utils/lustre.dtd b/lustre/utils/lustre.dtd new file mode 100644 index 0000000..ba4af32 --- /dev/null +++ b/lustre/utils/lustre.dtd @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 1.8.3.1