diff options
author | gallatin <gallatin@FreeBSD.org> | 2001-05-28 22:00:52 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2001-05-28 22:00:52 +0000 |
commit | 73a3105bae919fe600db859a1efa00b4ceffe813 (patch) | |
tree | a09cb475965198cfac7a2e51e66579a94746f39d /x11 | |
parent | 208dff1546c10fde315bf15e0158f815239d7921 (diff) | |
download | FreeBSD-ports-73a3105bae919fe600db859a1efa00b4ceffe813.zip FreeBSD-ports-73a3105bae919fe600db859a1efa00b4ceffe813.tar.gz |
The DRI module breaks building of XF86-4 on alpha because drmP.h
contains x86 specific assembly. Disable it on alpha.
Approved by: jmz
Diffstat (limited to 'x11')
-rw-r--r-- | x11/XFree86-4/scripts/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/XFree86-4/scripts/configure b/x11/XFree86-4/scripts/configure index a4bb01e..b02c1eb 100644 --- a/x11/XFree86-4/scripts/configure +++ b/x11/XFree86-4/scripts/configure @@ -220,7 +220,7 @@ yesno YES "Do you want to compile with PAM support?" echo "#define HasPam $answ" >> $F echo "#define InstallXserverSetUID NO " >> $F -if [ $OSVERSION -lt 500013 ]; then +if [ $OSVERSION -lt 500013 -a X${MACHINE} != X"alpha" ]; then echo "#define BuildXF86DRI YES" >> $F echo "#define BuildXF86DRM YES" >> $F fi |