aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/libGL
diff options
context:
space:
mode:
authorkwm <kwm@FreeBSD.org>2013-12-13 20:21:17 +0800
committerkwm <kwm@FreeBSD.org>2013-12-13 20:21:17 +0800
commit1ea43ad1508909116959ea4a687081a66d3206e7 (patch)
tree733bf9dcb1723e7ad8da71e220f12cf7a8054581 /graphics/libGL
parentca3f583ba5841682f375f87d1102c6963c0133b1 (diff)
downloadfreebsd-ports-gnome-1ea43ad1508909116959ea4a687081a66d3206e7.tar.gz
freebsd-ports-gnome-1ea43ad1508909116959ea4a687081a66d3206e7.tar.zst
freebsd-ports-gnome-1ea43ad1508909116959ea4a687081a66d3206e7.zip
Fix graphics/dri on ia64.
Please note that WITH_NEW_XORG isn't tested due to other issues. Submitted by: marcel@
Diffstat (limited to 'graphics/libGL')
-rw-r--r--graphics/libGL/files-old/patch-configure15
-rw-r--r--graphics/libGL/files/patch-configure2
2 files changed, 13 insertions, 4 deletions
diff --git a/graphics/libGL/files-old/patch-configure b/graphics/libGL/files-old/patch-configure
index b2e156de3b6b..c9faeefb3a67 100644
--- a/graphics/libGL/files-old/patch-configure
+++ b/graphics/libGL/files-old/patch-configure
@@ -1,5 +1,14 @@
---- configure.orig 2009-12-22 03:31:30.000000000 +0100
-+++ configure 2012-06-27 19:49:26.000000000 +0200
+--- configure.orig 2013-12-12 18:52:32.304356162 +0000
++++ configure 2013-12-12 19:50:44.434111814 +0000
+@@ -5393,7 +5393,7 @@
+ ;;
+ *freebsd* | dragonfly*)
+ case "$host_cpu" in
+- i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
++ i*86|x86_64|ia64|powerpc*|sparc*) default_driver="dri";;
+ esac
+ ;;
+ esac
@@ -6946,12 +6946,35 @@
CXXFLAGS="$CXXFLAGS -ansi -pedantic"
fi
@@ -9,7 +18,7 @@
- if test "x$DRI_DIRS" = "xyes"; then
- DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \
+ case "$host_cpu" in
-+ x86_64)
++ x86_64|ia64)
+ # i810 is missing because there is no x86-64 system where it
+ # could *ever* be used.
+ if test "x$DRI_DIRS" = "xyes"; then
diff --git a/graphics/libGL/files/patch-configure b/graphics/libGL/files/patch-configure
index 5f788478fb58..0bfe1925179a 100644
--- a/graphics/libGL/files/patch-configure
+++ b/graphics/libGL/files/patch-configure
@@ -8,7 +8,7 @@
- DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
- fi
+ case "$host_cpu" in
-+ x86_64)
++ x86_64|ia64)
+ # i810 is missing because there is no x86-64 system where it
+ # could *ever* be used.
+ if test "x$DRI_DIRS" = "xyes"; then