diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-06-26 21:45:28 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-06-26 21:45:28 +0800 |
commit | af595457ff6672210cc86814dbdd8eee71881956 (patch) | |
tree | ff8c45d6c7971b9de5cc3b1a02fdc2dd295a2a61 /graphics/utah-glx/files | |
parent | 984fa5489c1451ef97cf9857fa8fa76288813b80 (diff) | |
download | freebsd-ports-gnome-af595457ff6672210cc86814dbdd8eee71881956.tar.gz freebsd-ports-gnome-af595457ff6672210cc86814dbdd8eee71881956.tar.zst freebsd-ports-gnome-af595457ff6672210cc86814dbdd8eee71881956.zip |
Add experimental AGP support using dfr's experimental agp driver (currently
5-current only).
Diffstat (limited to 'graphics/utah-glx/files')
-rw-r--r-- | graphics/utah-glx/files/patch-af | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/graphics/utah-glx/files/patch-af b/graphics/utah-glx/files/patch-af new file mode 100644 index 000000000000..39dde9437d15 --- /dev/null +++ b/graphics/utah-glx/files/patch-af @@ -0,0 +1,33 @@ +--- configure.in.orig Fri Jun 23 12:23:13 2000 ++++ configure.in Fri Jun 23 12:30:06 2000 +@@ -879,7 +879,7 @@ + ]) + + dnl agp driver support +-AC_CHECK_HEADER(linux/agpgart.h, ++AC_CHECK_HEADER(sys/agpio.h, + [ + if test "$enable_agp" = "no" + then +@@ -887,9 +887,9 @@ + else + dnl see which version of the gart module we've found + AC_MSG_CHECKING(validity of agpgart.h) +- AC_EGREP_CPP([/dev/agpgart],[ +-#include <linux/agpgart.h> +-AGP_DEVICE ++ AC_EGREP_CPP([],[ ++#include <sys/agpio.h> ++AGPIOC_INFO + ], + [ + AC_MSG_RESULT([new agpgart module]) +@@ -906,7 +906,7 @@ + fi + ], + [ +- dnl *didn't* find linux/agpgart.h on the system ++ dnl *didn't* find sys/agpio.h on the system + if test "$enable_agp" = "yes" + then + AC_MSG_RESULT([ enabling agpgart support anyway (manual override)]) |