mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-377 added recognition of Darwin (Mac OS X developer previews). This
change should be forwarded upstream to the maintainer of Autoconf. X-SVN-Rev: 1731
This commit is contained in:
parent
2dd27cde6e
commit
be1f3594eb
2 changed files with 7 additions and 1 deletions
6
icu4c/source/config.guess
vendored
6
icu4c/source/config.guess
vendored
|
@ -949,9 +949,15 @@ EOF
|
|||
Power*:Rhapsody:*:*)
|
||||
echo powerpc-apple-rhapsody${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
Power*:Darwin:*:*)
|
||||
echo powerpc-apple-darwin${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
*:Rhapsody:*:*)
|
||||
echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
*:Darwin:*:*)
|
||||
echo ${UNAME_MACHINE}-apple-darwin${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
*:OS/390:*:*)
|
||||
echo ${UNAME_MACHINE}-ibm-os390${UNAME_RELEASE}
|
||||
exit 0 ;;
|
||||
|
|
2
icu4c/source/config.sub
vendored
2
icu4c/source/config.sub
vendored
|
@ -926,7 +926,7 @@ case $os in
|
|||
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
|
||||
| -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
|
||||
| -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \
|
||||
| -interix* | -uwin* | -rhapsody* | -openstep* | -oskit*)
|
||||
| -interix* | -uwin* | -rhapsody* | -darwin* | -openstep* | -oskit*)
|
||||
# Remember, each alternative MUST END IN *, to match a version number.
|
||||
;;
|
||||
-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
|
||||
|
|
Loading…
Add table
Reference in a new issue