Solved [Solved] BIND 9.10 on FreeBSD 10

I am in the process of upgrading to FreeBSD 10, and would be intending to use BIND as I need the authoritative aspect of DNS that I can't get with unbound. As such, I switched to the ports folder /usr/ports/dns/bind910 and executed make config. I don't believe I need Heimdal, or GSSAPI at all, as I won't be tying this instance into any form of Samba authentication, or Windows Kerberos server. As a result, I've selected No GSSAPI support, however when I execute make it still installed Heimdal.

I am unsure why this is happening, it does look like GSSAPI was forced on in a change made earlier today, but I should still have the option to disable it.

Additionally, Heimdal is failing to even install:
Code:
====> Compressing man pages (compress-man)
===>  Installing for heimdal-1.5.2_5
===>  Checking if security/heimdal already installed
===>   Registering installation for heimdal-1.5.2_5 as automatic
pkg-static: lstat(/usr/ports/security/heimdal/work/stage/usr/local/man/man8/kcm.8.gz): No such file or directory
*** Error code 74

Stop.
make[3]: stopped in /usr/ports/security/heimdal
*** Error code 1

Stop.
make[2]: stopped in /usr/ports/security/heimdal
*** Error code 1

Stop.
make[1]: stopped in /usr/ports/dns/bind910
*** Error code 1

Stop.
make: stopped in /usr/ports/dns/bind910

Does anyone have an ideas on how I can work around this particular issue?
 
Re: BIND 9.10 on FreeBSD 10

I don't understand. It looks like the default as of today is "GSSAPI_NONE" as in it's off already. You shouldn't have had to change anything. There were also two updates to the port today and maybe the second fixed an issue in the first commit. You may want to update your ports tree and rm /var/db/ports/dns_bind910 to remove any options you have set and try again. If your aren't changing any options you can also just try the package.
 
Re: BIND 9.10 on FreeBSD 10

Thanks for the response. After updating the ports tree again, it does appear that GSSAPI_NONE is now the default option. However, before the update it was GSSAPI_HEIMDAL. After this change, BIND was able to start building, and is no longer trying to install Heimdal.
 
Back
Top