X-Git-Url: http://gitweb/?a=blobdiff_plain;f=glibc%2FPkgfile;h=d0e5ffab104ba5984e6c8657ba117c5891038059;hb=6774004aa30130eca43a8e02421bf143c10b9bb5;hp=6313e3a5595bd3c823ab1c44b8baa3b329267992;hpb=4551f658370948e674aa4c28add80fc2b7085cf4;p=crossrootfs.git diff --git a/glibc/Pkgfile b/glibc/Pkgfile index 6313e3a..d0e5ffa 100644 --- a/glibc/Pkgfile +++ b/glibc/Pkgfile @@ -5,38 +5,39 @@ # Depends on: name=glibc -version=2.12.2 -release=2 +version=2.16.0 +release=4 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ - ftp://ftp.gnu.org/gnu/$name/$name-ports-2.12.1.tar.bz2 \ - ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.35.tar.gz \ - glibc-ignore_origin.patch \ - Optimize-__getpagesize-a-bit.patch \ - $name-$version-cross_hacks-2.patch \ + ftp://ftp.gnu.org/gnu/$name/$name-ports-$version.tar.bz2 \ + ftp://ftp.kernel.org/pub/linux/kernel/v3.0/linux-3.4.11.tar.xz \ + $name-resolv_assert.patch + $name-strtod_integer_overflow.patch + $name-regexp_buffer_overrun.patch hosts resolv.conf nsswitch.conf host.conf ld.so.conf) build() { # install build kernel headers - cd linux-2.6.35 + cd linux-3.4.11 make mrproper make ARCH=arm headers_check make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install cd $SRC - mv $name-ports-2.12.1 $name-$version/ports + mv $name-ports-$version $name-$version/ports pushd $name-$version - patch -p1 -i $SRC/$name-$version-cross_hacks-2.patch - patch -R -p1 -i $SRC/Optimize-__getpagesize-a-bit.patch - patch -p1 -i $SRC/$name-ignore_origin.patch + patch -p1 -i $SRC/$name-resolv_assert.patch + patch -p1 -i $SRC/$name-strtod_integer_overflow.patch + patch -p1 -i $SRC/$name-regexp_buffer_overrun.patch popd mkdir build cd build cat > config.cache << EOF -libc_cv_gnu89_inline=yes -ac_cv_sizeof_long_double=0 +libc_cv_forced_unwind=yes +libc_cv_ctors_header=yes +libc_cv_c_cleanup=yes EOF ../$name-$version/configure --build=$CHOST \ @@ -45,11 +46,12 @@ EOF --libexecdir=/usr/lib \ --with-headers=$PKG/usr/include \ --with-tls \ - --enable-kernel=2.6.0 \ + --enable-kernel=2.6.25 \ --enable-add-ons \ --disable-profile \ --without-gd \ - --with-__thread + --with-__thread \ + --enable-obsolete-rpc make CC="$CC" CFLAGS="$CFLAGS" make install_root=$PKG install @@ -58,5 +60,7 @@ EOF ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime mkdir -p $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale - rm -rf $PKG/usr/share/{info,locale} + rm -rf $PKG/usr/share/{info,locale} \ + $PKG/usr/bin/tzselect \ + $PKG/usr/sbin/z{dump,ic} }