[Bug 182723] graphics/dri fails to build on 9.2-Stable

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Thu Nov 6 21:35:05 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=182723

C Hutchinson <portmaster at bsdforge.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |portmaster at bsdforge.com

--- Comment #2 from C Hutchinson <portmaster at bsdforge.com> ---
(In reply to Edwin Groothuis from comment #1)
> Responsible Changed
> From-To: freebsd-ports-bugs->freebsd-x11
> 
> Over to maintainer (via the GNATS Auto Assign Tool)

I also experienced being unable to build graphics/dri on RELENG_9 (9.3).
The only solution I was able to use, was to make the following change
to Makefile
ORIGINAL-------------------------------
. if (${OSVERSION} >= 901500 && ${OSVERSION} < 1000000) \
        && ${ARCH} == amd64
CC=clang
CXX=clang++
CPP=clang-cpp
. elif ${OSVERSION} < 901500
USE_GCC=yes
. endif
MODIFIED-------------------------------
. if (${OSVERSION} >= 901500 && ${OSVERSION} < 1000000) \
        && ${ARCH} == amd64
USE_GCC=yes
#CC=clang
#CXX=clang++
#CPP=clang-cpp
. elif ${OSVERSION} < 901500
USE_GCC=yes
. endif

This is for those of us who use gcc && not clang :)

However, this doesn't fix more recent versions of graphics/dri
that are built on (recent) 11-CURRENT. As the conditional won't
see 11. :(
I was also unable to build graphics/dri under _any_ circumstances
on 11-CURRENT. Even if making the conditional recognize 11.
I'll submit a separate pr(1) for it. :)

Thanks, for all your time, and consideration.

--Chris

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-x11 mailing list