diff options
author | nia <nia@pkgsrc.org> | 2020-06-28 13:55:59 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2020-06-28 13:55:59 +0000 |
commit | 7ad6668135bfbe7042e50eb5643b7afe2253a365 (patch) | |
tree | 3326be031a56c59b8f358afc0e1d0ab673e98b9d /www/fcgi | |
parent | 307b6f14d43968e88a5c5816ba651e026e045768 (diff) | |
download | pkgsrc-7ad6668135bfbe7042e50eb5643b7afe2253a365.tar.gz |
fcgi: Needs -lm for frexp()
(presumably not on architectures where it's a compiler intrinsic?)
Bump PKGREVISION
Diffstat (limited to 'www/fcgi')
-rw-r--r-- | www/fcgi/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/fcgi/Makefile b/www/fcgi/Makefile index e4d02ed3dff..02c39b5e8d9 100644 --- a/www/fcgi/Makefile +++ b/www/fcgi/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.20 2017/08/16 20:45:46 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2020/06/28 13:55:59 nia Exp $ DISTNAME= fcgi-2.4.0 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= www devel #MASTER_SITES= http://fastcgi.com/dist/ @@ -16,5 +16,7 @@ GNU_CONFIGURE= YES USE_LIBTOOL= YES PTHREAD_OPTS+= require +LIBS.NetBSD+= -lm # frexp() + .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |