mirror of git://sourceware.org/git/glibc.git
Remove support in configure for unsupported architectures
This commit is contained in:
parent
544563c940
commit
dcc9756b5b
|
@ -1,5 +1,8 @@
|
||||||
2012-01-07 Ulrich Drepper <drepper@gmail.com>
|
2012-01-07 Ulrich Drepper <drepper@gmail.com>
|
||||||
|
|
||||||
|
[BZ #13555]
|
||||||
|
* configure.in: Remove entries for unsupported architectures.
|
||||||
|
|
||||||
[BZ #13533]
|
[BZ #13533]
|
||||||
* iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
|
* iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
|
||||||
* iconv/gconv_simple.c: Rename char16_t routines. Add char16_t<->utf8
|
* iconv/gconv_simple.c: Rename char16_t routines. Add char16_t<->utf8
|
||||||
|
|
2
NEWS
2
NEWS
|
@ -9,7 +9,7 @@ Version 2.16
|
||||||
|
|
||||||
* The following bugs are resolved with this release:
|
* The following bugs are resolved with this release:
|
||||||
|
|
||||||
13526, 13527, 13528, 13529, 13531, 13532, 13533, 13547
|
13526, 13527, 13528, 13529, 13531, 13532, 13533, 13547, 13555
|
||||||
|
|
||||||
* ISO C11 support:
|
* ISO C11 support:
|
||||||
|
|
||||||
|
|
|
@ -4045,13 +4045,8 @@ fi
|
||||||
# type and particular chip. If an add-on configure fragment already set
|
# type and particular chip. If an add-on configure fragment already set
|
||||||
# base_machine, we don't change it.
|
# base_machine, we don't change it.
|
||||||
test -n "$base_machine" || case "$machine" in
|
test -n "$base_machine" || case "$machine" in
|
||||||
a29k | am29000) base_machine=a29k machine=a29k ;;
|
|
||||||
c3[012]) base_machine=cx0 machine=cx0/c30 ;;
|
|
||||||
c4[04]) base_machine=cx0 machine=cx0/c40 ;;
|
|
||||||
i[34567]86) base_machine=i386 machine=i386/$machine ;;
|
i[34567]86) base_machine=i386 machine=i386/$machine ;;
|
||||||
ia64) base_machine=ia64 machine=ia64 ;;
|
ia64) base_machine=ia64 machine=ia64 ;;
|
||||||
m88???) base_machine=m88k machine=m88k/$machine ;;
|
|
||||||
m88k) base_machine=m88k machine=m88k/m88100 ;;
|
|
||||||
powerpc) base_machine=powerpc machine=powerpc/powerpc32 ;;
|
powerpc) base_machine=powerpc machine=powerpc/powerpc32 ;;
|
||||||
powerpc64) base_machine=powerpc machine=powerpc/powerpc64 ;;
|
powerpc64) base_machine=powerpc machine=powerpc/powerpc64 ;;
|
||||||
s390) base_machine=s390 machine=s390/s390-32 ;;
|
s390) base_machine=s390 machine=s390/s390-32 ;;
|
||||||
|
|
|
@ -532,13 +532,8 @@ changequote(,)dnl
|
||||||
# type and particular chip. If an add-on configure fragment already set
|
# type and particular chip. If an add-on configure fragment already set
|
||||||
# base_machine, we don't change it.
|
# base_machine, we don't change it.
|
||||||
test -n "$base_machine" || case "$machine" in
|
test -n "$base_machine" || case "$machine" in
|
||||||
a29k | am29000) base_machine=a29k machine=a29k ;;
|
|
||||||
c3[012]) base_machine=cx0 machine=cx0/c30 ;;
|
|
||||||
c4[04]) base_machine=cx0 machine=cx0/c40 ;;
|
|
||||||
i[34567]86) base_machine=i386 machine=i386/$machine ;;
|
i[34567]86) base_machine=i386 machine=i386/$machine ;;
|
||||||
ia64) base_machine=ia64 machine=ia64 ;;
|
ia64) base_machine=ia64 machine=ia64 ;;
|
||||||
m88???) base_machine=m88k machine=m88k/$machine ;;
|
|
||||||
m88k) base_machine=m88k machine=m88k/m88100 ;;
|
|
||||||
powerpc) base_machine=powerpc machine=powerpc/powerpc32 ;;
|
powerpc) base_machine=powerpc machine=powerpc/powerpc32 ;;
|
||||||
powerpc64) base_machine=powerpc machine=powerpc/powerpc64 ;;
|
powerpc64) base_machine=powerpc machine=powerpc/powerpc64 ;;
|
||||||
s390) base_machine=s390 machine=s390/s390-32 ;;
|
s390) base_machine=s390 machine=s390/s390-32 ;;
|
||||||
|
|
Loading…
Reference in New Issue