diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-07-27 12:19:15 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-07-27 12:19:15 +0000 |
commit | 822fcf25410b8f495b13160c5336d534f1fe2179 (patch) | |
tree | 70239c53b23c76d8a7685ea7e4ac599509108f7d /mk | |
parent | ba68f53a5a67990c98ea7673dce78f767f640058 (diff) | |
download | pkgsrc-822fcf25410b8f495b13160c5336d534f1fe2179.tar.gz |
work around HAVE_BUILTIN_MESA not set when USE_GLX is set.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 2b2eb5cde65..aa22db11e75 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.792 2001/07/26 08:39:35 wiz Exp $ +# $NetBSD: bsd.pkg.mk,v 1.793 2001/07/27 12:19:15 hubertf Exp $ # # This file is in the public domain. # @@ -763,7 +763,7 @@ XPMDIR_DEFAULT= ${X11BASE} # If USE_MESA is set, depend on Mesa (or Mesa-glx if USE_GLX is defined and # Mesa/GLX is not included in XFree86) .if defined(USE_MESA) -. if (defined(USE_GLX) && ${HAVE_BUILTIN_MESA} == "NO") +. if (defined(USE_GLX) && defined(HAVE_BUILTIN_MESA) && ${HAVE_BUILTIN_MESA} == "NO") DEPENDS+= Mesa-glx>=20000813:../../graphics/Mesa-glx . else DEPENDS+= Mesa>=3.2.1:../../graphics/Mesa |