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 | b42141dbb7d57f0435668f1ba4071eafab9f3fa3 (patch) | |
tree | a848187a3b9fe88db072c9649ba291b2216af91e | |
parent | 33dcf41452749c5de177355097d5e7e546c59beb (diff) | |
download | pkgsrc-b42141dbb7d57f0435668f1ba4071eafab9f3fa3.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
-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 |