diff options
author | tron <tron> | 2001-01-13 09:42:45 +0000 |
---|---|---|
committer | tron <tron> | 2001-01-13 09:42:45 +0000 |
commit | 3c3a05ebcda0c13ebfc82c52bcdf3b276df71501 (patch) | |
tree | b82f8c3b0d1e0809a0e6ecb45fae545e86e609ff /devel | |
parent | 8e3f7eb7f864e6dc4b72959906be29012e85d73a (diff) | |
download | pkgsrc-3c3a05ebcda0c13ebfc82c52bcdf3b276df71501.tar.gz |
"glib" supports Solaris's threading library so that we don't need "pth".
Diffstat (limited to 'devel')
-rw-r--r-- | devel/glib/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/devel/glib/Makefile b/devel/glib/Makefile index 2368afc4470..3fcb9d00f62 100644 --- a/devel/glib/Makefile +++ b/devel/glib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2000/06/05 00:54:47 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2001/01/13 09:42:45 tron Exp $ # FreeBSD Id: Makefile,v 1.2 1998/08/06 14:55:12 vanilla Exp # @@ -12,8 +12,6 @@ MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/v1.2/ \ MAINTAINER= tron@netbsd.org HOMEPAGE= http://www.gtk.org/docs/glib_toc.html -DEPENDS+= pth>=1.3.2:../pth - CONFLICTS= gtk+-1.0.* GNU_CONFIGURE= yes @@ -29,4 +27,9 @@ INFO_FILES= glib.info CFLAGS= -O0 .endif +.include "../../mk/bsd.prefs.mk" +.if (${OPSYS} != SunOS) +DEPENDS+= pth>=1.3.2:../pth +.endif + .include "../../mk/bsd.pkg.mk" |