2004-12-29 16:31:24 by Min Sik Kim | Files touched by this commit (12) |
Log message:
Use VARBASE.
|
2004-12-18 22:01:46 by John Klos | Files touched by this commit (1) |
Log message:
BIND 9.3.0 dies right after launch on VAX and m68k when threading is
enabled. Until this is fixed, we'll turn off threading for VAX and m68k.
PowerPC has some other issue, and i386 and SPARC appear to work fine with
threading.
|
2004-10-03 11:20:41 by Matthias Scheler | Files touched by this commit (15) |
Log message:
Update "bind9" package to version 9.3.0. Changes since version 9.2.3:
- DNSSEC is now DS based (RFC 3658).
See also RFC 3845, doc/draft/draft-ietf-dnsext-dnssec-*.
- DNSSEC lookaside validation.
- check-names is now implemented.
- rrset-order in more complete.
- IPv4/IPv6 transition support, dual-stack-servers.
- IXFR deltas can now be generated when loading master files,
ixfr-from-differences.
- It is now possible to specify the size of a journal, max-journal-size.
- It is now possible to define a named set of master servers to be
used in masters clause, masters.
- The advertised EDNS UDP size can now be set, edns-udp-size.
allow-v6-synthesis has been obsoleted.
NOTE:
* Zones containing MD and MF will now be rejected.
* dig, nslookup name. now report "Not Implemented" as
NOTIMP rather than NOTIMPL. This will have impact on scripts
that are looking for NOTIMPL.
- libbind: corresponds to that from BIND 8.4.5.
|
2004-10-03 02:18:40 by Todd Vierling | Files touched by this commit (863) |
Log message:
Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
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-30 17:07:46 by Matthias Scheler | Files touched by this commit (2) |
Log message:
Only set "BUILDLINK_LDADD.bind" if we are really using the \
"bind9" or
"bind9-current" package.
|
2004-09-23 06:33:22 by Johnny C. Lam | Files touched by this commit (1) |
Log message:
Favor using BUILDLINK_INCDIRS.<pkg> instead of BUILDLINK_CPPFLAGS.<pkg>
to add directories to the header search path. Also, use
BUILDLINK_LDADD.<pkg>, which currently doesn't do anything yet, but will
some time soon.
|
2004-09-22 22:48:44 by Matthias Scheler | Files touched by this commit (1) |
Log message:
Set "BUILDLINK_LDFLAGS.bind" to "-lbind" to make sure that \
programs or
libraries get linked with the BIND 9 resolver library.
|
2004-09-22 22:37:33 by Matthias Scheler | Files touched by this commit (1) |
Log message:
Map "include/bind" to "include" in the buildlink area so \
that programs
will pickup the BIND 9 version of e.g. "arpa/nameser.h".
|
2004-09-22 10:10:08 by Johnny C. Lam | Files touched by this commit (703) |
Log message:
Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
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-08-27 08:29:11 by Johnny C. Lam | Files touched by this commit (71) |
Log message:
Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,
which are the full option names used to set rpath directives for the
linker and the compiler, respectively. In places were we are invoking
the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is
inserted in case the flag is a word, e.g. -rpath. The default values
of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the
compiler that you use. They may be overridden on a ${OPSYS}-specific
basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG,
respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
|