Update to 1.6.3.
- enable webgl
This commit is contained in:
parent
25aad343db
commit
1b62983aca
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@ webkit-1.3.2.tar.gz
|
|||||||
/webkit-1.4.2.tar.gz
|
/webkit-1.4.2.tar.gz
|
||||||
/webkit-1.4.3.tar.gz
|
/webkit-1.4.3.tar.gz
|
||||||
/webkit-1.6.1.tar.gz
|
/webkit-1.6.1.tar.gz
|
||||||
|
/webkit-1.6.3.tar.xz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
c11743694b1b71dad287b2e7a9e73b05 webkit-1.6.1.tar.gz
|
c476d9335419df061510d31e21175df1 webkit-1.6.3.tar.xz
|
||||||
|
@ -34,8 +34,8 @@
|
|||||||
%bcond_with wml
|
%bcond_with wml
|
||||||
|
|
||||||
Name: webkitgtk
|
Name: webkitgtk
|
||||||
Version: 1.6.1
|
Version: 1.6.3
|
||||||
Release: 5%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: GTK+ Web content engine library
|
Summary: GTK+ Web content engine library
|
||||||
|
|
||||||
Provides: WebKit-gtk = %{version}-%{release}
|
Provides: WebKit-gtk = %{version}-%{release}
|
||||||
@ -45,7 +45,7 @@ Group: Development/Libraries
|
|||||||
License: LGPLv2+ and BSD
|
License: LGPLv2+ and BSD
|
||||||
URL: http://www.webkitgtk.org/
|
URL: http://www.webkitgtk.org/
|
||||||
|
|
||||||
Source0: http://www.webkitgtk.org/webkit-%{version}.tar.gz
|
Source0: http://www.webkitgtk.org/webkit-%{version}.tar.xz
|
||||||
|
|
||||||
## See: https://bugzilla.redhat.com/show_bug.cgi?id=516057
|
## See: https://bugzilla.redhat.com/show_bug.cgi?id=516057
|
||||||
## FIXME: We forcibly disable the JIT compiler for the time being.
|
## FIXME: We forcibly disable the JIT compiler for the time being.
|
||||||
@ -57,8 +57,6 @@ Patch1: webkit-1.3.12-no-execmem.patch
|
|||||||
Patch2: webkit-1.3.10-nspluginwrapper.patch
|
Patch2: webkit-1.3.10-nspluginwrapper.patch
|
||||||
# https://bugs.webkit.org/show_bug.cgi?id=69940
|
# https://bugs.webkit.org/show_bug.cgi?id=69940
|
||||||
Patch3: webkit-1.6.1-dtoa-s390.patch
|
Patch3: webkit-1.6.1-dtoa-s390.patch
|
||||||
# GMutex changed type, eh.
|
|
||||||
Patch4: webkit-1.6.1-new-glib.patch
|
|
||||||
# Fix string def
|
# Fix string def
|
||||||
Patch5: webkit-1.6.1-stringfix.patch
|
Patch5: webkit-1.6.1-stringfix.patch
|
||||||
# add unistd.h include
|
# add unistd.h include
|
||||||
@ -82,6 +80,7 @@ BuildRequires: libXt-devel
|
|||||||
BuildRequires: pcre-devel
|
BuildRequires: pcre-devel
|
||||||
BuildRequires: sqlite-devel
|
BuildRequires: sqlite-devel
|
||||||
BuildRequires: gobject-introspection-devel
|
BuildRequires: gobject-introspection-devel
|
||||||
|
BuildRequires: mesa-libGL-devel
|
||||||
|
|
||||||
## Conditional dependencies...
|
## Conditional dependencies...
|
||||||
%if %{with pango}
|
%if %{with pango}
|
||||||
@ -127,7 +126,6 @@ LICENSE, README, and AUTHORS files.
|
|||||||
%patch1 -p1 -b .no-execmem
|
%patch1 -p1 -b .no-execmem
|
||||||
%patch2 -p1 -b .nspluginwrapper
|
%patch2 -p1 -b .nspluginwrapper
|
||||||
%patch3 -p1 -b .dtoa-s390
|
%patch3 -p1 -b .dtoa-s390
|
||||||
%patch4 -p1 -b .glib
|
|
||||||
%patch5 -p1 -b .stringfix
|
%patch5 -p1 -b .stringfix
|
||||||
%patch6 -p1 -b .unistd
|
%patch6 -p1 -b .unistd
|
||||||
|
|
||||||
@ -142,6 +140,7 @@ CFLAGS="%optflags -DLIBSOUP_I_HAVE_READ_BUG_594377_AND_KNOW_SOUP_PASSWORD_MANAGE
|
|||||||
--enable-geolocation \
|
--enable-geolocation \
|
||||||
--enable-introspection \
|
--enable-introspection \
|
||||||
--with-gtk=2.0 \
|
--with-gtk=2.0 \
|
||||||
|
--enable-webgl \
|
||||||
%{?with_3dtransforms: --enable-3D-transforms } \
|
%{?with_3dtransforms: --enable-3D-transforms } \
|
||||||
%{?with_coverage: --enable-coverage } \
|
%{?with_coverage: --enable-coverage } \
|
||||||
%{?with_debug: --enable-debug } \
|
%{?with_debug: --enable-debug } \
|
||||||
@ -151,6 +150,7 @@ CFLAGS="%optflags -DLIBSOUP_I_HAVE_READ_BUG_594377_AND_KNOW_SOUP_PASSWORD_MANAGE
|
|||||||
|
|
||||||
mkdir -p DerivedSources/webkit
|
mkdir -p DerivedSources/webkit
|
||||||
mkdir -p DerivedSources/WebCore
|
mkdir -p DerivedSources/WebCore
|
||||||
|
mkdir -p DerivedSources/ANGLE
|
||||||
|
|
||||||
# Disabled because of https://bugs.webkit.org/show_bug.cgi?id=34846
|
# Disabled because of https://bugs.webkit.org/show_bug.cgi?id=34846
|
||||||
make V=1 %{?_smp_mflags}
|
make V=1 %{?_smp_mflags}
|
||||||
@ -218,6 +218,10 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas
|
|||||||
%{_docdir}/%{name}-%{version}/
|
%{_docdir}/%{name}-%{version}/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 01 2012 Kevin Fenzi <kevin@scrye.com> 1.6.3-1
|
||||||
|
- Update to 1.6.3.
|
||||||
|
- enable webgl
|
||||||
|
|
||||||
* Fri Jan 20 2012 Kevin Fenzi <kevin@scrye.com> - 1.6.1-5
|
* Fri Jan 20 2012 Kevin Fenzi <kevin@scrye.com> - 1.6.1-5
|
||||||
- Fix string issue causing failure to build. Already upstreamed.
|
- Fix string issue causing failure to build. Already upstreamed.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user