Solved OpenDKIM Installation Packages Conflict

I am running FreeBSD 9.3. I have a Postfix setup and I am now trying to install OpenDKIM. But the install fails due to a packages conflict as follow:

Code:
[root@jingle opendkim]# make install clean
===>  opendkim-2.9.2_6 depends on file: /usr/local/lib/libmilter.so.6 - not found
===>  Verifying install for /usr/local/lib/libmilter.so.6 in /usr/ports/mail/sendmail

===>  sendmail+tls+sasl2-8.15.1 conflicts with installed package(s):
  postfix-2.11.3_3,1

  They install files into the same place.
  You may want to stop build with Ctrl + C.
===>  Found saved configuration for sendmail+tls+sasl2-8.15.1
===>  sendmail+tls+sasl2-8.15.1 depends on file: /usr/local/sbin/pkg - found
===> Fetching all distfiles required by sendmail+tls+sasl2-8.15.1 for building

===>  sendmail+tls+sasl2-8.15.1 conflicts with installed package(s):
  postfix-2.11.3_3,1

  They will not build together.
  Please remove them first with pkg delete.
*** [check-build-conflicts] Error code 1

Stop in /usr/ports/mail/sendmail.
*** [install] Error code 1

Stop in /usr/ports/mail/sendmail.
*** [build-depends] Error code 1

Stop in /usr/ports/mail/opendkim.
*** [install] Error code 1

Stop in /usr/ports/mail/opendkim.
 
Turn off the FILTER option:
Code:
FILTER=on: OpenDKIM filter, requires libmilter/Sendmail
 
Solved. I had set:
Code:
WITHOUT_SENDMAIL=yes
in /etc/src.conf. I removed that and rebuilt world. OpenDKIM took Sendmail libmilter from the base then.
 
Back
Top