diff options
author | tijl <tijl@FreeBSD.org> | 2015-01-10 02:59:04 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2015-01-10 02:59:04 +0800 |
commit | 2e3ba8928c62e394fecfceab39622e562d8dba3f (patch) | |
tree | 96783e36d9c17f617c376442bd890902fe648a08 /mail | |
parent | 0122f1bc96fefb4a012e1bb572554ac79b9482bb (diff) | |
download | freebsd-ports-gnome-2e3ba8928c62e394fecfceab39622e562d8dba3f.tar.gz freebsd-ports-gnome-2e3ba8928c62e394fecfceab39622e562d8dba3f.tar.zst freebsd-ports-gnome-2e3ba8928c62e394fecfceab39622e562d8dba3f.zip |
- Remove s/-lpthread/-pthread/
- Support SSL/TLS versions above SSLv2
PR: 195796
Diffstat (limited to 'mail')
-rw-r--r-- | mail/wmmaiload/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/wmmaiload/Makefile b/mail/wmmaiload/Makefile index 342e664943d3..78fd25be288b 100644 --- a/mail/wmmaiload/Makefile +++ b/mail/wmmaiload/Makefile @@ -3,7 +3,7 @@ PORTNAME= wmmaiload PORTVERSION= 2.2.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail windowmaker MASTER_SITES= http://tnemeth.free.fr/projets/programmes/ @@ -47,8 +47,7 @@ post-patch: @${FIND} ${WRKSRC} -name "Makefile" | ${XARGS} ${REINPLACE_CMD} -e \ 's| =| ?=|' .for i in wmmaiload/Init.make - @${REINPLACE_CMD} -e 's|-L/usr/X11R6/lib||g ; \ - s|-lpthread|-pthread|g' ${WRKSRC}/${i} + @${REINPLACE_CMD} -e 's|-L/usr/X11R6/lib||g' ${WRKSRC}/${i} .endfor .for i in wmmaiload/checkthread.c @${REINPLACE_CMD} -e 's|isnumber(|isnum(|g' ${WRKSRC}/${i} @@ -68,6 +67,8 @@ post-patch: s|remove =|rm =|g ; \ s|PACKAGE"-config"|PACKAGE|g' ${WRKSRC}/${i} .endfor + @${REINPLACE_CMD} 's/SSLv2_client_method/SSLv23_client_method/' \ + ${WRKSRC}/wmmaiload/ssl.c do-install: .for i in wmmaiload wmmaiload-config |