1
0

Accepting request 163032 from mozilla:Factory

- Explicitly disable WebRTC support on non-x86, the configure script
  disables it only half-heartedly (forwarded request 162909 from AndreasSchwab)

OBS-URL: https://build.opensuse.org/request/show/163032
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/MozillaFirefox?expand=0&rev=171
This commit is contained in:
Stephan Kulow 2013-04-07 12:23:39 +00:00 committed by Git OBS Bridge
commit 5dcfd81645
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Apr 5 17:04:11 UTC 2013 - schwab@linux-m68k.org
- Explicitly disable WebRTC support on non-x86, the configure script
disables it only half-heartedly
-------------------------------------------------------------------
Fri Mar 29 22:15:21 UTC 2013 - wr@rosenauer.org

View File

@ -338,6 +338,10 @@ EOF
%ifarch %arm
cat << EOF >> $MOZCONFIG
ac_add_options --disable-neon
EOF
%endif
%ifnarch %ix86 x86_64
cat << EOF >> $MOZCONFIG
ac_add_options --disable-webrtc
EOF
%endif