mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 13:10:31 -04:00
- Maildir quota is now enabled by default. The following options were deleted: - WITH_MAILDIRQUOTA - WITH_TRASHQUOTA - New option WITH_AUTHLIB is added, which provides optional support for Courier Auth Library (mail/courier-authlib port). - Userdb authentication, LDAP and MySQL support are provided through courier-authlib now, thus the following options - WITH_USERDB - WITH_LDAP - WITH_MYSQL have been superceded by WITH_AUTHLIB. WARNING! WARNING! WARNING! - Unfortunately, when maildrop is compiled using WITH_AUTHLIB knob, the resulting binary cannot properly locate libcourierauth.so.0 library: yasu@sugar[22]% ldd /usr/local/bin/maildrop /usr/local/bin/maildrop: libcourierauth.so.0 => not found (0x0) libstdc++.so.3 => /usr/lib/libstdc++.so.3 (0x2808e000) libm.so.2 => /usr/lib/libm.so.2 (0x280d3000) libc.so.4 => /usr/lib/libc.so.4 (0x280ee000) This is because libcourierauth.so.0 is not installed in the standard library path of dynamic linker. One possible solution is to add '-rpath ${LOCALBASE}/lib/courier-authlib' to linker flags. Unfortunately, this breaks the installation procedure. A solution to this problem is being actively sought, and I hope it will be fixed shortly. PR: ports/76786 Submitted by: KIMURA Yasuhiro <yasu@utahime.org>
11 lines
594 B
Text
11 lines
594 B
Text
--- Makefile.in.orig Sat Jan 22 23:54:33 2005
|
|
+++ Makefile.in Sat Jan 22 23:54:58 2005
|
|
@@ -230,7 +230,7 @@
|
|
SUBDIRS = numlib liblock unicode rfc822 rfc2045 gdbmobj bdbobj maildir maildrop
|
|
EXTRA_DIST = README.html INSTALL.html UPGRADE.html README.postfix maildroptips.txt automake.fix COPYING.GPL manpage.css
|
|
scriptdir = $(pkgdatadir)/scripts
|
|
-htmldir = $(pkgdatadir)/html
|
|
+htmldir = $(datadir)/doc/@PACKAGE@
|
|
DELIVERQUOTAHTMLSOURCE = maildirquota.html deliverquota.html
|
|
@INSTALL_DELIVERQUOTA_FALSE@DELIVERQUOTAHTML =
|
|
@INSTALL_DELIVERQUOTA_TRUE@DELIVERQUOTAHTML = $(DELIVERQUOTAHTMLSOURCE)
|