mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
aa5812b1b0
- Move auth options into its own single group - Clarify PASSWD and VALIAS options Changes: (* was already applied in our 5.4.32) Matt Brookings * - Defaulted to Server::Disable=True in vusagec.conf * - Fixed bug that didn't install vusagec.conf - Changed relevant quota code to use storage_t 64bit type - Fixed bug where backfill code wouldn't compile when FILE_LOCKING was enabled - Updated MySQL module to support larger quota sizes - Fixed typo - Added disable_maildrop flag to MySQL limits feature - More changes to allow for larger quota sizes in MySQL module Tullio Andreatta - Dynamic allocation of valias data - Use of open/fchdir rather than getcwd/chdir to maintain current working directory - Fixed a broken symbolic link check Drew Wells - Modification to vdelivermail to properly handle Maildir paths that begin with "./" <kenji@kens.fm> - Removed call to maildir_addquota inside user_over_maildirquota causing duplicate maildirsize entries
27 lines
1.4 KiB
Plaintext
27 lines
1.4 KiB
Plaintext
Description: Install config files with -dist, do not add -fPIC.
|
|
Install the config files with a -dist extension.
|
|
Do not unconditionally add -fPIC, this is done only for shared libs.
|
|
Forwarded: not-needed
|
|
Author: Peter Pentchev <roam@FreeBSD.org>
|
|
Last-Update: 2010-09-13
|
|
|
|
--- Makefile.in.orig 2011-02-28 11:00:45.000000000 -0600
|
|
+++ Makefile.in 2014-04-10 11:17:21.360658218 -0500
|
|
@@ -357,13 +357,12 @@
|
|
noinst_HEADERS = md5.h vpopmail.h file_lock.h vauth.h vlimits.h maildirquota.h vcdb.h vldap.h vmysql.h voracle.h vpgsql.h vsybase.h vlog.h global.h hmac_md5.h seek.h vutil.h
|
|
COMMONSOURCES = vpopmail.c md5.c bigdir.c vauth.c file_lock.c vpalias.c seek.c vlimits.c maildirquota.c vutil.c vlistlib.c backfill.c client.c conf.c ippp.c
|
|
CONFIG_CLEAN_FILES = vauth.c cdb/conf-cc cdb/conf-ld cdb/compile cdb/load
|
|
-MYSQLCONF = $(DESTDIR)@vpopmaildir@/etc/vpopmail.mysql
|
|
-VLIMITS = $(DESTDIR)@vpopmaildir@/etc/vlimits.default
|
|
-VUSAGECCONF = $(DESTDIR)@vpopmaildir@/etc/vusagec.conf
|
|
+MYSQLCONF = $(DESTDIR)@vpopmaildir@/etc/vpopmail.mysql-dist
|
|
+VLIMITS = $(DESTDIR)@vpopmaildir@/etc/vlimits.default-dist
|
|
+VUSAGECCONF = $(DESTDIR)@vpopmaildir@/etc/vusagec.conf-dist
|
|
noinst_LIBRARIES = libvpopmail.a
|
|
libvpopmail_a_SOURCES = $(COMMONSOURCES)
|
|
libvpopmail_a_LIBADD = cdb/*.o
|
|
-libvpopmail_a_CFLAGS = -fPIC
|
|
vpopmailbindir = @vpopmaildir@/bin
|
|
vusagec_SOURCES = vusagec.c client.c conf.c ippp.c
|
|
vusagec_LDADD = libvpopmail.a @auth_libs@
|