diff options
Diffstat (limited to 'Master')
-rw-r--r-- | Master/doc.html | 1 | ||||
-rwxr-xr-x | Master/tlpkg/installer/config.guess | 14 |
2 files changed, 13 insertions, 2 deletions
diff --git a/Master/doc.html b/Master/doc.html index bd134d0acbb..49fe55011f7 100644 --- a/Master/doc.html +++ b/Master/doc.html @@ -12984,6 +12984,7 @@ Itrans input maps for use with XeLaTeX. </small></li> <li><b><a href="texmf-dist/doc/xetex/xetexko">xetexko</a></b>:<small> +Typeset Korean with Xe(La)TeX. <a href="texmf-dist/doc/xetex/xetexko/xetexko-doc.pdf">xetexko-doc.pdf</a>. </small></li> diff --git a/Master/tlpkg/installer/config.guess b/Master/tlpkg/installer/config.guess index f475ceb4138..2055429b1ab 100755 --- a/Master/tlpkg/installer/config.guess +++ b/Master/tlpkg/installer/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2013 Free Software Foundation, Inc. -timestamp='2013-02-12' +timestamp='2013-04-24' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -883,6 +883,9 @@ EOF if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; + arc:Linux:*:* | arceb:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ @@ -921,6 +924,11 @@ EOF #ifdef __dietlibc__ LIBC=dietlibc #endif + #else + #include <features.h> + #ifdef __UCLIBC__ + LIBC=uclibc + #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" @@ -998,7 +1006,9 @@ EOF echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + LIBC=gnu + test -r /lib/libc.so && od -An -S13 /lib/libc.so | grep -q __uClibc_main && LIBC=uclibc + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu |