summaryrefslogtreecommitdiff
path: root/textproc/expat
AgeCommit message (Collapse)AuthorFilesLines
2005-02-24Add RMD160 digests to the SHA1 ones.agc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-4/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-15Don't have a comma end an enumeration list, which is apparently notjlam4-3/+19
allowed by GCC with -pedantic -ansi. Bump the PKGREVISION.
2004-08-05update to expat-1.95.8recht3-6/+7
Release 1.95.8 Fri Jul 23 2004 - Major new feature: suspend/resume. Handlers can now request that a parse be suspended for later resumption or aborted altogether. See "Temporarily Stopping Parsing" in the documentation for more details. - Some mostly minor bug fixes, but compilation should no longer generate warnings on most platforms. SF issues include: 827319, 840173, 846309, 888329, 896188, 923913, 928113, 961698, 985192.
2004-07-06Unused.wiz1-19/+0
2004-04-08Bump BUILDLINK_DEPENDS.expat from 1.95.4 to 1.95.7.reed2-4/+4
The expat-1.95.6nb1 package has libexpat.so.4.0 and expat-1.95.7 has libexpat.so.5.0. I noticed this because I had a fontconfig package built against libexpat.so.4 which installed fine on another box with expat-1.95.7 (libexpat.so.5). The fontconfig package should have required the expat as now available in pkgsrc. Please note that I have not bumped PKGREVISIONs for all the packages depending on this.
2004-03-29Match the template builtin.mk file in bsd.builtin.mk, and make the twojlam1-9/+9
packages that use builtin.mk files (graphics/xpm and pkgtools/x11-links) use the new format correctly.
2004-03-10Split out the code that deals with checking whether the software isjlam2-93/+75
built-in or not into a separate builtin.mk file. The code to deal checking for built-in software is much simpler to deal with in pkgsrc. The buildlink3.mk file for a package will be of the usual format regardless of the package, which makes it simpler for packagers to update a package. The builtin.mk file for a package must define a single yes/no variable USE_BUILTIN.<pkg> that is used by bsd.buildlink3.mk to decide whether to use the built-in software or to use the pkgsrc software.
2004-03-02update to 1.95.7drochner4-80/+8
bugfixes and compatibility improvements
2004-02-20Only USE_X11 if we're using the XFree86-provided expat.jlam1-2/+2
2004-02-18Reorder some lines so that BUILDLINK_USE_BUILTIN.<pkg> set in thejlam1-16/+18
environment overrides all other settings.
2004-02-17Fix PKGSRCDIR: expat is in "textproc" and not "x11".recht1-2/+2
2004-02-17We default to full, not build, dependencies.jlam1-2/+1
2004-02-17Check for the version of the XFree86-provided expat software.jlam1-5/+93
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-24Append to BUILDLINK_DEPENDS.<pkg> instead of setting a default value. Injlam1-2/+2
the normal case when BUILDLINK_DEPENDS.<pkg> isn't specified, it receives a value only once due to the multiple inclusion protection in the bulldlink3.mk files. In the case where a package includes several buildlink3.mk files that each want a slightly different version of another dependency, having BUILDLINK_DEPENDS.<pkg> be a list allows for the strictest <pkg> dependency to be matched.
2004-01-05bl3ifyjlam1-2/+4
2004-01-05Use S/+$// instead of C/\+$// to save a backslash. Very highlyjlam1-2/+2
recommended by seb :)
2004-01-04Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk.jlam1-9/+6
2004-01-03Initial sprinkling of work-in-progress buildlink3.mk files for using thejlam1-0/+19
buildlink3 framework.
2003-10-11expat >= 1.95.4 provide libexpat.4 which other packages need, so bumpgrant1-2/+2
BUILDLINK_DEPENDS accordingly. fixes build problems observed by a couple of users on tech-pkg, well as fixing PR pkg/21325.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-02-05Bump PKGREVISION of textproc/expat to 1: fix an obvious C bug where typesjlam3-2/+74
should be declared/defined before they are used. This should fix errors of the form: .../expat.h:657: use of enum `XML_Status' without previous declaration .../expat.h:736: multiple definition of `enum XML_Status'
2003-01-30distfile has changed, pointed out by Martti Kuparinendrochner1-3/+3
2003-01-30update to 1.95.6drochner2-5/+5
changes: -Added XML_FreeContentModel(). -Added XML_MemMalloc(), XML_MemRealloc(), XML_MemFree(). -Enhanced the regression test suite. -bugfixes
2002-10-09Unused.wiz1-34/+0
2002-09-18Use correct version number for libs (hi drochner!)martti1-3/+3
2002-09-17update to 1.95.5drochner2-5/+5
changes: Added XML_UseForeignDTD() for improved SAX2 support. Added XML_GetFeatureList(). Defined XML_Bool type and the values XML_TRUE and XML_FALSE. Use an incomplete struct instead of a void* for the parser. Fixed UTF-8 decoding bug that caused legal UTF-8 to be rejected. Finally fixed bug where default handler would report DTD events that were already handled by another handler. Initial patch contributed by Darryl Miller. Reduced line-length for all source code and headers to be no longer than 80 characters, to help with AS/400 support. Reduced memory copying during parsing (SF patch #600964). Fixed a variety of bugs.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam4-4/+23
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-08-20update to 1.95.4drochner4-30/+10
changes since 1.95.2: -Added the XML_ParserReset() API function -Allow xmlwf to read from standard input -Install a man page for xmlwf on Unix systems -bugfixes -unrelated portability enhancements
2001-11-22Handle gcc pre-2.8 - do not use -fexceptions in that case.abs2-1/+22
So I found a 1.3 box running pkgsrc and wanted to update apache...
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-01Mark as USE_BUILDLINK_ONLY as this package is strongly-buildlinked.jlam1-4/+5
2001-09-14Add a buildlink.mk for for use by other package Makefiles. Closesjlam1-0/+34
pkg/13784 by Martti Kuparinen <martti.kuparinen@iki.fi>.
2001-08-07update to 1.95.2drochner3-9/+10
changes: - Added compile-time constants that can be used to determine the Expat version - Removed a lot of GNU-specific dependencies to aide portability among the various Unix flavors. - Fix the UTF-8 BOM bug. - Cleaned up warning messages for several compilers. - Added the -Wall, -Wstrict-prototypes options for GCC.
2001-05-15install the html documentation, bump version to 1.95.1nb1dillo2-2/+13
2001-04-20Move to sha1 digests, and add distfile sizes.skrll1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-1/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-07This is James Clark's expat XML parser library in C. It is a stream orienteddrochner4-0/+29
parser that requires setting handlers to deal with the structure that the parser discovers in the document.