diff options
author | Martin Matuska <mm@FreeBSD.org> | 2015-02-02 10:32:26 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2015-02-02 10:32:26 +0000 |
commit | 241a1f4e2eb97bf182199fa77d40131a6810ce1a (patch) | |
tree | 76a0617af56783ceb9dd486239af32192ba9f6bc /ftp/proftpd | |
parent | The project moved from google code to github. The distfile checksum update (diff) |
Change -pthread to -lpthread
PR: 195921
Reported by: John Marino
Notes
Notes:
svn path=/head/; revision=378300
Diffstat (limited to 'ftp/proftpd')
-rw-r--r-- | ftp/proftpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile index 7bbf178cc3c8..db46c42c7e0e 100644 --- a/ftp/proftpd/Makefile +++ b/ftp/proftpd/Makefile @@ -5,7 +5,7 @@ PORTNAME?= proftpd .if !defined(DISTVERSION) PORTVERSION?= ${PROFTPD_VERSION} .endif -PORTREVISION?= 5 +PORTREVISION?= 6 CATEGORIES?= ftp MASTER_SITES= ftp://ftp.proftpd.org/distrib/source/ \ https://github.com/downloads/proftpd/proftpd.github.com/ \ @@ -101,7 +101,7 @@ PLIST_SUB+= LOCALSTATEDIR="${LOCALSTATEDIR}" .if !defined(_BUILDING_PROFTPD_MODULE) CPPFLAGS+= -DHAVE_OPENSSL -I${OPENSSLINC} LIBS+= -lssl -lcrypto -L${OPENSSLLIB} -LDFLAGS+= -pthread +LDFLAGS+= -lpthread .endif .if !defined(_BUILDING_PROFTPD_MODULE) |