mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2026-05-05 14:38:03 +02:00
config: Fix architecture check for OS/2 to skip nios2 cpu
The OS/2 platform requires some utility functions as well as having a non-32 bit wchar_t. Fix the configure check so that it doesn't also affect the nios2 cpu, which wouldn't influence these operating system issues. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> Tested-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Julien Cristau <jcristau@debian.org> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
This commit is contained in:
parent
8cbca8a107
commit
affc2488a7
1 changed files with 2 additions and 2 deletions
|
|
@ -246,8 +246,8 @@ dnl AC_PATH_XTRA
|
|||
|
||||
# arch specific things
|
||||
WCHAR32="1"
|
||||
case $target_alias in
|
||||
*os2*) os2="true" ; WCHAR32="0" ;;
|
||||
case $target_os in
|
||||
os2*) os2="true" ; WCHAR32="0" ;;
|
||||
*) ;;
|
||||
esac
|
||||
AC_SUBST(WCHAR32)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue