head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.8 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.6 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.4 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.2 pkgsrc-2011Q2-base:1.4 pkgsrc-2010Q1:1.3.0.4 pkgsrc-2010Q1-base:1.3 pkgsrc-2009Q4:1.3.0.2 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.2.0.24 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.22 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.20 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.18 pkgsrc-2008Q2-base:1.2 pkgsrc-2008Q1:1.2.0.16 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.14 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.2.0.12 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.10 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.8 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.6 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.4 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.2 pkgsrc-2006Q2-base:1.2; locks; strict; comment @# @; 1.4 date 2010.04.13.16.04.09; author drochner; state dead; branches; next 1.3; 1.3 date 2009.11.22.14.05.26; author sno; state Exp; branches; next 1.2; 1.2 date 2006.06.09.21.16.39; author drochner; state dead; branches; next 1.1; 1.1 date 2006.05.19.09.46.50; author gavan; state Exp; branches; next ; desc @@ 1.4 log @update to 2.7.7 changes: -Adding a --xpath option to xmllint -Make HTML parser non-recursive -misc portability improvements and bugfixes @ text @$NetBSD: patch-ai,v 1.3 2009/11/22 14:05:26 sno Exp $ --- configure.in.orig Mon Nov 16 17:18:38 2009 +++ configure.in Mon Nov 16 17:20:27 2009 @@@@ -74,8 +74,6 @@@@ VERSION_SCRIPT_FLAGS= $(/usr/bin/ld --help 2>&1 | grep -- --version-script >/dev/null) && \ VERSION_SCRIPT_FLAGS=-Wl,--version-script= -test "`uname`" == "SunOS" && \ - VERSION_SCRIPT_FLAGS="-Wl,-M -Wl," AC_SUBST(VERSION_SCRIPT_FLAGS) AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -n "$VERSION_SCRIPT_FLAGS"]) @ 1.3 log @Patches out invalid linker flags for solaris. Tested with OpenSolaris/amd64 and Solaris 10/sparc - both with Sun Studio C/C++ 12u1. Fixes PR pkg/42335 (thanks to Todd Kover for the hint). @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @update to 2.6.26 changes: fixes for bugs and memory leaks, minor optimizations @ text @d1 1 a1 1 $NetBSD: patch-ai,v 1.1 2006/05/19 09:46:50 gavan Exp $ d3 10 a12 17 --- xmlIO.c.orig Fri May 19 01:21:53 2006 +++ xmlIO.c @@@@ -616,6 +616,7 @@@@ xmlCheckFilename (const char *path) } #else #ifdef HAVE_STAT + { struct stat stat_buffer; if (stat(path, &stat_buffer) == -1) @@@@ -625,6 +626,7 @@@@ xmlCheckFilename (const char *path) if (S_ISDIR(stat_buffer.st_mode)) return 2; #endif /* S_ISDIR */ + } #endif /* HAVE_STAT */ #endif /* WIN32 */ @ 1.1 log @Don't declare a variable in the middle of code. Fixes compilation on NetBSD 1.6.X. @ text @d1 1 a1 1 $NetBSD$ @