summaryrefslogtreecommitdiff
path: root/net/mDNSResponder
AgeCommit message (Collapse)AuthorFilesLines
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-12-09Update MASTER_SITES.obache1-2/+2
2007-12-21Add DESTDIR support.obache1-5/+7
2007-09-07Convert packages that test and use USE_INET6 to use the options frameworkjlam1-3/+7
and to support the "inet6" option instead. Remaining usage of USE_INET6 was solely for the benefit of the scripts that generate the README.html files. Replace: BUILD_DEFS+= USE_INET6 with BUILD_DEFS+= IPV6_READY and teach the README-generation tools to look for that instead. This nukes USE_INET6 from pkgsrc proper. We leave a tiny bit of code to continue to support USE_INET6 for pkgsrc-wip until it has been nuked from there as well.
2007-06-17Modify the patch so that it compiles without a c99 compiler.minskim2-10/+14
2007-05-30Added a patch for sunpro on Solaris.rillig2-1/+21
2007-03-10Don't mix variable declarations and code. gcc said:rillig2-5/+22
mDNSUNP.c:243: parse error before `char'
2006-10-23Don't try to include nonexistant ipv6 header on Solaris.markd2-6/+8
From Volker Stolz in PR pkg/34883.
2006-10-04Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev.wiz1-2/+2
2006-07-17Fix build on FreeBSD and DragonFly, as shown in recent bulk builds andjoerg2-1/+16
PR 34022.
2006-07-11-enable ipv6drochner3-2/+91
-fix some RFC2292 vs 3542 confusion which made the former fail -on NetBSD, build a HINFO record from hw.model and kern.osrelease -bump PKGREVISION
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
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-03-03Update to 108: Changes unknown.wiz4-35/+11
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-2/+4
2006-02-04Fix build on Solaris.markd4-8/+40
2006-01-17Another attempt to get the pattern for NetBSD 3.0 correct.tron1-2/+3
2006-01-17Correct pattern for NetBSD 3.99.1 to 3.99.7 so it doesn't matchtron1-2/+2
NetBSD 3.99.15.
2006-01-17Next attempt to get the pattern correct for NetBSD 3.0.tron1-3/+2
2006-01-17Add another pattern to the "librfuncs" check which will match NetBSD 3.0tron1-1/+2
(and 3.1, 3.2, etc.). Problem pointed out by Greg Oster in private e-mail.
2006-01-17Use the "librfuncs" package under NetBSD 3.99.7 and older to gettron3-8/+18
strerror_r() and thereby fix the build problem under these releases. Based on changes suggested by Thomas Klausner in private e-mail.
2006-01-15Update to 107.5, changes unknown.wiz5-53/+17
2006-01-06Update to 107.3. Changes unknown.wiz5-11/+46
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+3
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-03Fixed wrong use of WRKSRC.rillig3-9/+9
2005-10-23Replaced the tab with a space after @comment to fix a pkglint warning.rillig1-1/+1
2005-08-21simplify some conditionals, indentgrant1-5/+5
2005-08-19Use PTHREAD_LDFLAGS and PTHREAD_LIBS instead of hard-coded -lpthread.reed2-4/+4
(Fixed build on DragonFly.)
2005-06-17Create directories before installing files into them.jlam1-1/+3
2005-06-16Deal with different versions of Darwin. Patch from Yuji Yamano onmarkd1-1/+7
pkgsrc-bulk.
2005-06-10Bump PKGREVISION for rpath fix.markd1-1/+2
2005-06-10Find libpthread.so when not on the default rpath.markd2-1/+15
Fixes bulk build on NetBSD-1.6.2.
2005-05-26Update mDNSResponder to version 107.1.markd5-15/+95
Changes: bug fixes, portability Also install the library and header file.
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-02-24Add RMD160 digests.agc1-1/+2
2005-01-13net/mDNSResponder, part of apple rendezvous technologyitojun4-0/+35