diff options
author | jperkin <jperkin@pkgsrc.org> | 2022-08-09 12:08:27 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2022-08-09 12:08:27 +0000 |
commit | a77729245b392c9b6613bcb6e910961a45adb77a (patch) | |
tree | 2205f0fbf69293361282d6743184c6be82a92e37 /wm | |
parent | bc7be69155f5a762584a114cc42cf44ab2f2d461 (diff) | |
download | pkgsrc-a77729245b392c9b6613bcb6e910961a45adb77a.tar.gz |
*: Remove hardcoded -liconv / -lintl on SunOS.
This is now handled centrally via OPSYS_EXPLICIT_LIBDEPS support in libiconv
and gettext-lib.
Diffstat (limited to 'wm')
-rw-r--r-- | wm/i3/Makefile | 4 | ||||
-rw-r--r-- | wm/icewm/Makefile | 4 | ||||
-rw-r--r-- | wm/icewm/Makefile.common | 3 | ||||
-rw-r--r-- | wm/wmii/Makefile | 4 |
4 files changed, 6 insertions, 9 deletions
diff --git a/wm/i3/Makefile b/wm/i3/Makefile index e70a5e52e7d..c136ffecb5f 100644 --- a/wm/i3/Makefile +++ b/wm/i3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2022/06/28 11:37:00 wiz Exp $ +# $NetBSD: Makefile,v 1.50 2022/08/09 12:08:31 jperkin Exp $ DISTNAME= i3-4.20.1 PKGREVISION= 2 @@ -15,7 +15,7 @@ GNU_CONFIGURE= yes USE_TOOLS+= bash pkg-config perl:run USE_LANGUAGES= c99 -LDFLAGS.SunOS+= -lgen -liconv -lsocket +LDFLAGS.SunOS+= -lgen -lsocket EGDIR= ${PREFIX}/share/examples/i3 OWN_DIRS+= ${PKG_SYSCONFDIR}/i3 diff --git a/wm/icewm/Makefile b/wm/icewm/Makefile index bf1c8cb821a..e6f918890e4 100644 --- a/wm/icewm/Makefile +++ b/wm/icewm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.52 2022/07/29 16:29:09 jperkin Exp $ +# $NetBSD: Makefile,v 1.53 2022/08/09 12:08:31 jperkin Exp $ COMMENT= Small, fast and light-weight window manager PKGREVISION= 3 @@ -8,8 +8,6 @@ CONFLICTS+= icewm-gnome-[0-9]* icewm-imlib-[0-9]* CONFIGURE_ARGS+= --with-imlib=no CONFIGURE_ARGS+= --with-xpm=${BUILDLINK_PREFIX.libXpm} -LIBS.SunOS+= -lintl - .include "Makefile.common" .include "../../x11/libXext/buildlink3.mk" .include "../../x11/libXinerama/buildlink3.mk" diff --git a/wm/icewm/Makefile.common b/wm/icewm/Makefile.common index 065bd5a8beb..b921b201aa3 100644 --- a/wm/icewm/Makefile.common +++ b/wm/icewm/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.73 2022/05/10 11:50:55 nia Exp $ +# $NetBSD: Makefile.common,v 1.74 2022/08/09 12:08:31 jperkin Exp $ # # used by wm/icewm/Makefile # used by wm/icewm-imlib/Makefile @@ -49,7 +49,6 @@ SUBST_MESSAGE.apm= Disable APM applet. .endif CONFIGURE_ARGS.NetBSD+= --with-unicode-set=utf-32 -LIBS.SunOS+= -lintl DOCDIR= ${PREFIX}/share/doc/icewm HTMLDIR= ${PREFIX}/share/doc/icewm/html diff --git a/wm/wmii/Makefile b/wm/wmii/Makefile index 9b6d7a51a06..01ef44cf6ae 100644 --- a/wm/wmii/Makefile +++ b/wm/wmii/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2021/07/21 14:40:31 taca Exp $ +# $NetBSD: Makefile,v 1.42 2022/08/09 12:08:31 jperkin Exp $ DISTNAME= wmii+ixp-3.9.2 PKGNAME= wmii-3.9.2 @@ -47,7 +47,7 @@ CONF_FILES+= ${EGDIR}/${EGSUBDIR.${subdir}}/${file} \ .endfor LDFLAGS.NetBSD+= -lm # frexp -LDFLAGS.SunOS+= -lsocket -lnsl -liconv +LDFLAGS.SunOS+= -lsocket -lnsl SUBST_CLASSES+= vars SUBST_STAGE.vars= pre-configure |