X-Git-Url: http://gitweb/?a=blobdiff_plain;f=glibc%2FPkgfile;h=c9fad76e7a1ac98643f717fcda8725863495ddd3;hb=eba8238262e19848f51251fd261db84a74b546e8;hp=d95f7ad07062b7ba3cca44ff0dece245d198ba88;hpb=83e7e2d09802b3a99d4eda97a03cad72a1b1039a;p=crossrootfs.git diff --git a/glibc/Pkgfile b/glibc/Pkgfile index d95f7ad..c9fad76 100644 --- a/glibc/Pkgfile +++ b/glibc/Pkgfile @@ -1,21 +1,22 @@ # Description: The C library used in the GNU system # URL: http://www.gnu.org/software/libc/ # Maintainer: CRUX System Team, core-ports at crux dot nu -# Arch Maintainer: CRUX-ARM System Team, devel@crux-arm.nu +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu # Depends on: name=glibc -version=2.10.1 +version=2.16.0 release=1 -source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \ +source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ ftp://ftp.gnu.org/gnu/$name/$name-ports-$version.tar.bz2 \ - ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.29.tar.bz2 \ - $name-$version-cross_hacks-2.patch \ + ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.35.tar.gz \ + $name-resolv_assert.patch + $name-strtod_integer_overflow.patch hosts resolv.conf nsswitch.conf host.conf ld.so.conf) build() { # install build kernel headers - cd linux-2.6.29 + cd linux-2.6.35 make mrproper make ARCH=arm headers_check make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install @@ -24,7 +25,8 @@ build() { mv $name-ports-$version $name-$version/ports pushd $name-$version - patch -p1 -i $SRC/$name-$version-cross_hacks-2.patch + patch -p1 -i $SRC/$name-resolv_assert.patch + patch -p1 -i $SRC/$name-strtod_integer_overflow.patch popd mkdir build @@ -32,6 +34,8 @@ build() { cat > config.cache << EOF libc_cv_gnu89_inline=yes +libc_cv_ctors_header=yes +libc_cv_c_cleanup=yes ac_cv_sizeof_long_double=0 EOF @@ -45,7 +49,8 @@ EOF --enable-add-ons \ --disable-profile \ --without-gd \ - --with-__thread + --with-__thread \ + --enable-obsolete-rpc make CC="$CC" CFLAGS="$CFLAGS" make install_root=$PKG install @@ -54,7 +59,7 @@ EOF ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime mkdir -p $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale - # conflicts with quota - rm $PKG/usr/include/rpcsvc/{rquota.x,rquota.h} - rm -rf $PKG/usr/share/{info,locale} + rm -rf $PKG/usr/share/{info,locale} \ + $PKG/usr/bin/tzselect \ + $PKG/usr/sbin/z{dump,ic} }