upgrade to version 2.4.2
This commit is contained in:
parent
b8a960b8c6
commit
ddecfd4bad
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.27 2001/07/19 10:22:28 kevlo Exp $
|
||||
# $OpenBSD: Makefile,v 1.28 2001/08/18 03:46:11 kevlo Exp $
|
||||
|
||||
COMMENT= "XML parsing library"
|
||||
|
||||
VERSION= 2.4.0
|
||||
VERSION= 2.4.2
|
||||
DISTNAME= libxml2-${VERSION}
|
||||
PKGNAME= libxml-${VERSION}
|
||||
CATEGORIES= textproc
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (libxml2-2.4.0.tar.gz) = 38634715dd81ceb2a69bac3da8b5e56c
|
||||
RMD160 (libxml2-2.4.0.tar.gz) = 15d488920173579aa41681f674a642fa3f4455ff
|
||||
SHA1 (libxml2-2.4.0.tar.gz) = fd5aef35ff73c7e04ba2ca7d1e6c1058befeaaab
|
||||
MD5 (libxml2-2.4.2.tar.gz) = 1b05a325cd6128eb1aa3c06e22cafb12
|
||||
RMD160 (libxml2-2.4.2.tar.gz) = 23ba97139e42585636abcc263ed955954f8734e7
|
||||
SHA1 (libxml2-2.4.2.tar.gz) = fc9c2ce9289c64e8d871bc1895489701b1555e41
|
||||
|
@ -1,47 +1,29 @@
|
||||
--- ltmain.sh.orig Fri Jan 5 07:13:13 2001
|
||||
+++ ltmain.sh Mon Feb 19 10:30:34 2001
|
||||
@@ -1079,6 +1079,17 @@
|
||||
# These systems don't actually have c library (as such)
|
||||
continue
|
||||
;;
|
||||
+ *-*-openbsd*)
|
||||
+ # Do not include libc due to us having libc/libc_r.
|
||||
+ continue
|
||||
+ ;;
|
||||
+ esac
|
||||
+ elif test "$arg" = "-lc_r"; then
|
||||
+ case "$host" in
|
||||
+ *-*-openbsd*)
|
||||
+ # Do not include libc_r directly, use -pthread flag.
|
||||
+ continue
|
||||
+ ;;
|
||||
esac
|
||||
elif test "$arg" = "-lm"; then
|
||||
case "$host" in
|
||||
@@ -1091,6 +1102,10 @@
|
||||
deplibs="$deplibs $arg"
|
||||
--- ltmain.sh.orig Fri Aug 17 21:15:18 2001
|
||||
+++ ltmain.sh Fri Aug 17 21:20:01 2001
|
||||
@@ -1037,6 +1037,10 @@
|
||||
continue
|
||||
;;
|
||||
|
||||
+ -?thread)
|
||||
+ deplibs="$deplibs $arg"
|
||||
+ ;;
|
||||
+ deplibs="$deplibs $arg"
|
||||
+ ;;
|
||||
+
|
||||
-module)
|
||||
module=yes
|
||||
continue
|
||||
@@ -1795,6 +1810,9 @@
|
||||
*-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)
|
||||
# these systems don't actually have a c library (as such)!
|
||||
;;
|
||||
+ *-*-openbsd*)
|
||||
+ # Do not include libc due to us having libc/libc_r.
|
||||
+ ;;
|
||||
*)
|
||||
# Add libc to deplibs on all other systems.
|
||||
deplibs="$deplibs -lc"
|
||||
@@ -3555,40 +3573,6 @@
|
||||
@@ -2401,6 +2405,9 @@
|
||||
*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
|
||||
# these systems don't actually have a c library (as such)!
|
||||
;;
|
||||
+ *-*-openbsd*)
|
||||
+ # Do not include libc due to us having libc/libc_r.
|
||||
+ ;;
|
||||
*-*-rhapsody* | *-*-darwin1.[012])
|
||||
# Rhapsody C library is in the System framework
|
||||
deplibs="$deplibs -framework System"
|
||||
@@ -4412,40 +4419,6 @@
|
||||
# Exit here if they wanted silent mode.
|
||||
test "$show" = : && exit 0
|
||||
test "$show" = ":" && exit 0
|
||||
|
||||
- echo "----------------------------------------------------------------------"
|
||||
- echo "Libraries have been installed in:"
|
||||
@ -51,7 +33,7 @@
|
||||
- echo
|
||||
- echo "If you ever happen to want to link against installed libraries"
|
||||
- echo "in a given directory, LIBDIR, you must either use libtool, and"
|
||||
- echo "specify the full pathname of the library, or use \`-LLIBDIR'"
|
||||
- echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
|
||||
- echo "flag during linking and do at least one of the following:"
|
||||
- if test -n "$shlibpath_var"; then
|
||||
- echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
|
||||
|
@ -1,3 +1,3 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.15 2001/07/19 10:22:39 kevlo Exp $
|
||||
lib/libxml2.so.6.0
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.16 2001/08/18 03:46:17 kevlo Exp $
|
||||
lib/libxml2.so.6.2
|
||||
DYNLIBDIR(%B)
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.8 2001/05/20 13:00:31 kevlo Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.9 2001/08/18 03:46:17 kevlo Exp $
|
||||
bin/xml2-config
|
||||
bin/xmllint
|
||||
include/libxml/DOCBparser.h
|
||||
@ -24,6 +24,7 @@ include/libxml/xmlIO.h
|
||||
include/libxml/xmlerror.h
|
||||
include/libxml/xmlmemory.h
|
||||
include/libxml/xmlversion.h
|
||||
include/libxml/xmlwin32version.h
|
||||
include/libxml/xpath.h
|
||||
include/libxml/xpathInternals.h
|
||||
include/libxml/xpointer.h
|
||||
|
Loading…
Reference in New Issue
Block a user