diff options
author | rumko <rumko@pkgsrc.org> | 2015-01-09 16:33:15 +0000 |
---|---|---|
committer | rumko <rumko@pkgsrc.org> | 2015-01-09 16:33:15 +0000 |
commit | 4d4b774c08486a32934966c2238393f6298e5af6 (patch) | |
tree | a848187a3b9fe88db072c9649ba291b2216af91e /audio | |
parent | 926a8caa585888c225117daeb8f15c67476eafb1 (diff) | |
download | pkgsrc-4d4b774c08486a32934966c2238393f6298e5af6.tar.gz |
audio/esound: fix build on fbsd due to missing libm
As on some other systems, fbsd also needs -lm in LDFLAGS in order
for esound to build successfully.
Ok@ wiz
Diffstat (limited to 'audio')
-rw-r--r-- | audio/esound/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/esound/Makefile b/audio/esound/Makefile index f03fbf59175..d8338c64789 100644 --- a/audio/esound/Makefile +++ b/audio/esound/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.82 2014/10/09 14:05:55 wiz Exp $ +# $NetBSD: Makefile,v 1.83 2015/01/09 16:33:15 rumko Exp $ DISTNAME= esound-0.2.41 PKGREVISION= 3 @@ -40,6 +40,7 @@ SUBST_MESSAGE.oss= Fixing oss. LDFLAGS.IRIX+= -lm LDFLAGS.DragonFly+= -lm +LDFLAGS.FreeBSD+= -lm LDFLAGS.SunOS+= -lm -lsocket -lnsl REPLACE_SH+= esd-config.in |