Remove Alpha architecture detection

This architecture doesn't exist and is not supported since a very long
time, so stop testing for it and defining __ALPHA__ which was never used
anyhow.
This commit is contained in:
Vadim Zeitlin 2023-01-26 17:30:11 +01:00
parent 15e556e027
commit e5380e739b
7 changed files with 1 additions and 43 deletions

18
configure vendored
View file

@ -3854,22 +3854,10 @@ case "${host}" in
USE_LINUX=1
$as_echo "#define __LINUX__ 1" >>confdefs.h
TMP=`uname -m`
if test "x$TMP" = "xalpha"; then
USE_ALPHA=1
$as_echo "#define __ALPHA__ 1" >>confdefs.h
fi
DEFAULT_DEFAULT_wxUSE_GTK=1
;;
*-*-gnu* | *-*-k*bsd*-gnu )
USE_GNU=1
TMP=`uname -m`
if test "x$TMP" = "xalpha"; then
USE_ALPHA=1
$as_echo "#define __ALPHA__ 1" >>confdefs.h
fi
DEFAULT_DEFAULT_wxUSE_GTK=1
;;
*-*-irix5* | *-*-irix6* )
@ -3943,20 +3931,14 @@ case "${host}" in
CPPFLAGS="-D_NETBSD_SOURCE -D_LIBC $CPPFLAGS"
;;
*-*-osf* )
USE_ALPHA=1
USE_OSF=1
$as_echo "#define __ALPHA__ 1" >>confdefs.h
$as_echo "#define __OSF__ 1" >>confdefs.h
DEFAULT_DEFAULT_wxUSE_GTK=1
NEEDS_D_REENTRANT_FOR_R_FUNCS=1
;;
*-*-dgux5* )
USE_ALPHA=1
USE_SVR4=1
$as_echo "#define __ALPHA__ 1" >>confdefs.h
$as_echo "#define __SVR4__ 1" >>confdefs.h
DEFAULT_DEFAULT_wxUSE_GTK=1