diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-05-19 11:53:22 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-05-19 12:01:39 -0700 |
commit | 6100635debdda392ca420e87c5b0d70bd22dfed8 (patch) | |
tree | ff43e16a6b8507ce0f3fe006babc371423e28c06 /configure.ac | |
parent | 9d9b53bc8cb3ed4a5630d6b4dd23603d4d431cb5 (diff) |
Remove XAA supportmaster
Mostly done via unifdef -UHAVE_XAA_H, followed by minor manual editing
Since recent commits require xserver-1.18.0 or later to build against,
there's no reason leaving behind big chunks of code that can only build
against the XAA support removed in xserver-1.13.0 (released in 2012).
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-video-sunffb/-/merge_requests/8>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/configure.ac b/configure.ac index 067ddc4..4d2ae68 100644 --- a/configure.ac +++ b/configure.ac @@ -48,6 +48,7 @@ case $host_cpu in CCASFLAGS="-x assembler-with-cpp -Wa,-Av9a" SPARC=yes esac +AM_CONDITIONAL(SPARC, test x$SPARC = xyes) AM_PROG_AS AH_TOP([#include "xorg-server.h"]) @@ -73,25 +74,6 @@ AM_CONDITIONAL(HAVE_XEXTPROTO_71, [ test "$HAVE_XEXTPROTO_71" = "yes" ]) # Checks for libraries. -AC_ARG_ENABLE(xaa, - AS_HELP_STRING([--enable-xaa], - [Enable legacy X Acceleration Architecture (XAA) [default=auto]]), - [XAA="$enableval"], - [XAA=auto]) -if test "x$XAA" != xno; then - save_CFLAGS=$CFLAGS - save_CPPFLAGS=$CPPFLAGS - CFLAGS=$XORG_CFLAGS - CPPFLAGS="$XORG_CFLAGS" - AC_CHECK_HEADERS([xaa.h], XAA=yes, XAA=no) - CFLAGS=$save_CFLAGS - CPPFLAGS=$save_CPPFLAGS -fi -AC_MSG_CHECKING([whether to include XAA support]) -AM_CONDITIONAL(XAA, test "x$XAA" = xyes) -AC_MSG_RESULT([$XAA]) - -AM_CONDITIONAL(SPARC, test x$SPARC = xyes) # Checks for library functions # We don't use strlcat, strlcpy, or timingsafe_memcmp, but check to quiet |