summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBernd Ahlers <bernd@cvs.openbsd.org>2007-04-26 11:55:29 +0000
committerBernd Ahlers <bernd@cvs.openbsd.org>2007-04-26 11:55:29 +0000
commit899e44bee5b681239d5aa9e94bcb6d0a8e8ef7c8 (patch)
tree70a0294eeb4619fd6cc04df57399dca5ef53d191 /lib
parent482bd7dcd807fcbfa1a054e709833bed6fb7a811 (diff)
Bump expat major library version number and build the xmlwf tool.
Preparation for the expat removal from ports. help & ok matthieu@ and sturm@
Diffstat (limited to 'lib')
-rw-r--r--lib/expat/Makefile6
-rw-r--r--lib/expat/shlib_version2
-rw-r--r--lib/expat/xmlwf/.cvsignore6
-rw-r--r--lib/expat/xmlwf/Makefile17
4 files changed, 22 insertions, 9 deletions
diff --git a/lib/expat/Makefile b/lib/expat/Makefile
index e68ccd2f1..f8aa3342d 100644
--- a/lib/expat/Makefile
+++ b/lib/expat/Makefile
@@ -1,5 +1,5 @@
-# $OpenBSD: Makefile,v 1.5 2007/04/07 15:37:50 matthieu Exp $
-# $OpenBSD: Makefile,v 1.5 2007/04/07 15:37:50 matthieu Exp $
+# $OpenBSD: Makefile,v 1.6 2007/04/26 11:55:28 bernd Exp $
+# $OpenBSD: Makefile,v 1.6 2007/04/26 11:55:28 bernd Exp $
.include <bsd.own.mk>
DIST= ${.CURDIR}
@@ -10,6 +10,8 @@ CFLAGS+= -I${.CURDIR}
CPPFLAGS+= -DHAVE_EXPAT_CONFIG_H
DEBUG?=
+SUBDIR= xmlwf
+
test:
@echo "dist $(DIST)/lib"
diff --git a/lib/expat/shlib_version b/lib/expat/shlib_version
index 9c1551636..d0f0988b4 100644
--- a/lib/expat/shlib_version
+++ b/lib/expat/shlib_version
@@ -1,2 +1,2 @@
-major=6
+major=8
minor=0
diff --git a/lib/expat/xmlwf/.cvsignore b/lib/expat/xmlwf/.cvsignore
deleted file mode 100644
index 90464b413..000000000
--- a/lib/expat/xmlwf/.cvsignore
+++ /dev/null
@@ -1,6 +0,0 @@
-Debug
-Release
-xmlwf.plg
-Makefile
-xmlwf
-.libs
diff --git a/lib/expat/xmlwf/Makefile b/lib/expat/xmlwf/Makefile
new file mode 100644
index 000000000..922e92fdb
--- /dev/null
+++ b/lib/expat/xmlwf/Makefile
@@ -0,0 +1,17 @@
+# $OpenBSD: Makefile,v 1.1 2007/04/26 11:55:28 bernd Exp $
+.include <bsd.own.mk>
+
+PROG= xmlwf
+SRCS= xmlwf.c xmlfile.c codepage.c unixfilemap.c
+CFLAGS+= -I${.CURDIR}/../ -I${.CURDIR}/../lib/
+CPPFLAGS+= -DHAVE_EXPAT_CONFIG_H
+LDFLAGS+= -L${.CURDIR}/../obj -lexpat
+
+X11BASE?= /usr/X11R6
+MANDIR= ${X11BASE}/man/cat
+VPATH= ${.CURDIR}/../doc
+
+obj: _xenocara_obj
+
+.include <bsd.prog.mk>
+.include <bsd.xorg.mk>