diff options
author | jschauma <jschauma@pkgsrc.org> | 2006-12-02 22:50:20 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2006-12-02 22:50:20 +0000 |
commit | 8b67b5cea028fb184702dc1a8f3f29a9e23bdda4 (patch) | |
tree | 55770640b9200fade5a09d5a7a99e0bd939687b6 /audio | |
parent | f8689a84ed217f5d64ba442f5a5e3d238a9005bd (diff) | |
download | pkgsrc-8b67b5cea028fb184702dc1a8f3f29a9e23bdda4.tar.gz |
it appears that under IRIX, we need to explicitly link against -lm.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/esound/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/esound/Makefile b/audio/esound/Makefile index 170357a687b..f27cf3c3292 100644 --- a/audio/esound/Makefile +++ b/audio/esound/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.64 2006/11/05 17:14:19 joerg Exp $ +# $NetBSD: Makefile,v 1.65 2006/12/02 22:50:20 jschauma Exp $ DISTNAME= esound-0.2.36 PKGREVISION= 1 @@ -38,5 +38,7 @@ SUBST_SED.oss= -e 's,-lossaudio,${LIBOSSAUDIO},g' SUBST_MESSAGE.oss= Fixing oss. .endif +LDFLAGS.IRIX+= -lm + .include "../../audio/libaudiofile/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |