summaryrefslogtreecommitdiff
path: root/www/libwww
AgeCommit message (Collapse)AuthorFilesLines
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-4/+4
2006-01-29IRIX 5 does not have libregexschwarz1-2/+7
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-3/+3
CONFIGURE_ARGS.
2005-12-02Convert to options framework.wiz2-16/+22
While here, fix two pkglint warnings.
2005-11-03Security fix for SA17119:salo3-3/+528
"A vulnerability was found in W3C Libwww, which potentially can be exploited by malicious people to cause a DoS (Denial of Service). The vulnerability is caused due to a boundary error in the "HTBoundary_put_block()" function when processing multipart MIME data. This may be exploited to cause an illegal memory access past the end of the input buffer via specially crafted multipart MIME data. Successful exploitation can potentially cause an application that uses Libwww to crash." http://secunia.com/advisories/17119/ https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=159597 Bump PKGREVISION. Patch from RedHat.
2005-05-31delint.salo2-8/+7
2005-05-31Build on DragonFly. Patch from Joerg Sonnenberger.salo2-6/+16
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 checksums.wiz1-1/+3
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-97/+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-05-31Enable pkgviews installation. Patches provided by Joachim Kuebart onminskim1-1/+3
tech-pkg@.
2004-05-09No longer used.snj1-50/+0
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz3-4/+6
Buildlink files: RECOMMENDED version changed to current version.
2004-03-21Fix build on sparc64 with gcc2.snj1-1/+4
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-14Use find with "-print", noted by Georg Schwarz in pkg/24248heinz1-2/+2
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-8/+7
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-29Some shells don't like:markd4-11/+12
if test -x /bin/true; then else so replace with: if test -x /bin/true; then : else From Roland Illig in a posting to "tech-pkg" Also add missing openssl/buildlink2.mk to buildlink2.mk.
2004-02-17Add build dependency on perl.kristerw1-1/+2
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-02-12Add buildlink3.mk.minskim1-0/+23
2004-02-12bl3ifyminskim1-6/+6
2004-02-12Download the new configure script rather than having a huge patch.minskim3-40795/+10
Suggested by wiz@.
2004-02-12Replace configure with the one generated by newer autoconf, and adjustminskim4-22/+40806
Makefile accordingly. This makes libwww build again with libtool-1.5.2. The problem was reported by reed@ in PR pkg/24391.
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-11-12PKGREVISION++ after openssl update.jschauma1-1/+2
2003-10-08wrap an #ifdef __NeXT__ around some crufty old code that was breakingdanw2-4/+20
the darwin build. PR 20507.
2003-09-15Allow this to compile under Irix (and presumably other platforms usingjschauma1-2/+2
a non-gcc compiler) by passing the '-i' flag to automake.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-04-03Make this compile and install on Linux.jschauma5-8/+45
2002-12-04Correct output filename: Extrnals.html, not Extnals.htmlrearnsha2-5/+5
2002-12-03Downgrade buildlink depends to libwww>=5.3.2nb2.wiz1-2/+2
Noted by Frederick Bruckman on tech-pkg.
2002-11-20BUGFIX: an glitch got into one if the patch files of the updated libwww ...reinoud2-5/+6
please update for gmake can get into an endless loop
2002-11-19Remove "nb1" after recent update to 5.4.0.jlam2-4/+3
2002-11-19Update of the libwww package to the w3c-libwww-5.4.0 distro as found onreinoud7-85/+66
w3c.org. It features some bug fixes and new function calls that are used in the new Amaya f.e. Tested on Alpha
2002-10-26Don't compile/install libmd5 on solaris, there is one in /usr/lib whichbouyer7-28/+102
seems good enouth, and using libwww's one breaks other system lib (librt).
2002-10-12Complete conversion to buildlink2 (hi johnny!).wiz1-3/+3
2002-10-09Unused.wiz1-73/+0
2002-10-02Convert to use automake.mk.wiz1-6/+7
2002-09-23-Wl,-rpath -> -Wl,-R to also work on Solaris.markd2-4/+4
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam6-10/+71
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-07Add an explicit runpath for the libwwwssl.so.1.0 shared library, andfredb3-12/+8
partially revert Makefile, v1.32, so platforms without openssl-0.9.6e in base will be able to find libssl.so.300 and libcrypto.so.300 for binaries linked against libwwwwwl.so. Bump pkgrevision to reflect the change in dependencies on platforms without openssl-0.9.6e in base.
2002-08-01Change MAINTAINER from tv at netbsd dot org to packages at netbsd dot orgjschauma1-2/+2
after consulting with Todd. Any volunteers for any of these packages?
2002-07-24Change explicit build dependencies on perl into "USE_PERL5=build". Thisjlam1-2/+2
makes these packages build correctly on Darwin where perl>=5.8.0 is required.