mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-7124 fix for DEFAULT_64
X-SVN-Rev: 26744
This commit is contained in:
parent
d4ef02200d
commit
5eb3f60cad
2 changed files with 20 additions and 24 deletions
21
icu4c/source/aclocal.m4
vendored
21
icu4c/source/aclocal.m4
vendored
|
@ -191,17 +191,16 @@ AC_DEFUN(AC_CHECK_64BIT_LIBS,
|
|||
*) ;;
|
||||
esac
|
||||
elif test "$DEFAULT_64BIT" = "unknown"; then
|
||||
AC_MSG_ERROR([Unable to determine binary format.])
|
||||
# cross compiling?
|
||||
#BITS_GOT=unknown
|
||||
#case "$BITS_REQ" in
|
||||
# 64|64else32) BITS_OK=no
|
||||
# BITS_CHECK_32=yes
|
||||
# BITS_CHECK_64=yes
|
||||
# 32) BITS_OK=no;;
|
||||
# nochange) ;;
|
||||
# *) ;;
|
||||
#esac
|
||||
# cross compiling.
|
||||
BITS_GOT=unknown
|
||||
case "$BITS_REQ" in
|
||||
64|64else32) BITS_OK=no
|
||||
BITS_CHECK_32=yes
|
||||
BITS_CHECK_64=yes ;;
|
||||
32) BITS_OK=no;;
|
||||
nochange) ;;
|
||||
*) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
AC_MSG_RESULT($DEFAULT_64BIT);
|
||||
|
|
23
icu4c/source/configure
vendored
23
icu4c/source/configure
vendored
|
@ -4115,19 +4115,16 @@ fi
|
|||
*) ;;
|
||||
esac
|
||||
elif test "$DEFAULT_64BIT" = "unknown"; then
|
||||
{ { $as_echo "$as_me:$LINENO: error: Unable to determine binary format." >&5
|
||||
$as_echo "$as_me: error: Unable to determine binary format." >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
# cross compiling?
|
||||
#BITS_GOT=unknown
|
||||
#case "$BITS_REQ" in
|
||||
# 64|64else32) BITS_OK=no
|
||||
# BITS_CHECK_32=yes
|
||||
# BITS_CHECK_64=yes
|
||||
# 32) BITS_OK=no;;
|
||||
# nochange) ;;
|
||||
# *) ;;
|
||||
#esac
|
||||
# cross compiling.
|
||||
BITS_GOT=unknown
|
||||
case "$BITS_REQ" in
|
||||
64|64else32) BITS_OK=no
|
||||
BITS_CHECK_32=yes
|
||||
BITS_CHECK_64=yes ;;
|
||||
32) BITS_OK=no;;
|
||||
nochange) ;;
|
||||
*) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
{ $as_echo "$as_me:$LINENO: result: $DEFAULT_64BIT" >&5
|
||||
|
|
Loading…
Add table
Reference in a new issue