diff options
Diffstat (limited to 'main')
-rw-r--r-- | main/asterisk-addons/APKBUILD | 75 | ||||
-rw-r--r-- | main/libc0.9.32/0001-libm-x86_64-implement-fesetround.patch | 98 | ||||
-rw-r--r-- | main/libc0.9.32/0001-ntpl-fix-static-linking-by-not-leaking-SSP_ALL_CFLAG.patch | 200 | ||||
-rw-r--r-- | main/libc0.9.32/APKBUILD | 12 | ||||
-rw-r--r-- | main/libc0.9.32/uclibcconfig.x86_64 | 21 |
5 files changed, 106 insertions, 300 deletions
diff --git a/main/asterisk-addons/APKBUILD b/main/asterisk-addons/APKBUILD deleted file mode 100644 index 92fb19900..000000000 --- a/main/asterisk-addons/APKBUILD +++ /dev/null @@ -1,75 +0,0 @@ -# Contributor: Carlo Landmeter -# Maintainer: -pkgname=asterisk-addons -pkgver=1.6.2.1 -pkgrel=1 -pkgdesc="Asterisk addons" -url="http://www.asterisk.org" -license="GPL2" -makedepends="mysql-dev asterisk-dev autoconf automake" -install= -subpackages="$pkgname-mysql $pkgname-mp3 $pkgname-ooh323 $pkgname-saycountpl" -depends="$subpackages" -source="http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-addons-1.6.2.1.tar.gz" - -_builddir="$srcdir"/$pkgname-$pkgver - -prepare() { - cd "$_builddir" - ./bootstrap.sh -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info - - make -j1 || return 1 -} - -package() { - cd "$_builddir" - make -j1 DESTDIR="$pkgdir" install - make -j1 DESTDIR="$pkgdir" samples - # we are not building the mobile module because aports does not have bluez so we delete mobile.conf - rm -rf "$pkgdir"/etc -} - -_find_and_move() { - local pattern="$1" - cd "$pkgdir" || return 1 - find -name "$pattern" -type f | while read f; do - local dest="$subpkgdir/${f%/*}" - mkdir -p "$dest" - mv "$f" "$dest" - done -} - -mysql() { - pkgdesc="Asterisk mysql addons" - depends="asterisk" - _find_and_move '*mysql*' -} - -mp3() { - pkgdesc="Asterisk mp3 addon" - depends="asterisk" - _find_and_move '*mp3*' -} - -ooh323() { - pkgdesc="Asterisk h323 channel driver" - depends="asterisk" - _find_and_move '*ooh323*' -} - -saycountpl() { - pkgdesc="Asterisk say count pl application" - depends="asterisk" - _find_and_move '*saycountpl*' - mv "$pkgdir"/var "$subpkgdir" -} - -md5sums="95e33f22f53d58ac95c54d2c8b8d9d76 asterisk-addons-1.6.2.1.tar.gz" diff --git a/main/libc0.9.32/0001-libm-x86_64-implement-fesetround.patch b/main/libc0.9.32/0001-libm-x86_64-implement-fesetround.patch new file mode 100644 index 000000000..84d6a2e08 --- /dev/null +++ b/main/libc0.9.32/0001-libm-x86_64-implement-fesetround.patch @@ -0,0 +1,98 @@ +From b58032ae6a34afc1887d9a6f3d05891d0d4fdbab Mon Sep 17 00:00:00 2001 +From: Natanael Copa <natanael.copa@gmail.com> +Date: Sun, 28 Nov 2010 12:43:33 +0000 +Subject: [PATCH] libm/x86_64: implement fesetround + +from glibc +--- + libm/x86_64/Makefile.arch | 24 +++++++++++++++++++++++ + libm/x86_64/fesetround.c | 46 +++++++++++++++++++++++++++++++++++++++++++++ + 2 files changed, 70 insertions(+), 0 deletions(-) + create mode 100644 libm/x86_64/Makefile.arch + create mode 100644 libm/x86_64/fesetround.c + +diff --git a/libm/x86_64/Makefile.arch b/libm/x86_64/Makefile.arch +new file mode 100644 +index 0000000..e1be961 +--- /dev/null ++++ b/libm/x86_64/Makefile.arch +@@ -0,0 +1,24 @@ ++# Makefile for uClibc ++# ++# Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org> ++# ++# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. ++# ++# The routines included in this math library are derived from ++# glibc's libm. ++# ++ ++ifeq ($(UCLIBC_HAS_FENV),y) ++libm_ARCH_SRC:=$(wildcard $(libm_ARCH_DIR)/*.c) ++libm_ARCH_OBJ:=$(patsubst $(libm_ARCH_DIR)/%.c,$(libm_ARCH_OUT)/%.o,$(libm_ARCH_SRC)) ++endif ++ ++libm_ARCH_OBJS:=$(libm_ARCH_OBJ) ++ ++ifeq ($(DOPIC),y) ++libm-a-y+=$(libm_ARCH_OBJS:.o=.os) ++else ++libm-a-y+=$(libm_ARCH_OBJS) ++endif ++libm-so-y+=$(libm_ARCH_OBJS:.o=.os) ++ +diff --git a/libm/x86_64/fesetround.c b/libm/x86_64/fesetround.c +new file mode 100644 +index 0000000..3d2ef4c +--- /dev/null ++++ b/libm/x86_64/fesetround.c +@@ -0,0 +1,46 @@ ++/* Set current rounding direction. ++ Copyright (C) 2001, 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include <fenv.h> ++ ++int ++fesetround (int round) ++{ ++ unsigned short int cw; ++ int mxcsr; ++ ++ if ((round & ~0xc00) != 0) ++ /* ROUND is no valid rounding mode. */ ++ return 1; ++ ++ /* First set the x87 FPU. */ ++ __asm__ ("fnstcw %0" : "=m" (*&cw)); ++ cw &= ~0xc00; ++ cw |= round; ++ __asm__ ("fldcw %0" : : "m" (*&cw)); ++ ++ /* And now the MSCSR register for SSE, the precision is at different bit ++ positions in the different units, we need to shift it 3 bits. */ ++ __asm__ ("stmxcsr %0" : "=m" (*&mxcsr)); ++ mxcsr &= ~ 0x6000; ++ mxcsr |= round << 3; ++ __asm__ ("ldmxcsr %0" : : "m" (*&mxcsr)); ++ ++ return 0; ++} +-- +1.7.3.2 + diff --git a/main/libc0.9.32/0001-ntpl-fix-static-linking-by-not-leaking-SSP_ALL_CFLAG.patch b/main/libc0.9.32/0001-ntpl-fix-static-linking-by-not-leaking-SSP_ALL_CFLAG.patch deleted file mode 100644 index 83e95e082..000000000 --- a/main/libc0.9.32/0001-ntpl-fix-static-linking-by-not-leaking-SSP_ALL_CFLAG.patch +++ /dev/null @@ -1,200 +0,0 @@ -From bbef1fa203ecb2ab02fa5bb25dc4ab9a708b7dcb Mon Sep 17 00:00:00 2001 -From: Natanael Copa <natanael.copa@gmail.com> -Date: Thu, 11 Nov 2010 07:32:55 +0000 -Subject: [PATCH] ntpl: fix static linking by not leaking SSP_ALL_CFLAGS - -The SSP_ALL_CFLAGS in nptl arch CFLAGS leaks out and forces things -like dl-support.c, brk.c, sbrk.c memcpy, etc to be built with --fstack-protector-all. This is bad when linking statically since -initializing TLS will call those functions before SSP is initialized. - -The libpthread itself will still be built with -fstack-protector-all -due to CFLAGS-nptl has SSP_ALL_CFLAGS in libpthread/nptl/Makefile.in - -Thanks to Timo Teras for helping with this. - -Signed-off-by: Natanael Copa <natanael.copa@gmail.com> ---- - libpthread/nptl/sysdeps/arm/Makefile.arch | 1 - - libpthread/nptl/sysdeps/generic/Makefile.in | 2 -- - libpthread/nptl/sysdeps/i386/Makefile.arch | 1 - - libpthread/nptl/sysdeps/mips/Makefile.arch | 1 - - libpthread/nptl/sysdeps/powerpc/Makefile.arch | 1 - - libpthread/nptl/sysdeps/sh/Makefile.arch | 1 - - libpthread/nptl/sysdeps/sparc/Makefile.arch | 1 - - .../nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch | 1 - - .../sysdeps/unix/sysv/linux/i386/Makefile.arch | 1 - - .../sysdeps/unix/sysv/linux/mips/Makefile.arch | 1 - - .../sysdeps/unix/sysv/linux/powerpc/Makefile.arch | 1 - - .../nptl/sysdeps/unix/sysv/linux/sh/Makefile.arch | 1 - - .../sysdeps/unix/sysv/linux/sparc/Makefile.arch | 1 - - .../sysdeps/unix/sysv/linux/x86_64/Makefile.arch | 1 - - libpthread/nptl/sysdeps/x86_64/Makefile.arch | 1 - - 15 files changed, 0 insertions(+), 16 deletions(-) - -diff --git a/libpthread/nptl/sysdeps/arm/Makefile.arch b/libpthread/nptl/sysdeps/arm/Makefile.arch -index b7a9295..a8bc1aa 100644 ---- a/libpthread/nptl/sysdeps/arm/Makefile.arch -+++ b/libpthread/nptl/sysdeps/arm/Makefile.arch -@@ -15,4 +15,3 @@ ASFLAGS-pthread_spin_lock.S = -DNOT_IN_libc -DIS_IN_libpthread - ASFLAGS-pthread_spin_trylock.S = -DNOT_IN_libc -DIS_IN_libpthread - ASFLAGS-aeabi_read_tp.S = -DNOT_IN_libc=1 - --CFLAGS-arm = $(SSP_ALL_CFLAGS) -diff --git a/libpthread/nptl/sysdeps/generic/Makefile.in b/libpthread/nptl/sysdeps/generic/Makefile.in -index 890fe05..eb656ee 100644 ---- a/libpthread/nptl/sysdeps/generic/Makefile.in -+++ b/libpthread/nptl/sysdeps/generic/Makefile.in -@@ -19,8 +19,6 @@ libpthread_generic_libc_a_OBJS = $(libpthread_generic_libc_a_COBJ) - libpthread_ld_tls_CSRC = dl-tls.c - libpthread_ld_tls_COBJ = $(patsubst %.c,$(libpthread_generic_OUT)/%.o,$(libpthread_ld_tls_CSRC)) - --CFLAGS-generic = $(SSP_ALL_CFLAGS) -- - objclean-y += CLEAN_libpthread/nptl/sysdeps/generic - - CLEAN_libpthread/nptl/sysdeps/generic: -diff --git a/libpthread/nptl/sysdeps/i386/Makefile.arch b/libpthread/nptl/sysdeps/i386/Makefile.arch -index 89962f7..9572303 100644 ---- a/libpthread/nptl/sysdeps/i386/Makefile.arch -+++ b/libpthread/nptl/sysdeps/i386/Makefile.arch -@@ -8,4 +8,3 @@ - CFLAGS-pthread_spin_lock.c += -D_GNU_SOURCE - CFLAGS-pthread_create.c += -mpreferred-stack-boundary=4 - --CFLAGS-i386 = $(SSP_ALL_CFLAGS) -diff --git a/libpthread/nptl/sysdeps/mips/Makefile.arch b/libpthread/nptl/sysdeps/mips/Makefile.arch -index 6085ec8..2762a2f 100644 ---- a/libpthread/nptl/sysdeps/mips/Makefile.arch -+++ b/libpthread/nptl/sysdeps/mips/Makefile.arch -@@ -15,4 +15,3 @@ ASFLAGS-nptl-sysdep.S = -DNOT_IN_libc -DIS_IN_libpthread \ - - libc_arch_a_CSRC = libc-tls.c - --CFLAGS-mips = $(SSP_ALL_CFLAGS) -diff --git a/libpthread/nptl/sysdeps/powerpc/Makefile.arch b/libpthread/nptl/sysdeps/powerpc/Makefile.arch -index edf3f4b..18ddc28 100644 ---- a/libpthread/nptl/sysdeps/powerpc/Makefile.arch -+++ b/libpthread/nptl/sysdeps/powerpc/Makefile.arch -@@ -5,4 +5,3 @@ - # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - # - --CFLAGS-powerpc = $(SSP_ALL_CFLAGS) -diff --git a/libpthread/nptl/sysdeps/sh/Makefile.arch b/libpthread/nptl/sysdeps/sh/Makefile.arch -index eb4db68..3cb58ec 100644 ---- a/libpthread/nptl/sysdeps/sh/Makefile.arch -+++ b/libpthread/nptl/sysdeps/sh/Makefile.arch -@@ -10,5 +10,4 @@ ASFLAGS-pthread_spin_trylock.S = -DNOT_IN_libc -DIS_IN_libpthread - - CFLAGS-pthread_spin_lock.c += -D_GNU_SOURCE - --CFLAGS-sh = $(SSP_ALL_CFLAGS) - -diff --git a/libpthread/nptl/sysdeps/sparc/Makefile.arch b/libpthread/nptl/sysdeps/sparc/Makefile.arch -index 4494935..52ac6db 100644 ---- a/libpthread/nptl/sysdeps/sparc/Makefile.arch -+++ b/libpthread/nptl/sysdeps/sparc/Makefile.arch -@@ -8,5 +8,4 @@ subdirs += libpthread/nptl/sysdeps/$(TARGET_ARCH)/$(TARGET_SUBARCH)/sparv9 - - CFLAGS-pthread_spin_lock.c += -D_GNU_SOURCE - --CFLAGS-sparc = $(SSP_ALL_CFLAGS) - -diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch b/libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch -index 2385d8d..329d8a9 100644 ---- a/libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch -+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch -@@ -14,7 +14,6 @@ libc_linux_arch_CSRC = fork.c libc-lowlevellock.c - libc_linux_arch_SSRC = clone.S vfork.S - libc_linux_arch_SSRC-OMIT = waitpid.S - --CFLAGS += $(SSP_ALL_CFLAGS) - - CFLAGS-pthread_once.c = -DNOT_IN_libc -DIS_IN_libpthread - CFLAGS-pt-__syscall_rt_sigaction.c = -DNOT_IN_libc -DIS_IN_libpthread -diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/Makefile.arch b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/Makefile.arch -index 1348f4d..9a34595 100644 ---- a/libpthread/nptl/sysdeps/unix/sysv/linux/i386/Makefile.arch -+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/i386/Makefile.arch -@@ -12,7 +12,6 @@ libc_linux_arch_CSRC = fork.c - libc_linux_arch_SSRC = clone.S vfork.S - - ASFLAGS += -DUSE___THREAD --CFLAGS += $(SSP_ALL_CFLAGS) - - CFLAGS-pt-__syscall_error.c = -DNOT_IN_libc -DIS_IN_libpthread - ASFLAGS-pt-vfork.S = -DNOT_IN_libc -DIS_IN_libpthread -D_LIBC_REENTRANT -diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/mips/Makefile.arch b/libpthread/nptl/sysdeps/unix/sysv/linux/mips/Makefile.arch -index 2ff3095..84fe17e 100644 ---- a/libpthread/nptl/sysdeps/unix/sysv/linux/mips/Makefile.arch -+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/mips/Makefile.arch -@@ -12,7 +12,6 @@ libc_linux_arch_CSRC = fork.c - libc_linux_arch_SSRC = clone.S vfork.S - - ASFLAGS += -DUSE___THREAD --CFLAGS += $(SSP_ALL_CFLAGS) - - CFLAGS-OMIT-fork.c = -DNOT_IN_libc -DIS_IN_libpthread - ifeq ($(UCLIBC_HAS_STDIO_FUTEXES),y) -diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Makefile.arch b/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Makefile.arch -index ee75cdb..8581aea 100644 ---- a/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Makefile.arch -+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Makefile.arch -@@ -15,7 +15,6 @@ libc_linux_arch_SSRC = clone.S vfork.S - librt_linux_arch_CSRC = pt-__syscall_error.c - - ASFLAGS += -DUSE___THREAD --CFLAGS += $(SSP_ALL_CFLAGS) - - CFLAGS-pthread_once.c = -DNOT_IN_libc -DIS_IN_libpthread - CFLAGS-lowlevellock.c = -DNOT_IN_libc -DIS_IN_libpthread -diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/Makefile.arch b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/Makefile.arch -index 5ac6724..a8249e0 100644 ---- a/libpthread/nptl/sysdeps/unix/sysv/linux/sh/Makefile.arch -+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sh/Makefile.arch -@@ -16,7 +16,6 @@ libc_linux_arch_CSRC = fork.c - libc_linux_arch_SSRC = libc-lowlevellock.S clone.S vfork.S - - ASFLAGS += -DUSE___THREAD --CFLAGS += $(SSP_ALL_CFLAGS) - - ASFLAGS-pt-vfork.S = -DNOT_IN_libc -DIS_IN_libpthread -D_LIBC_REENTRANT - ASFLAGS-pthread_once.S = -D_LIBC_REENTRANT -diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Makefile.arch b/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Makefile.arch -index d634894..88ca01a 100644 ---- a/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Makefile.arch -+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Makefile.arch -@@ -13,7 +13,6 @@ libc_linux_arch_CSRC = fork.c libc-lowlevellock.c - libc_linux_arch_SSRC = clone.S vfork.S - - ASFLAGS += -DUSE___THREAD --CFLAGS += $(SSP_ALL_CFLAGS) - - ASFLAGS-pt-vfork.S = -DNOT_IN_libc -DIS_IN_libpthread -D_LIBC_REENTRANT - CFLAGS-pthread_once.c = -DNOT_IN_libc -DIS_IN_libpthread -diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Makefile.arch b/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Makefile.arch -index 2ec3383..71df986 100644 ---- a/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Makefile.arch -+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Makefile.arch -@@ -19,7 +19,6 @@ libc_linux_arch_SSRC-OMIT = waitpid.S - librt_linux_arch_SSRC = librt-cancellation.S - - ASFLAGS += -DUSE___THREAD --CFLAGS += $(SSP_ALL_CFLAGS) - - CFLAGS-pt-__syscall_error.c = -DNOT_IN_libc -DIS_IN_libpthread - ASFLAGS-pt-vfork.S = -DNOT_IN_libc -DIS_IN_libpthread -D_LIBC_REENTRANT -diff --git a/libpthread/nptl/sysdeps/x86_64/Makefile.arch b/libpthread/nptl/sysdeps/x86_64/Makefile.arch -index 7a955ff..cf6f1c2 100644 ---- a/libpthread/nptl/sysdeps/x86_64/Makefile.arch -+++ b/libpthread/nptl/sysdeps/x86_64/Makefile.arch -@@ -7,5 +7,4 @@ - - CFLAGS-pthread_spin_lock.c += -D_GNU_SOURCE - --CFLAGS-x86_64 = $(SSP_ALL_CFLAGS) - --- -1.7.3.2 - diff --git a/main/libc0.9.32/APKBUILD b/main/libc0.9.32/APKBUILD index dc53b6b13..00b704681 100644 --- a/main/libc0.9.32/APKBUILD +++ b/main/libc0.9.32/APKBUILD @@ -1,9 +1,9 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> _abiver=0.9.32 pkgname=libc$_abiver -_gitver=1011011024 +_gitver=1011291225 pkgver=${_abiver}_alpha0_git$_gitver -pkgrel=3 +pkgrel=1 pkgdesc="C library for developing embedded Linux systems" url=http://uclibc.org license="LGPL-2" @@ -22,11 +22,11 @@ _snapfile="$pkgname-$pkgver.tar.bz2" source="http://build.alpinelinux.org:8010/distfiles/$_snapfile compat-stack-guard.patch 0001-create-DEVEL_PREFIX-MULTILIB_DIR-dir-rather-than-DEV.patch - 0001-ntpl-fix-static-linking-by-not-leaking-SSP_ALL_CFLAG.patch ldso-x86_64-support-protected-symbols.patch 1.patch 2.patch 0001-libc-fix-strtoq.patch + 0001-libm-x86_64-implement-fesetround.patch uclibcconfig.x86 uclibcconfig.x86_64 uclibcconfig.i486 @@ -118,14 +118,14 @@ libthread_db() { mv "$pkgdir"/lib/libthread_db* "$subpkgdir"/lib/ } -md5sums="dad1117e11d0c709263e5b26a74db9ce libc0.9.32-0.9.32_alpha0_git1011011024.tar.bz2 +md5sums="66220e34b070d7f9fc666f88956f4ef3 libc0.9.32-0.9.32_alpha0_git1011291225.tar.bz2 4d408f72142ce55a0754948cc9cfe447 compat-stack-guard.patch 9dd8192227f54d6d3ccb49dc54137ff3 0001-create-DEVEL_PREFIX-MULTILIB_DIR-dir-rather-than-DEV.patch -337f4fa134307bbdac026d6ff97df5fc 0001-ntpl-fix-static-linking-by-not-leaking-SSP_ALL_CFLAG.patch 84a2786fb4c89bee56607dd09b538d7b ldso-x86_64-support-protected-symbols.patch 8f55efc31c41bf70d99006a7d2f7fe1e 1.patch 350a608e3d3b148af882f6e074225465 2.patch 8064fe87497342a3ab4d8d8df7acc8c6 0001-libc-fix-strtoq.patch +e0c901502602f7e9e002d910d0f32ab9 0001-libm-x86_64-implement-fesetround.patch 145aaeb1833159397cfac9902e3877ab uclibcconfig.x86 -da650c2c6a82e0b153e96774da388935 uclibcconfig.x86_64 +cb1bcf2ff83029b6943d4799d926932b uclibcconfig.x86_64 145aaeb1833159397cfac9902e3877ab uclibcconfig.i486" diff --git a/main/libc0.9.32/uclibcconfig.x86_64 b/main/libc0.9.32/uclibcconfig.x86_64 index c71485493..a07766c80 100644 --- a/main/libc0.9.32/uclibcconfig.x86_64 +++ b/main/libc0.9.32/uclibcconfig.x86_64 @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit # Version: 0.9.32-git -# Thu Nov 18 19:45:51 2010 +# Mon Nov 29 12:34:17 2010 # # TARGET_alpha is not set # TARGET_arm is not set @@ -34,23 +34,6 @@ TARGET_x86_64=y # TARGET_ARCH="x86_64" FORCE_OPTIONS_FOR_ARCH=y -# CONFIG_GENERIC_386 is not set -# CONFIG_386 is not set -# CONFIG_486 is not set -# CONFIG_586 is not set -# CONFIG_586MMX is not set -# CONFIG_686 is not set -# CONFIG_PENTIUMII is not set -# CONFIG_PENTIUMIII is not set -# CONFIG_PENTIUM4 is not set -# CONFIG_K6 is not set -# CONFIG_K7 is not set -# CONFIG_ELAN is not set -# CONFIG_CRUSOE is not set -# CONFIG_WINCHIPC6 is not set -# CONFIG_WINCHIP2 is not set -# CONFIG_CYRIXIII is not set -# CONFIG_NEHEMIAH is not set TARGET_SUBARCH="" # @@ -219,7 +202,7 @@ UCLIBC_HAS_NFTW=y UCLIBC_HAS_FTW=y UCLIBC_HAS_GLOB=y UCLIBC_HAS_GNU_GLOB=y -# UCLIBC_HAS_UTMPX is not set +UCLIBC_HAS_UTMPX=y # # Library Installation Options |