diff options
author | tv <tv> | 2005-11-07 21:17:07 +0000 |
---|---|---|
committer | tv <tv> | 2005-11-07 21:17:07 +0000 |
commit | f18917db78220e63983f974c4986c2c73c018960 (patch) | |
tree | 22395dc2fd474498bf8f5922655eddae6f2fd1de | |
parent | 3ab3fc8ca23cf78cd2237e7d3a2543cf0af10767 (diff) | |
download | pkgsrc-f18917db78220e63983f974c4986c2c73c018960.tar.gz |
-LSM wasn't doing anything at all; remove it.
Add EXTRA_LIBS.Interix where the intended option actually is needed (-lSM
with a lower case 'l').
-rw-r--r-- | mail/coolmail/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/coolmail/Makefile b/mail/coolmail/Makefile index 4925fcf01c0..bf09aa3bdf0 100644 --- a/mail/coolmail/Makefile +++ b/mail/coolmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2005/10/22 17:56:31 rillig Exp $ +# $NetBSD: Makefile,v 1.9 2005/11/07 21:17:07 tv Exp $ DISTNAME= coolmail-1.3 PKGREVISION= 1 @@ -10,8 +10,9 @@ MAINTAINER= root@garbled.net COMMENT= Xbiff replacement with 3D animation and sound OPSYSVARS+= EXTRA_LIBS -EXTRA_LIBS.*= -LSM -lcompat -EXTRA_LIBS.IRIX= -LSM +EXTRA_LIBS.*= -lcompat +EXTRA_LIBS.Interix= -lSM +EXTRA_LIBS.IRIX= # empty MAKE_ENV+= EXTRA_LIBS=${EXTRA_LIBS:Q} MAKE_ENV+= X11BASE=${PREFIX} USE_X11BASE= yes |