diff options
author | grant <grant> | 2003-05-29 23:14:07 +0000 |
---|---|---|
committer | grant <grant> | 2003-05-29 23:14:07 +0000 |
commit | ee816425f3e1744278d353bbbcff42611f8f20b3 (patch) | |
tree | 2ab39a00d70ddd1fe87ded8ec8941560f6ff8dee /mail | |
parent | 6d140306195b275b74f3eb1a512dad0797c70f61 (diff) | |
download | pkgsrc-ee816425f3e1744278d353bbbcff42611f8f20b3.tar.gz |
s/USE_CXX/USE_GCC_SHLIB/ - there are more shared libraries than just
libstdc++ in gcc3.
when defined, USE_GCC_SHLIB ensures that the correct rpath is passed
to the linker, and a full dependency on the compiler package is
registered.
packages which define USE_GCC_SHLIB should not include
mk/gcc.buildlink2.mk (or gcc{,3}/buildlink2.mk) as it is handled
automatically.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/maildrop/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/maildrop/Makefile b/mail/maildrop/Makefile index 9ee696188b4..c219f07442e 100644 --- a/mail/maildrop/Makefile +++ b/mail/maildrop/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2002/11/15 00:04:41 jlam Exp $ +# $NetBSD: Makefile,v 1.13 2003/05/29 23:14:09 grant Exp $ DISTNAME= maildrop-1.3.9 COMMENT= Courier mail delivery agent with filtering abilities @@ -9,7 +9,7 @@ USE_PERL5= build DEPENDS+= courier-maildirmake>=0.37.1:../../mail/courier-maildirmake USE_BUILDLINK2= yes -USE_CXX= yes +USE_GCC_SHLIB= yes .include "../../mail/courier-auth/Makefile.common" |