Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 06 Nov 2014 21:35:05 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-x11@FreeBSD.org
Subject:   [Bug 182723] graphics/dri fails to build on 9.2-Stable
Message-ID:  <bug-182723-8047-D2LpTDKEWK@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-182723-8047@https.bugs.freebsd.org/bugzilla/>
References:  <bug-182723-8047@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help

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

C Hutchinson <portmaster@bsdforge.com> changed:

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

--- Comment #2 from C Hutchinson <portmaster@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-182723-8047-D2LpTDKEWK>