diff options
author | jmc <jmc> | 2003-04-07 18:18:24 +0000 |
---|---|---|
committer | jmc <jmc> | 2003-04-07 18:18:24 +0000 |
commit | b76d18fe6e6487f700b298dd5f22700d07f6cb57 (patch) | |
tree | faa28637e1aef50667565c1c32e32cff8d8b2dad /games/tuxracer | |
parent | 32ee26bb4d5fa5c674f538be0279e803c2278df0 (diff) | |
download | pkgsrc-b76d18fe6e6487f700b298dd5f22700d07f6cb57.tar.gz |
Pass -DGLX_GLXEXT_PROTOTYPES along in CFLAGS to configure as the
glXGetProcAddressARB prototype configure tests for isn't exposed otherwise
in current versions of Mesa
Diffstat (limited to 'games/tuxracer')
-rw-r--r-- | games/tuxracer/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/tuxracer/Makefile b/games/tuxracer/Makefile index 4ef0138abc3..e991bedfe4c 100644 --- a/games/tuxracer/Makefile +++ b/games/tuxracer/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2003/04/03 08:25:37 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2003/04/07 18:18:24 jmc Exp $ # DISTNAME= tuxracer-0.61 @@ -15,7 +15,9 @@ COMMENT= 3D penguin racing game using OpenGL USE_BUILDLINK2= YES GNU_CONFIGURE= YES +CFLAGS+= -DGLX_GLXEXT_PROTOTYPES CONFIGURE_ARGS+= --with-data-dir=${PREFIX}/share/tuxracer +CONFIGURE_ENV+= CFLAGS="${CFLAGS}" post-install: cd ${WRKSRC}/html && \ |