diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-07-23 23:43:38 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-07-23 23:43:38 +0200 |
commit | 45a42075a4f177c7bf437341222dd0e0111a157c (patch) | |
tree | 946a82bf0bdded08a40de05128eafd071aca8418 /extra/chromium/Pkgfile | |
parent | fd31f94f079fdd1e66448a54818d2d8987973ea4 (diff) | |
parent | 9955b3107e4be33e2c24dceb3baacb594a9e54d7 (diff) | |
download | nutyx-pakxe-45a42075a4f177c7bf437341222dd0e0111a157c.tar.gz nutyx-pakxe-45a42075a4f177c7bf437341222dd0e0111a157c.tar.bz2 nutyx-pakxe-45a42075a4f177c7bf437341222dd0e0111a157c.tar.xz nutyx-pakxe-45a42075a4f177c7bf437341222dd0e0111a157c.zip |
Merge branch 'master' of ssh://kiao.no-ip.info:443/~/attapu
Diffstat (limited to 'extra/chromium/Pkgfile')
-rw-r--r-- | extra/chromium/Pkgfile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/extra/chromium/Pkgfile b/extra/chromium/Pkgfile index 7e20840a6..bfe270f45 100644 --- a/extra/chromium/Pkgfile +++ b/extra/chromium/Pkgfile @@ -6,7 +6,7 @@ # Depends on: yasm, nss, gconf, alsa-lib, xdg-utils, hicolor-icon-theme, bzip2, libxss, libevent name=chromium -version=5.0.375.113 +version=5.0.375.123 release=1 source=(http://build.chromium.org/buildbot/official/$name-$version.tar.bz2 \ @@ -15,14 +15,17 @@ source=(http://build.chromium.org/buildbot/official/$name-$version.tar.bz2 \ build() { -# Compilation des sources +### Compilation des sources cd $name-$version ### Patch - patch -p1 -i$SRC/ffmpeg_branding_mime.patch -# patch -p1 -i$SRC/drop_sse2.patch - patch -p1 -i$SRC/libpng-1.4.patch + # workaround for gcc 4.5 + # see http://code.google.com/p/chromium/issues/detail?id=41887 + export CFLAGS="${CFLAGS} -fno-ipa-cp" + patch -p1 -i $SRC/ffmpeg_branding_mime.patch + [ "${CARCH}" == 'i686' ] && (patch -p1 -i $SRC/drop_sse2.patch) + patch -p1 -i $SRC/libpng-1.4.patch ### Configure build/gyp_chromium -f make build/all.gyp --depth=. \ |