diff options
author | anholt <anholt@FreeBSD.org> | 2005-05-07 01:57:25 +0800 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2005-05-07 01:57:25 +0800 |
commit | a92d3d78c7dfefda21c451105063691b12097ccf (patch) | |
tree | b57365f345b7e7b802909f7820d8fbf3bc9e5c76 | |
parent | b324d4ce0a07a74de977ed50c0b6d1629bb26614 (diff) | |
download | freebsd-ports-graphics-a92d3d78c7dfefda21c451105063691b12097ccf.tar.gz freebsd-ports-graphics-a92d3d78c7dfefda21c451105063691b12097ccf.tar.zst freebsd-ports-graphics-a92d3d78c7dfefda21c451105063691b12097ccf.zip |
Go ahead and make the dri build require gcc 3.4 on 4.x to work around the build
failure. It seems to be continually growing more c99 dependencies, so don't try
to patch them.
Reported by: krismail
-rw-r--r-- | graphics/dri-devel/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/dri-devel/Makefile b/graphics/dri-devel/Makefile index 4e4accb957c..51d386771bf 100644 --- a/graphics/dri-devel/Makefile +++ b/graphics/dri-devel/Makefile @@ -37,6 +37,10 @@ DRIMODDIR= ${PREFIX}/lib/modules/dri .include <bsd.port.pre.mk> +.if ${OSVERSION} < 500000 +USE_GCC= 3.4 +.endif + do-install: .if ${ARCH} == i386 ${INSTALL_PROGRAM} ${WRKSRC}/lib/i810_dri.so ${DRIMODDIR} |