diff options
author | marino <marino@FreeBSD.org> | 2015-03-25 19:41:17 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-03-25 19:41:17 +0800 |
commit | 7a3c09c8629c7b7c365ea80e46d946d1da82663c (patch) | |
tree | 6d2ffbb1407cdb4a2e3486ad1b3832d701cce999 /mail/missey | |
parent | 2cdc49d75ec39e3aa9a1f18bc0ccd327f6c00e99 (diff) | |
download | freebsd-ports-gnome-7a3c09c8629c7b7c365ea80e46d946d1da82663c.tar.gz freebsd-ports-gnome-7a3c09c8629c7b7c365ea80e46d946d1da82663c.tar.zst freebsd-ports-gnome-7a3c09c8629c7b7c365ea80e46d946d1da82663c.zip |
mail category: Remove $PTHREAD_LIBS
Note: The following ports did not pass check-plist (CP) or stage-qa (QA)
tests. The sendmail port has many problems, but this was already known
by myself as I fixed it properly on DPorts last week. It's a forward
action to submit a PR against mail/sendmail.
* antivirus-milter (CP)
* dk-milter (CP)
* milter-regex (CP)
* sendmail (CP, QA)
approved by: PTHREAD blanket
Diffstat (limited to 'mail/missey')
-rw-r--r-- | mail/missey/Makefile | 5 | ||||
-rw-r--r-- | mail/missey/files/Makefile | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/mail/missey/Makefile b/mail/missey/Makefile index 0faa86505be5..9b8023764a1a 100644 --- a/mail/missey/Makefile +++ b/mail/missey/Makefile @@ -14,9 +14,8 @@ COMMENT= Secure small and high performance POP3 server USES= tar:bzip2 -MAKE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" PTHREAD_LIBS="${PTHREAD_LIBS}" \ - INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ - INSTALL_DATA="${INSTALL_DATA}" MKDIR="${MKDIR}" WRKSRC="${WRKSRC}" +MAKE_ENV+= INSTALL_PROGRAM="${INSTALL_PROGRAM}" WRKSRC="${WRKSRC}" \ + INSTALL_DATA="${INSTALL_DATA}" MKDIR="${MKDIR}" PLIST_FILES= sbin/bent sbin/mps etc/mps/pop3d.conf-dist diff --git a/mail/missey/files/Makefile b/mail/missey/files/Makefile index a2c8172194cf..9c812448c3f2 100644 --- a/mail/missey/files/Makefile +++ b/mail/missey/files/Makefile @@ -15,7 +15,7 @@ all: $(MPS) $(BENT) $(MPS): $(OBJS_M) $(CC) ${CFLAGS} -o $(MPS) $(OBJS_M) $(LDFLAGS) $(BENT): $(OBJS_B) - $(CC) ${CFLAGS} ${PTHREAD_CFLAGS} -o $(BENT) $(SRCS_B) ${PTHREAD_LIBS} + $(CC) ${CFLAGS} -o $(BENT) $(SRCS_B) -lpthread install: @${MKDIR} -p $(DESTDIR)$(PREFIX)/etc/mps/ ${INSTALL_DATA} $(WRKSRC)/pop3d.conf $(DESTDIR)$(PREFIX)/etc/mps/pop3d.conf-dist |