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 /x11 | |
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 'x11')
-rw-r--r-- | x11/gtk2/Makefile | 3 | ||||
-rw-r--r-- | x11/kdelibs4/Makefile | 3 | ||||
-rw-r--r-- | x11/wdm/Makefile | 4 | ||||
-rw-r--r-- | x11/xclip/Makefile | 4 |
4 files changed, 5 insertions, 9 deletions
diff --git a/x11/gtk2/Makefile b/x11/gtk2/Makefile index 31715a1a36b..c74f3de1e66 100644 --- a/x11/gtk2/Makefile +++ b/x11/gtk2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.326 2022/06/30 11:19:01 nia Exp $ +# $NetBSD: Makefile,v 1.327 2022/08/09 12:08:35 jperkin Exp $ DISTNAME= gtk+-2.24.33 PKGNAME= ${DISTNAME:S/gtk/gtk2/} @@ -54,7 +54,6 @@ REQD_DIRS+= ${PREFIX}/libdata/gtk-2.0 BUILD_DIRS= . demos/gtk-demo -LDFLAGS.SunOS+= -lintl # fix for 'only weak aliases are supported on darwin' error CONFIGURE_ARGS.Darwin+= --disable-visibility diff --git a/x11/kdelibs4/Makefile b/x11/kdelibs4/Makefile index 6e3f8d7f608..b56ab47e0ff 100644 --- a/x11/kdelibs4/Makefile +++ b/x11/kdelibs4/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.131 2022/07/14 23:46:27 dholland Exp $ +# $NetBSD: Makefile,v 1.132 2022/08/09 12:08:35 jperkin Exp $ DISTNAME= kdelibs-4.14.38 PKGNAME= ${DISTNAME:S/-4/4-4/} @@ -83,7 +83,6 @@ PLIST.kgrantpty= yes CFLAGS.SunOS+= -D__EXTENSIONS__ LDFLAGS.Darwin+= -lintl -LDFLAGS.SunOS+= -lintl # jasper uses SIZE_MAX and friends in its headers. CXXFLAGS+= -D__STDC_LIMIT_MACROS diff --git a/x11/wdm/Makefile b/x11/wdm/Makefile index 4a4f7d38727..d9632c14d57 100644 --- a/x11/wdm/Makefile +++ b/x11/wdm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.67 2020/08/17 20:20:37 leot Exp $ +# $NetBSD: Makefile,v 1.68 2022/08/09 12:08:35 jperkin Exp $ DISTNAME= wdm-1.28 PKGREVISION= 22 @@ -15,7 +15,7 @@ USE_PKGLOCALEDIR= YES GNU_CONFIGURE= YES LDFLAGS.DragonFly= -lintl -lfontconfig -LDFLAGS.SunOS+= -lintl -lresolv +LDFLAGS.SunOS+= -lresolv CONFIGURE_ARGS+= --with-wdmdir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= --with-nlsdir=${PREFIX}/${PKGLOCALEDIR}/locale diff --git a/x11/xclip/Makefile b/x11/xclip/Makefile index 0d40a2e7e45..b00e88865fc 100644 --- a/x11/xclip/Makefile +++ b/x11/xclip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2020/11/08 15:25:58 kim Exp $ +# $NetBSD: Makefile,v 1.22 2022/08/09 12:08:35 jperkin Exp $ DISTNAME= xclip-0.13 PKGREVISION= 1 @@ -13,8 +13,6 @@ LICENSE= gnu-gpl-v2 GNU_CONFIGURE= yes USE_TOOLS+= autoconf gmake -LDFLAGS.SunOS+= -liconv - pre-configure: cd ${WRKSRC} && autoreconf |