diff options
author | jmc <jmc> | 2003-08-11 18:32:50 +0000 |
---|---|---|
committer | jmc <jmc> | 2003-08-11 18:32:50 +0000 |
commit | 4a107be218731a739bdf203651a872e839f8ce39 (patch) | |
tree | c50d3d1f02995304204d14263d91f83dac3d4e24 /x11 | |
parent | 84680efd3d400bd3b948e9cd8ebbe0387bc11e2c (diff) | |
download | pkgsrc-4a107be218731a739bdf203651a872e839f8ce39.tar.gz |
Require native threads since this isn't pth aware and uses SDL which is pth
aware. This means SDL_Init tries to pth_init() which fails since pthread
calls from paragui have already implicitly called pth_init().
XXX - pth probably needs to handle this better by not returning -1 on
multiple init calls.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/paragui/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11/paragui/Makefile b/x11/paragui/Makefile index 6a437bdb174..1940a928558 100644 --- a/x11/paragui/Makefile +++ b/x11/paragui/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2003/07/26 21:41:29 jmmv Exp $ +# $NetBSD: Makefile,v 1.5 2003/08/11 18:32:50 jmc Exp $ # DISTNAME= paragui-1.0.4 @@ -16,6 +16,7 @@ USE_LIBTOOL= yes LIBTOOL_OVERRIDE= ${WRKSRC}/libtool ${WRKSRC}/src/physfs/libtool PKGCONFIG_OVERRIDE+= ${WRKSRC}/paragui.pc.in GNU_CONFIGURE= yes +PTHREAD_OPTS+= require native .include "../../devel/SDL/buildlink2.mk" .include "../../devel/physfs/buildlink2.mk" |