forked from Lainports/freebsd-ports
a kwm, zeising production: MESA 9.1.6 Starring: Mesa 9.1.6, including libGL, libGLU and dri (new xorg only) Addition of libEGL and libglesv2 KMS support for ATI graphics cards in 10-current (new xorg only) Improved sparc64 support for new xorg. [1] pixman 0.30.2, including shlib bump and portrevision bumps libX11 1.6.2 Make absolute pointing devices work with x11-drivers/xf86-input-mouse x11-drivers/xf86-video-ati 7.2.0 for 10-current (KMS aware ati driver) Also starring: Updates to drivers and other libraries and utilities Additional notes: When updating MESA related ports (libGL, dri) you need to remove old versions first. See UPDATING for details. PR: ports/181962 [2] Submitted by: marius [1] zeising [2] Exp-run by: bdrewery Approved by: portmgr (bdrewery) Thanks to all who helped testing!
49 lines
2 KiB
Text
49 lines
2 KiB
Text
--- configure.orig 2013-08-01 23:22:15.000000000 +0200
|
|
+++ configure 2013-08-19 20:05:02.000000000 +0200
|
|
@@ -21046,9 +21046,34 @@
|
|
DEFINES="$DEFINES -DHAVE_PTHREAD -DUSE_EXTERNAL_DXTN_LIB=1"
|
|
DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
|
|
|
|
- if test "x$DRI_DIRS" = "xyes"; then
|
|
- DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
|
|
- fi
|
|
+ case "$host_cpu" in
|
|
+ x86_64)
|
|
+ # i810 is missing because there is no x86-64 system where it
|
|
+ # could *ever* be used.
|
|
+ if test "x$DRI_DIRS" = "xyes"; then
|
|
+ DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
|
|
+ fi
|
|
+ ;;
|
|
+ i*86)
|
|
+ if test "x$DRI_DIRS" = "xyes"; then
|
|
+ DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
|
|
+ fi
|
|
+ ;;
|
|
+ powerpc*)
|
|
+ # Build only the drivers for cards that exist on PowerPC.
|
|
+ # At some point MGA will be added, but not yet.
|
|
+ if test "x$DRI_DIRS" = "xyes"; then
|
|
+ DRI_DIRS="r200 radeon swrast"
|
|
+ fi
|
|
+ ;;
|
|
+ sparc*)
|
|
+ # Build only the drivers for cards that exist on SPARC.
|
|
+ if test "x$DRI_DIRS" = "xyes"; then
|
|
+ DRI_DIRS="r200 radeon swrast"
|
|
+ fi
|
|
+ ;;
|
|
+ esac
|
|
+
|
|
;;
|
|
gnu*)
|
|
DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
|
|
@@ -23396,7 +23421,7 @@
|
|
radeon_llvm_check() {
|
|
LLVM_REQUIRED_VERSION_MAJOR="3"
|
|
LLVM_REQUIRED_VERSION_MINOR="2"
|
|
- if test "$LLVM_VERSION_INT" -ne "${LLVM_REQUIRED_VERSION_MAJOR}0${LLVM_REQUIRED_VERSION_MINOR}"; then
|
|
+ if test "$LLVM_VERSION_INT" -lt "${LLVM_REQUIRED_VERSION_MAJOR}0${LLVM_REQUIRED_VERSION_MINOR}"; then
|
|
as_fn_error $? "LLVM $LLVM_REQUIRED_VERSION_MAJOR.$LLVM_REQUIRED_VERSION_MINOR with R600 target enabled is required.
|
|
To use the r600/radeonsi LLVM backend, you need to fetch the LLVM source from:
|
|
git://people.freedesktop.org/~tstellar/llvm master
|