diff options
author | pat <pat@FreeBSD.org> | 2002-01-27 03:38:35 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-01-27 03:38:35 +0000 |
commit | 8599bd10970262e3ab8ae03379042b76f858b1d1 (patch) | |
tree | 46980f2c967215799d2116527d679af4642bc15b /graphics | |
parent | 7e371c9273f358d35b0f8bba41f87058f4719be7 (diff) | |
download | FreeBSD-ports-8599bd10970262e3ab8ae03379042b76f858b1d1.zip FreeBSD-ports-8599bd10970262e3ab8ae03379042b76f858b1d1.tar.gz |
Fix build when X is not installed
PR: 34104
Submitted by: maintainer
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/linux_mesa3/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/graphics/linux_mesa3/Makefile b/graphics/linux_mesa3/Makefile index 770da77..4d70ca6 100644 --- a/graphics/linux_mesa3/Makefile +++ b/graphics/linux_mesa3/Makefile @@ -32,7 +32,9 @@ INSTALL= ${LINUXBASE}/usr/bin/install GNU_CONFIGURE= yes CONFIGURE_TARGET= # -CONFIGURE_ARGS= --libdir="${PREFIX}/usr/X11R6/lib" \ +CONFIGURE_ARGS+= --x-libraries="${LINUXBASE}/usr/X11R6/lib" \ + --x-includes="${LINUXBASE}/usr/X11R6/include" \ + --libdir="${PREFIX}/usr/X11R6/lib" \ --includedir="${PREFIX}/usr/X11R6/include" CONFIGURE_ENV= PATH="${LINUXBASE}/bin:${LINUXBASE}/usr/bin:${PATH}" \ GL_MAJOR_VER="${GL_MAJOR_VER}" \ |