diff options
author | grant <grant@pkgsrc.org> | 2004-05-22 12:32:40 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-05-22 12:32:40 +0000 |
commit | d12b8b88fe4adc0e2a49e7da676779ad12b34a08 (patch) | |
tree | dd7a9f1babefca223d52a18258c0497b935dafae | |
parent | 91d5d546a42c9bc43d71c3174f4f930a1111aa54 (diff) | |
download | pkgsrc-d12b8b88fe4adc0e2a49e7da676779ad12b34a08.tar.gz |
NetBSD gtk2 builds are linked against gtk2-2.4, update DEPENDS to
reflect this.
-rw-r--r-- | www/mozilla-bin/Makefile.common | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/www/mozilla-bin/Makefile.common b/www/mozilla-bin/Makefile.common index 9aab63d53de..a872b2771eb 100644 --- a/www/mozilla-bin/Makefile.common +++ b/www/mozilla-bin/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.14 2004/05/15 13:22:27 grant Exp $ +# $NetBSD: Makefile.common,v 1.15 2004/05/22 12:32:40 grant Exp $ # DISTNAME= # see Makefile.${OPSYS}.${ARCH} @@ -85,9 +85,13 @@ DEPENDS+= compat16>=1.6.0:../../emulators/compat16 _COMPAT16_LIBSTDCXX= YES . endif . endif -. if defined(MOZ_GTK2) && ${MOZ_GTK2} == "YES" # gtk2 builds. +. if defined(MOZ_GTK2) && ${MOZ_GTK2} == "YES" +. if ${OPSYS} == "NetBSD" && ${MOZ_PLATFORM} == "netbsd" +DEPENDS+= gtk2+>=2.4:../../x11/gtk2 +. else DEPENDS+= gtk2+>=2.2:../../x11/gtk2 +. endif . else # default to at least gtk-1.2. DEPENDS+= gtk+>=1.2:../../x11/gtk |