diff options
author | seb <seb@pkgsrc.org> | 2003-08-09 17:11:04 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2003-08-09 17:11:04 +0000 |
commit | b654a062e1dba7224f495f4b038ca2610858e484 (patch) | |
tree | 789f2d6a04b736a7812983cfe172399819c9ded4 /chat | |
parent | dcbe6f8ca9694917d47c422f4c706985c9f52eaa (diff) | |
download | pkgsrc-b654a062e1dba7224f495f4b038ca2610858e484.tar.gz |
Deal with blindly added -liconv in src/Makefile.{am,in}:
-current does not have it and can do without it.
XXX Time to add this BUILDLINK_TRANSFORM directive to
converters/libiconv/buildlink2.mk ?
Diffstat (limited to 'chat')
-rw-r--r-- | chat/everybuddy/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chat/everybuddy/Makefile b/chat/everybuddy/Makefile index e60c7e0d063..e8bad8c60ba 100644 --- a/chat/everybuddy/Makefile +++ b/chat/everybuddy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2003/07/13 13:50:45 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2003/08/09 17:11:04 seb Exp $ .include "Makefile.common" PKGREVISION= 4 @@ -10,3 +10,8 @@ CONFLICTS+= everybuddy-gnome-[0-9]* .include "../../converters/libiconv/buildlink2.mk" .include "../../x11/gtk/buildlink2.mk" .include "../../mk/bsd.pkg.mk" + +_ICONV_LIB= ${BUILDLINK_LIBICONV_LDADD:M-l*:C/-l//} +.if empty(_ICONV_LIB) +BUILDLINK_TRANSFORM+= S:-liconv: +.endif |