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 /chat/centericq/Makefile | |
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 'chat/centericq/Makefile')
-rw-r--r-- | chat/centericq/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chat/centericq/Makefile b/chat/centericq/Makefile index f8322388735..8f6803e9b20 100644 --- a/chat/centericq/Makefile +++ b/chat/centericq/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2003/05/22 13:27:45 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2003/05/29 23:14:07 grant Exp $ # DISTNAME= centericq-4.9.2 @@ -12,7 +12,7 @@ COMMENT= Instant Messenger interface (ICQ2000, Yahoo!, and MSN support) USE_BUILDLINK2= yes USE_PKGLOCALEDIR= yes -USE_CXX= yes +USE_GCC_SHLIB= yes USE_GMAKE= yes GNU_CONFIGURE= yes LIBS= ${LDFLAGS} @@ -26,7 +26,6 @@ INCOMPAT_CURSES+= NetBSD-1.6[A-T]-* .include "../../devel/glib/buildlink2.mk" .include "../../devel/gettext-lib/buildlink2.mk" .include "../../devel/ncurses/buildlink2.mk" -.include "../../lang/gcc/buildlink2.mk" .include "../../lang/perl5/buildlink2.mk" .include "../../security/openssl/buildlink2.mk" |