mirror of
https://abf.rosa.ru/djam/firefox-esr91.git
synced 2025-02-24 17:42:59 +00:00
add search engines
This commit is contained in:
parent
41772e832f
commit
34c0be1c5c
10 changed files with 1070 additions and 0 deletions
958
ff.spec
Normal file
958
ff.spec
Normal file
|
@ -0,0 +1,958 @@
|
|||
%define major 10
|
||||
%define realver %{major}.0.7
|
||||
|
||||
# (tpg) MOZILLA_FIVE_HOME
|
||||
%define mozillalibdir %{_libdir}/%{name}-%{realver}
|
||||
%define pluginsdir %{_libdir}/mozilla/plugins
|
||||
%define firefox_channel esr10
|
||||
|
||||
%define release 1
|
||||
|
||||
# this seems fragile, so require the exact version or later (#58754)
|
||||
%define sqlite3_version %(pkg-config --modversion sqlite3 &>/dev/null && pkg-config --modversion sqlite3 2>/dev/null || echo 0)
|
||||
# this one as well (#59759)
|
||||
%define nss_libname %mklibname nss 3
|
||||
%define nss_version %(pkg-config --modversion nss &>/dev/null && pkg-config --modversion nss 2>/dev/null || echo 0)
|
||||
|
||||
Summary: Mozilla Firefox web browser
|
||||
Name: firefox
|
||||
Version: %{realver}
|
||||
Release: %{release}
|
||||
License: MPLv1+
|
||||
Group: Networking/WWW
|
||||
Url: http://www.firefox.com/
|
||||
Source0: ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/%{realver}esr/source/firefox-%{realver}esr.source.tar.bz2
|
||||
Source4: firefox.desktop
|
||||
Source5: firefox-searchengines-jamendo.xml
|
||||
Source6: firefox-searchengines-exalead.xml
|
||||
Source8: firefox-searchengines-askcom.xml
|
||||
Source9: kde.js
|
||||
Source10: firefox-searchengines-yandex.xml
|
||||
Source11: firefox-searchengines-google.xml
|
||||
Source12: firefox-searchengines-bing.xml
|
||||
Patch1: firefox-lang.patch
|
||||
Patch2: firefox-vendor.patch
|
||||
Patch3: firefox-disable-check-default-browser.patch
|
||||
# NOTE: P4 and P41 stems from suse. you can also find updated ones here:
|
||||
# http://svnweb.mageia.org/packages/cauldron/firefox/current/SOURCES/
|
||||
Patch4: firefox-kde.patch
|
||||
Patch41: mozilla-kde.patch
|
||||
# (OpenSuse) add patch to make firefox always use /usr/bin/firefox when "make firefox
|
||||
# the default web browser" is used fix mdv bug#58784
|
||||
Patch5: firefox-3.6.3-appname.patch
|
||||
Patch6: firefox-5.0-asciidel.patch
|
||||
Patch7: firefox-10.0-no_optimizarion_override.diff
|
||||
BuildRequires: gtk+2-devel
|
||||
Requires: %{mklibname sqlite3_ 0} >= %{sqlite3_version}
|
||||
Requires: %{nss_libname} >= 2:%{nss_version}
|
||||
BuildRequires: nspr-devel >= 2:4.8.8
|
||||
BuildRequires: nss-devel >= 2:3.13.1
|
||||
BuildRequires: nss-static-devel >= 2:3.13.1
|
||||
BuildRequires: sqlite3-devel >= 3.7.7.1
|
||||
BuildRequires: libproxy-devel >= 0.4.4
|
||||
BuildRequires: libalsa-devel
|
||||
BuildRequires: libiw-devel
|
||||
BuildRequires: unzip
|
||||
BuildRequires: zip
|
||||
#(tpg) older versions doesn't support apng extension
|
||||
%if %mdkversion >= 201201
|
||||
BuildRequires: libpng-devel >= 1.4.8
|
||||
%endif
|
||||
BuildRequires: makedepend
|
||||
BuildRequires: python
|
||||
BuildRequires: valgrind
|
||||
BuildRequires: rootcerts
|
||||
BuildRequires: doxygen
|
||||
%if %mdkversion >= 201201
|
||||
BuildRequires: gnome-vfs2-devel
|
||||
%else
|
||||
BuildRequires: libgnome-vfs2-devel
|
||||
%endif
|
||||
BuildRequires: libgnome2-devel
|
||||
BuildRequires: libgnomeui2-devel
|
||||
BuildRequires: java-rpmbuild
|
||||
BuildRequires: wget
|
||||
BuildRequires: libnotify-devel
|
||||
BuildRequires: libevent-devel >= 1.4.7
|
||||
BuildRequires: libvpx-devel >= 0.9.7
|
||||
%if %mdkversion >= 201100
|
||||
BuildRequires: cairo-devel >= 1.10
|
||||
%endif
|
||||
BuildRequires: yasm >= 1.0.1
|
||||
BuildRequires: mesagl-devel
|
||||
BuildRequires: startup-notification-devel >= 0.8
|
||||
Provides: webclient
|
||||
#Requires: indexhtml
|
||||
Requires: xdg-utils
|
||||
%if %mdkversion >= 201201
|
||||
# https://qa.mandriva.com/show_bug.cgi?id=65237
|
||||
Requires: gtk2-modules
|
||||
%endif
|
||||
Suggests: ff_deps myspell-en_US nspluginwrapper
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
|
||||
|
||||
%description
|
||||
Mozilla Firefox is a web browser
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Group: Development/Other
|
||||
|
||||
%description devel
|
||||
Files and macros mainly for building Firefox extensions.
|
||||
|
||||
%prep
|
||||
%setup -qn mozilla-%{firefox_channel}
|
||||
|
||||
# disabled for tests
|
||||
%patch1 -p1 -b .lang
|
||||
%patch2 -p1 -b .vendor
|
||||
%patch3 -p1 -b .defaultbrowser
|
||||
%patch6 -p1 -b .wintitle
|
||||
%patch7 -p0 -b .no_optimizarion_override
|
||||
|
||||
## KDE INTEGRATION
|
||||
# copy current files and patch them later to keep them in sync
|
||||
# %%patch4 -p1 -b .kde
|
||||
# %%patch41 -F 1 -p1 -b .kdemoz
|
||||
# install kde.js
|
||||
install -m 644 %{SOURCE9} browser/app/profile/kde.js
|
||||
|
||||
# disabled for now, lets see!
|
||||
#%patch5 -p1 -b .appname
|
||||
|
||||
# (tpg) remove ff bookmarks, use mdv ones
|
||||
rm -rf browser/locales/en-US/profile/bookmarks.html
|
||||
touch browser/locales/en-US/profile/bookmarks.html
|
||||
|
||||
%build
|
||||
# (gmoro) please dont enable all options by hand
|
||||
# we need to trust firefox defaults
|
||||
export MOZCONFIG=`pwd`/mozconfig
|
||||
cat << EOF > $MOZCONFIG
|
||||
mk_add_options MOZILLA_OFFICIAL=1
|
||||
mk_add_options BUILD_OFFICIAL=1
|
||||
#mk_add_options MOZ_MAKE_FLAGS="%{_smp_mflags}"
|
||||
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@
|
||||
ac_add_options --prefix="%{_prefix}"
|
||||
ac_add_options --libdir="%{_libdir}"
|
||||
ac_add_options --sysconfdir="%{_sysconfdir}"
|
||||
ac_add_options --mandir="%{_mandir}"
|
||||
ac_add_options --includedir="%{_includedir}"
|
||||
ac_add_options --datadir="%{_datadir}"
|
||||
ac_add_options --with-system-nspr
|
||||
ac_add_options --with-system-nss
|
||||
ac_add_options --with-system-jpeg
|
||||
ac_add_options --with-system-zlib
|
||||
ac_add_options --with-system-libevent
|
||||
ac_add_options --with-system-libvpx
|
||||
%if %mdkversion >= 201201
|
||||
ac_add_options --with-system-png
|
||||
%else
|
||||
ac_add_options --disable-system-png
|
||||
%endif
|
||||
ac_add_options --with-system-bz2
|
||||
ac_add_options --enable-system-sqlite
|
||||
ac_add_options --disable-installer
|
||||
ac_add_options --disable-updater
|
||||
ac_add_options --with-pthreads
|
||||
ac_add_options --disable-tests
|
||||
ac_add_options --disable-debug
|
||||
ac_add_options --enable-strip
|
||||
ac_add_options --enable-official-branding
|
||||
ac_add_options --enable-libproxy
|
||||
%if %mdkversion >= 201100
|
||||
ac_add_options --enable-system-cairo
|
||||
%else
|
||||
ac_add_options --disable-system-cairo
|
||||
%endif
|
||||
ac_add_options --with-distribution-id=com.mandriva
|
||||
ac_add_options --disable-crashreporter
|
||||
ac_add_options --enable-optimize
|
||||
ac_add_options --enable-startup-notification
|
||||
ac_add_options --enable-gio
|
||||
ac_add_options --disable-cpp-exceptions
|
||||
EOF
|
||||
|
||||
|
||||
# Mozilla builds with -Wall with exception of a few warnings which show up
|
||||
# everywhere in the code; so, don't override that.
|
||||
#
|
||||
# Disable C++ exceptions since Mozilla code is not exception-safe
|
||||
#
|
||||
MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS" | sed -e 's/-Wall//' -e 's/-fexceptions/-fno-exceptions/g')
|
||||
export CFLAGS="$MOZ_OPT_FLAGS"
|
||||
export CXXFLAGS="$MOZ_OPT_FLAGS"
|
||||
export PREFIX="%{_prefix}"
|
||||
export LIBDIR="%{_libdir}"
|
||||
|
||||
MOZ_SMP_FLAGS=-j1
|
||||
# On x86 architectures, Mozilla can build up to 4 jobs at once in parallel,
|
||||
# however builds tend to fail on other arches when building in parallel.
|
||||
%ifarch %{ix86} x86_64
|
||||
[ -z "$RPM_BUILD_NCPUS" ] && \
|
||||
RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
|
||||
[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
|
||||
[ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
|
||||
%endif
|
||||
|
||||
export LDFLAGS="%{ldflags}"
|
||||
make -f client.mk build STRIP="/bin/true" MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
|
||||
|
||||
%install
|
||||
|
||||
%makeinstall_std STRIP=/bin/true
|
||||
|
||||
%{__mkdir_p} %{buildroot}%{_bindir}
|
||||
ln -snf %{mozillalibdir}/firefox %{buildroot}%{_bindir}/firefox
|
||||
|
||||
# don't package two identical binaries
|
||||
pushd %{buildroot}%{mozillalibdir}
|
||||
ln -snf firefox-bin firefox
|
||||
popd
|
||||
|
||||
# Create an own %_libdir/mozilla/plugins
|
||||
%{__mkdir_p} %{buildroot}%{_libdir}/mozilla/plugins
|
||||
|
||||
# (tpg) desktop entry
|
||||
%{__mkdir_p} %{buildroot}%{_datadir}/applications
|
||||
install -m 644 %{SOURCE4} %{buildroot}%{_datadir}/applications/firefox.desktop
|
||||
|
||||
# (gmoro) icons
|
||||
%{__cp} %{buildroot}%{mozillalibdir}/chrome/icons/default/default16.png %{buildroot}/%{mozillalibdir}/icons/
|
||||
for i in 16 32 48 ; do
|
||||
%{__mkdir_p} %{buildroot}%{_iconsdir}/hicolor/"$i"x"$i"/apps
|
||||
ln -sf %{mozillalibdir}/chrome/icons/default/default$i.png %{buildroot}%{_iconsdir}/hicolor/"$i"x"$i"/apps/firefox.png ;
|
||||
done
|
||||
|
||||
# exclusions
|
||||
rm -f %{buildroot}%{mozillalibdir}/README.txt
|
||||
rm -f %{buildroot}%{mozillalibdir}/removed-files
|
||||
rm -f %{buildroot}%{mozillalibdir}/precomplete
|
||||
|
||||
install -D -m644 browser/app/profile/prefs.js %{buildroot}%{mozillalibdir}/defaults/profile/prefs.js
|
||||
cat << EOF >> %{buildroot}%{mozillalibdir}/defaults/profile/prefs.js
|
||||
user_pref("browser.EULA.override", true);
|
||||
user_pref("browser.shell.checkDefaultBrowser", false);
|
||||
user_pref("browser.ctrlTab.previews", true);
|
||||
user_pref("browser.tabs.insertRelatedAfterCurrent", false);
|
||||
user_pref("app.update.auto", false);
|
||||
user_pref("app.update.enabled", false);
|
||||
user_pref("app.update.autoInstallEnabled", false);
|
||||
user_pref("security.ssl.require_safe_negotiation", false);
|
||||
user_pref("browser.startup.homepage", "file:///usr/share/doc/HTML/index.html");
|
||||
user_pref("browser.startup.homepage_override.mstone", "ignore");
|
||||
EOF
|
||||
|
||||
# files in this directory are read on every startup, and can change/add
|
||||
# preferences for existing profiles
|
||||
# extensions.autoDisableScopes is a new preference added in firefox 8
|
||||
# it defines "scopes" where newly installed addons are disabled by default
|
||||
# this is an additive bit field, and the value defaults to 15 (1+2+4+8)
|
||||
# we need to remove system scope (8) from it so language packs and other addons
|
||||
# which are installed systemwide won't get marked as 3rd party and disabled
|
||||
# documentation: http://kb.mozillazine.org/About:config_entries#Extensions.
|
||||
# or in toolkit/mozapps/extensions/AddonManager.jsm
|
||||
# we also need to disable the "disable addon selection dialog"
|
||||
cat << EOF > %{buildroot}%{mozillalibdir}/defaults/pref/mandriva.js
|
||||
pref("app.update.auto", false);
|
||||
pref("app.update.autoInstallEnabled", false);
|
||||
pref("app.update.enabled", false);
|
||||
pref("browser.backspace_action", 2);
|
||||
pref("browser.ctrlTab.previews", true);
|
||||
pref("browser.display.use_system_colors", true);
|
||||
pref("browser.download.folderList", 1);
|
||||
pref("browser.link.open_external", 3);
|
||||
pref("browser.shell.checkDefaultBrowser", false);
|
||||
pref("browser.tabs.insertRelatedAfterCurrent", false);
|
||||
pref("dom.ipc.plugins.enabled.nswrapper*", false);
|
||||
pref("extensions.autoDisableScopes", 0);
|
||||
pref("extensions.shownSelectionUI", true);
|
||||
pref("network.manage-offline-status", true);
|
||||
EOF
|
||||
|
||||
# search engines
|
||||
rm -f %{buildroot}%{mozillalibdir}/searchplugins/*
|
||||
cp -f %{SOURCE5} %{buildroot}%{mozillalibdir}/searchplugins/jamendo.xml
|
||||
cp -f %{SOURCE6} %{buildroot}%{mozillalibdir}/searchplugins/exalead.xml
|
||||
cp -f %{SOURCE8} %{buildroot}%{mozillalibdir}/searchplugins/askcom.xml
|
||||
cp -f %{SOURCE10} %{buildroot}%{mozillalibdir}/searchplugins/yandex.xml
|
||||
cp -f %{SOURCE11} %{buildroot}%{mozillalibdir}/searchplugins/google.xml
|
||||
cp -f %{SOURCE12} %{buildroot}%{mozillalibdir}/searchplugins/bing.xml
|
||||
|
||||
# Correct distro values on search engines
|
||||
sed -i 's/@DISTRO_VALUE@/ffx/' %{buildroot}%{mozillalibdir}/searchplugins/askcom.xml
|
||||
sed -i 's/@DISTRO_VALUE@//' %{buildroot}%{mozillalibdir}/searchplugins/exalead.xml
|
||||
|
||||
mkdir -p %{buildroot}%{_sys_macros_dir}
|
||||
cat <<FIN >%{buildroot}%{_sys_macros_dir}/%{name}.macros
|
||||
# Macros from %{name} package
|
||||
%%firefox_major %{major}
|
||||
%%firefox_version %{realver}
|
||||
%%firefox_mozillapath %{mozillalibdir}
|
||||
%%firefox_pluginsdir %{pluginsdir}
|
||||
%%firefox_appid \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
|
||||
%%firefox_extdir %%(if [ "%%_target_cpu" = "noarch" ]; then echo %%{_datadir}/mozilla/extensions/%%{firefox_appid}; else echo %%{_libdir}/mozilla/extensions/%%{firefox_appid}; fi)
|
||||
FIN
|
||||
|
||||
# the %%makeinstall_std macro also installs devel files that we don't need (yet?)
|
||||
rm -rf %{buildroot}%{_includedir}
|
||||
rm -rf %{buildroot}%{_libdir}/firefox-devel*
|
||||
rm -rf %{buildroot}%{_datadir}/idl
|
||||
|
||||
%post
|
||||
unset DISPLAY
|
||||
if [ ! -r /etc/sysconfig/oem ]; then
|
||||
case `grep META_CLASS /etc/sysconfig/system` in
|
||||
*powerpack) bookmark="mozilla-powerpack.html" ;;
|
||||
*desktop) bookmark="mozilla-one.html";;
|
||||
*) bookmark="mozilla-download.html";;
|
||||
esac
|
||||
ln -s -f ../../../../share/mdk/bookmarks/mozilla/$bookmark %{mozillalibdir}/defaults/profile/bookmarks.html
|
||||
fi
|
||||
|
||||
%files
|
||||
%{_bindir}/firefox
|
||||
%{_iconsdir}/hicolor/*/apps/*.png
|
||||
%{_datadir}/applications/*.desktop
|
||||
%{_libdir}/%{name}-%{realver}*
|
||||
%dir %{_libdir}/mozilla
|
||||
%dir %{pluginsdir}
|
||||
|
||||
%files devel
|
||||
%{_sys_macros_dir}/%{name}.macros
|
||||
|
||||
|
||||
%changelog
|
||||
|
||||
* Wed Apr 11 2012 akdengi <akdengi> 10.0.1-0.3
|
||||
- add yandex search engines
|
||||
- use locales automate
|
||||
- set google default search engine
|
||||
|
||||
* Thu Feb 23 2012 Oden Eriksson <oeriksson@mandriva.com> 10.0.2-0.1mdv2010.2
|
||||
- 10.0.2
|
||||
|
||||
* Sun Feb 12 2012 Oden Eriksson <oeriksson@mandriva.com> 10.0.1-0.1
|
||||
- 10.0.1
|
||||
|
||||
* Fri Feb 10 2012 Oden Eriksson <oeriksson@mandriva.com> 10.0-0.5
|
||||
- built for updates
|
||||
|
||||
* Fri Feb 10 2012 Oden Eriksson <oeriksson@mandriva.com> 10.0-3
|
||||
+ Revision: 772482
|
||||
- argh! the added gtk2-modules dependency was only for cooker
|
||||
|
||||
* Wed Feb 08 2012 Oden Eriksson <oeriksson@mandriva.com> 10.0-2
|
||||
+ Revision: 771872
|
||||
- reverted the ghibo change, it has to be done with a patch otherwise it segfaults at build time
|
||||
- we have to use STRIP="/bin/true" otherwise the debug package is empty
|
||||
- fix deps
|
||||
- fix #65237 (firefox and thunderbird show an empty printers list)
|
||||
|
||||
+ Giuseppe Ghibò <ghibo@mandriva.com>
|
||||
- Make gtk2-modules conditional (as package doesn't exists yet in 2010.2).
|
||||
- remove STRIP=/bin/true from building command line (otherwise resulting RPM binaries are huge)
|
||||
- adjust MOZ_OPTIMIZE_FLAGS, to use -O2 instead of mixing with internal -Os.
|
||||
- enable startup-notification explicitely.
|
||||
|
||||
* Sun Feb 05 2012 Oden Eriksson <oeriksson@mandriva.com> 10.0-1
|
||||
+ Revision: 771258
|
||||
- sync with MDVA-2012:007
|
||||
|
||||
+ Giuseppe Ghibò <ghibo@mandriva.com>
|
||||
- enable strip (because of optimization)
|
||||
- enable disable-cpp-exceptions.
|
||||
- Added min version for libproxy-devel BuildRequires.
|
||||
- Add full optimization (works also for firefox10 in 2010.2).
|
||||
|
||||
* Thu Feb 02 2012 Oden Eriksson <oeriksson@mandriva.com> 10.0-0.1
|
||||
+ Revision: 770749
|
||||
- disable the kde patches for now
|
||||
- fix deps
|
||||
- 10.0
|
||||
- rediffed P4 (kde patch)
|
||||
- dropped P7 (fixed upstream)
|
||||
|
||||
* Fri Jan 13 2012 Oden Eriksson <oeriksson@mandriva.com> 9.0.1-1
|
||||
+ Revision: 760609
|
||||
- sync with MDVA-2011:096
|
||||
|
||||
* Wed Dec 21 2011 Oden Eriksson <oeriksson@mandriva.com> 9.0-1
|
||||
+ Revision: 744085
|
||||
- fix build
|
||||
- 9.0
|
||||
- rediffed the kde patches (P4,P41)
|
||||
- use --with-system-libevent
|
||||
- use --with-system-libvpx
|
||||
|
||||
* Tue Dec 20 2011 Per Øyvind Karlsen <peroyvind@mandriva.org> 8.0.1-2
|
||||
+ Revision: 744016
|
||||
- rebuild to get proper %%_sys_macros_dir
|
||||
|
||||
+ Zé <ze@mandriva.org>
|
||||
- clean BR
|
||||
- firefox install dir needs to be owned to be uninstalled
|
||||
|
||||
* Mon Nov 28 2011 Oden Eriksson <oeriksson@mandriva.com> 8.0.1-1
|
||||
+ Revision: 734973
|
||||
- stupid rpm5
|
||||
- duh!
|
||||
- 8.0.1
|
||||
|
||||
* Wed Nov 09 2011 Oden Eriksson <oeriksson@mandriva.com> 8.0-1
|
||||
+ Revision: 729370
|
||||
- sync with what's soon shows up with MDVSA-2011:169
|
||||
|
||||
* Sat Oct 01 2011 Oden Eriksson <oeriksson@mandriva.com> 7.0.1-1
|
||||
+ Revision: 702204
|
||||
- stole the kde patches from mageia, which in turn stems from suse (thanks neoclust)
|
||||
- 7.0.1
|
||||
- fix build
|
||||
- rediff some patches
|
||||
|
||||
* Wed Sep 07 2011 Oden Eriksson <oeriksson@mandriva.com> 6.0.2-1
|
||||
+ Revision: 698626
|
||||
- 6.0.2
|
||||
|
||||
* Thu Sep 01 2011 Guilherme Moro <guilherme@mandriva.com> 6.0.1-0
|
||||
+ Revision: 697733
|
||||
- updated to version 6.0.1
|
||||
|
||||
* Fri Aug 19 2011 Guilherme Moro <guilherme@mandriva.com> 6.0-0
|
||||
+ Revision: 695828
|
||||
- Updated to version 6.0
|
||||
|
||||
* Mon Jul 25 2011 Funda Wang <fwang@mandriva.org> 5.0.1-1
|
||||
+ Revision: 691499
|
||||
- disable system png for now
|
||||
- new version 5.0.1
|
||||
fix garbage character in window title (patch from fedora)
|
||||
|
||||
* Tue Jun 28 2011 Götz Waschk <waschk@mandriva.org> 5.0-2
|
||||
+ Revision: 687985
|
||||
- bump yasm dep to 1.0.1
|
||||
|
||||
+ Nicolas Lécureuil <nlecureuil@mandriva.com>
|
||||
- Clean spec file
|
||||
|
||||
* Wed Jun 22 2011 Nicolas Lécureuil <nlecureuil@mandriva.com> 5.0-1
|
||||
+ Revision: 686583
|
||||
- Now that this is in firefox branch do not conflict with firefox
|
||||
|
||||
* Wed Jun 22 2011 Guilherme Moro <guilherme@mandriva.com> 5.0-0
|
||||
+ Revision: 686571
|
||||
- New version
|
||||
|
||||
* Tue May 17 2011 Oden Eriksson <oeriksson@mandriva.com> 0:4.0.1-2
|
||||
+ Revision: 675845
|
||||
- rebuild
|
||||
|
||||
* Thu Apr 28 2011 Funda Wang <fwang@mandriva.org> 0:4.0.1-1
|
||||
+ Revision: 660096
|
||||
- new version 4.0.1
|
||||
- firefox is just firefox, we will promote its function in generic name
|
||||
|
||||
* Mon Mar 21 2011 Funda Wang <fwang@mandriva.org> 0:4.0-1
|
||||
+ Revision: 647262
|
||||
- 4.0 final
|
||||
|
||||
* Sun Mar 20 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.rc2.3
|
||||
+ Revision: 647142
|
||||
- New version 4.0 rc2
|
||||
|
||||
+ Nicolas Lécureuil <nlecureuil@mandriva.com>
|
||||
- Enable back kde firefox integration
|
||||
|
||||
* Thu Mar 10 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.rc1.1
|
||||
+ Revision: 643637
|
||||
- update mozilla dir
|
||||
- update file dir
|
||||
- 4.0 rc1
|
||||
|
||||
* Sat Feb 26 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.b12.1
|
||||
+ Revision: 639838
|
||||
- 4.0 b12
|
||||
|
||||
* Tue Feb 08 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.b11.1
|
||||
+ Revision: 636905
|
||||
- disable elf hack also
|
||||
- 4.0 b11
|
||||
|
||||
* Mon Jan 31 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.b10.2
|
||||
+ Revision: 634408
|
||||
- now ships boundled weave sync
|
||||
- update url
|
||||
- drop unused BR
|
||||
|
||||
* Thu Jan 27 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.b10.1
|
||||
+ Revision: 633161
|
||||
- 4.0 b10
|
||||
|
||||
* Fri Jan 21 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.b9.3
|
||||
+ Revision: 631980
|
||||
- rebuild
|
||||
- update desc
|
||||
|
||||
* Tue Jan 18 2011 Guilherme Moro <guilherme@mandriva.com> 0:4.0-0.b9.2
|
||||
+ Revision: 631629
|
||||
- Fixed build with the new omni.jar format and enabled again system nss
|
||||
|
||||
* Tue Jan 18 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.b9.1
|
||||
+ Revision: 631440
|
||||
- 4.0 b9
|
||||
- escape macros
|
||||
- add more firefox macro to ease packaging extensions per discussion on cooker@
|
||||
|
||||
* Wed Jan 05 2011 Funda Wang <fwang@mandriva.org> 0:4.0-0.b8.1mdv2011.0
|
||||
+ Revision: 628756
|
||||
- fix file list
|
||||
|
||||
+ Thierry Vignaud <tv@mandriva.org>
|
||||
- new release
|
||||
|
||||
* Thu Nov 18 2010 Funda Wang <fwang@mandriva.org> 0:4.0-0.b7.4mdv2011.0
|
||||
+ Revision: 598569
|
||||
- more specific firefox preversion for extensions
|
||||
|
||||
* Fri Nov 12 2010 Funda Wang <fwang@mandriva.org> 0:4.0-0.b7.3mdv2011.0
|
||||
+ Revision: 596420
|
||||
- finally fix xulrunne req
|
||||
|
||||
* Fri Nov 12 2010 Funda Wang <fwang@mandriva.org> 0:4.0-0.b7.2mdv2011.0
|
||||
+ Revision: 596408
|
||||
- fix prefinal requires
|
||||
|
||||
* Thu Nov 11 2010 Funda Wang <fwang@mandriva.org> 0:4.0-0.b7.1mdv2011.0
|
||||
+ Revision: 595945
|
||||
- add specific BR for prefinal version
|
||||
|
||||
+ Thierry Vignaud <tv@mandriva.org>
|
||||
- advise to svn cp xulrunner sources instead of adding again the sources in SVN
|
||||
- new release
|
||||
|
||||
* Thu Sep 16 2010 Tomasz Pawel Gajc <tpg@mandriva.org> 0:4.0-0.b6.1mdv2011.0
|
||||
+ Revision: 579047
|
||||
- update to new version 4.0b6
|
||||
|
||||
* Tue Sep 07 2010 Tomasz Pawel Gajc <tpg@mandriva.org> 0:4.0-0.b5.1mdv2011.0
|
||||
+ Revision: 576695
|
||||
- update to new version 4.0b5
|
||||
|
||||
* Mon Aug 30 2010 Funda Wang <fwang@mandriva.org> 0:4.0-0.b4.2mdv2011.0
|
||||
+ Revision: 574483
|
||||
- rebuild for new xulrunner
|
||||
|
||||
* Wed Aug 25 2010 Tomasz Pawel Gajc <tpg@mandriva.org> 0:4.0-0.b4.1mdv2011.0
|
||||
+ Revision: 573010
|
||||
- update to new version 4.0b4
|
||||
|
||||
* Tue Aug 24 2010 Tomasz Pawel Gajc <tpg@mandriva.org> 0:4.0-0.b3.2mdv2011.0
|
||||
+ Revision: 572952
|
||||
+ rebuild (emptylog)
|
||||
|
||||
* Mon Aug 23 2010 Tomasz Pawel Gajc <tpg@mandriva.org> 0:4.0-0.b3.1mdv2011.0
|
||||
+ Revision: 572074
|
||||
- add buildrequires on mesagl-devel
|
||||
- update to new version 4.0b3
|
||||
- disable patches 4 an 17 (need a rediff)
|
||||
- do no build against system-wide nss (temporary)
|
||||
- sync configure options with xulrunner
|
||||
|
||||
* Sat Jul 24 2010 Tomasz Pawel Gajc <tpg@mandriva.org> 0:3.6.8-1mdv2011.0
|
||||
+ Revision: 558168
|
||||
- update to new version 3.6.8
|
||||
|
||||
+ Frederic Crozat <fcrozat@mandriva.com>
|
||||
- revert for cooker / stable
|
||||
|
||||
* Mon Jun 28 2010 Frederic Crozat <fcrozat@mandriva.com> 0:3.6.6-1mdv2010.1
|
||||
+ Revision: 549343
|
||||
- Fix release number for cooker / 2010.1
|
||||
|
||||
* Mon Jun 28 2010 Frederic Crozat <fcrozat@mandriva.com> 0:3.6.6-0.1mdv2010.1
|
||||
+ Revision: 549287
|
||||
- Release 3.6.6
|
||||
|
||||
* Sun Jun 27 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.4-1mdv2010.1
|
||||
+ Revision: 549245
|
||||
- sync with MDVSA-2010:125
|
||||
|
||||
* Mon May 17 2010 Christophe Fergeau <cfergeau@mandriva.com> 0:3.6.3-10mdv2010.1
|
||||
+ Revision: 544926
|
||||
- enable default app path patch
|
||||
|
||||
+ Ahmad Samir <ahmadsamir@mandriva.org>
|
||||
- add patch from OpenSuse to make firefox always use /usr/bin/firefox when
|
||||
"make firefox the default web browser" is used, should fix mdv#58784 (patch is
|
||||
disabled at the moment).
|
||||
|
||||
* Fri Apr 16 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.3-9mdv2010.1
|
||||
+ Revision: 535414
|
||||
- actually make that sqlite3 version discovery working...
|
||||
|
||||
* Thu Apr 15 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.3-8mdv2010.1
|
||||
+ Revision: 535078
|
||||
- fix #58754 (firefox 3.6.3 should require latest sqlite)
|
||||
|
||||
* Mon Apr 12 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.3-7mdv2010.1
|
||||
+ Revision: 533712
|
||||
- actually use the correct name and major for sqlite3
|
||||
- bump release
|
||||
- pull a recent enough sqlite3
|
||||
|
||||
* Fri Apr 09 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.3-6mdv2010.1
|
||||
+ Revision: 533450
|
||||
- re-enable two of the patches (duh!)
|
||||
|
||||
* Thu Apr 08 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.3-5mdv2010.1
|
||||
+ Revision: 533027
|
||||
- set security.ssl.require_safe_negotiation to false. there's too many sites that are affected, including https://qa.mandriva.com
|
||||
|
||||
* Wed Apr 07 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.3-4mdv2010.1
|
||||
+ Revision: 532692
|
||||
- rebuild
|
||||
- more backport fixes
|
||||
- adjust deps a bit
|
||||
|
||||
* Tue Apr 06 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.3-3mdv2010.1
|
||||
+ Revision: 532334
|
||||
- make it backportable to 2008.0
|
||||
|
||||
* Tue Apr 06 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.3-2mdv2010.1
|
||||
+ Revision: 532016
|
||||
- fix CVE-2009-3555
|
||||
|
||||
* Sun Apr 04 2010 Funda Wang <fwang@mandriva.org> 0:3.6.3-1mdv2010.1
|
||||
+ Revision: 531036
|
||||
- new version 3.6.3
|
||||
|
||||
* Tue Mar 23 2010 Oden Eriksson <oeriksson@mandriva.com> 0:3.6.2-1mdv2010.1
|
||||
+ Revision: 526886
|
||||
- it really needs nss-3.12.6
|
||||
- adjust deps
|
||||
- 3.6.2
|
||||
- adjust deps
|
||||
- rather removed more annoyances...
|
||||
- fix "incorrect" opening of new tabs, revert to 3.5 behaviour
|
||||
|
||||
* Thu Jan 21 2010 Funda Wang <fwang@mandriva.org> 0:3.6-1mdv2010.1
|
||||
+ Revision: 494597
|
||||
- New version 3.6 final
|
||||
|
||||
* Wed Jan 20 2010 Nicolas Lécureuil <nlecureuil@mandriva.com> 0:3.6-0.rc2.2mdv2010.1
|
||||
+ Revision: 493941
|
||||
- Add kde integration patch
|
||||
- Add kde.js as source.
|
||||
This is not used yet but will be to add kde integration into firefox
|
||||
|
||||
* Mon Jan 18 2010 Tomasz Pawel Gajc <tpg@mandriva.org> 0:3.6-0.rc2.1mdv2010.1
|
||||
+ Revision: 493330
|
||||
- update to new versin 3.6-rc2
|
||||
|
||||
* Sat Jan 09 2010 Götz Waschk <waschk@mandriva.org> 0:3.6-0.rc1.1mdv2010.1
|
||||
+ Revision: 488183
|
||||
- really fix firefox libdir
|
||||
|
||||
+ Ahmad Samir <ahmadsamir@mandriva.org>
|
||||
-fix spec
|
||||
|
||||
+ Tomasz Pawel Gajc <tpg@mandriva.org>
|
||||
- update to new version 3.6-rc1
|
||||
|
||||
* Fri Dec 18 2009 Christophe Fergeau <cfergeau@mandriva.com> 0:3.6-0.b5.1mdv2010.1
|
||||
+ Revision: 479897
|
||||
- firefox 3.6b5
|
||||
- fix ctrlTab pref in prefs.js
|
||||
|
||||
* Wed Dec 16 2009 Christophe Fergeau <cfergeau@mandriva.com> 0:3.6-0.b4.2mdv2010.1
|
||||
+ Revision: 479429
|
||||
- push 3.6b4 to cooker main/release
|
||||
- switch to firefox 3.6beta4
|
||||
|
||||
* Wed Dec 16 2009 Funda Wang <fwang@mandriva.org> 0:3.5.6-2mdv2010.1
|
||||
+ Revision: 479174
|
||||
- bump rel, previous package was eaten by bs
|
||||
|
||||
* Wed Dec 16 2009 Funda Wang <fwang@mandriva.org> 0:3.5.6-1mdv2010.1
|
||||
+ Revision: 479148
|
||||
- New version 3.5.6
|
||||
|
||||
* Fri Nov 06 2009 Funda Wang <fwang@mandriva.org> 0:3.5.5-1mdv2010.1
|
||||
+ Revision: 460603
|
||||
- New version 3.5.5
|
||||
|
||||
* Mon Oct 26 2009 Bogdano Arendartchuk <bogdano@mandriva.com> 0:3.5.3-2mdv2010.0
|
||||
+ Revision: 459403
|
||||
- added a patch setting the proper mailto handler (#44151)
|
||||
|
||||
* Tue Sep 15 2009 Funda Wang <fwang@mandriva.org> 0:3.5.3-1mdv2010.0
|
||||
+ Revision: 441777
|
||||
- fix wrong use of xulrunner version magic
|
||||
|
||||
+ Tomasz Pawel Gajc <tpg@mandriva.org>
|
||||
- update to new version 3.5.3
|
||||
|
||||
* Sun Aug 23 2009 Tomasz Pawel Gajc <tpg@mandriva.org> 0:3.5.2-4mdv2010.0
|
||||
+ Revision: 420216
|
||||
- update StartupWMClass in firefox.desktop file
|
||||
- drop firefox.png icon, use shipped within tarball ones
|
||||
- move icons to %%_iconsdir/hicolor
|
||||
- use %%xulrunner_version macro
|
||||
- drop buildrequires on lcms-devel
|
||||
- do not overrite default optimization flags in --enable-optimize switch
|
||||
|
||||
* Tue Aug 18 2009 Gustavo De Nardin <gustavodn@mandriva.com> 0:3.5.2-3mdv2010.0
|
||||
+ Revision: 417719
|
||||
- fixed custom mdv homepage patch (firefox-3.0b3-homepage)
|
||||
|
||||
* Tue Aug 18 2009 Gustavo De Nardin <gustavodn@mandriva.com> 0:3.5.2-2mdv2010.0
|
||||
+ Revision: 417646
|
||||
- put the macros in a -devel package, so extensions don't need to require whole firefox
|
||||
|
||||
* Tue Aug 18 2009 Gustavo De Nardin <gustavodn@mandriva.com> 0:3.5.2-1mdv2010.0
|
||||
+ Revision: 417591
|
||||
- added macros for building packages requiring firefox
|
||||
- new version 3.5.2, merged from cooker/firefox/branches/current
|
||||
|
||||
* Tue Aug 04 2009 Eugeni Dodonov <eugeni@mandriva.com> 0:3.0.13-1mdv2010.0
|
||||
+ Revision: 408633
|
||||
- Updated firefox to 3.0.13.
|
||||
|
||||
* Thu Jul 23 2009 Eugeni Dodonov <eugeni@mandriva.com> 0:3.0.12-1mdv2010.0
|
||||
+ Revision: 399083
|
||||
- Updated to FF 3.0.12.
|
||||
|
||||
* Wed Jun 17 2009 Tomasz Pawel Gajc <tpg@mandriva.org> 0:3.0.11-2mdv2010.0
|
||||
+ Revision: 386840
|
||||
- use %%mandriva_branch again
|
||||
|
||||
+ Eugeni Dodonov <eugeni@mandriva.com>
|
||||
- Updated sqlite3 dependencies for Firefox 3.0.11.
|
||||
|
||||
* Fri Jun 12 2009 Funda Wang <fwang@mandriva.org> 0:3.0.11-1mdv2010.0
|
||||
+ Revision: 385514
|
||||
- New version 3.0.11
|
||||
- update firefox.desktop with our own translation
|
||||
|
||||
+ Tomasz Pawel Gajc <tpg@mandriva.org>
|
||||
- rebuild for gcc-4.4.0
|
||||
|
||||
* Fri May 01 2009 Funda Wang <fwang@mandriva.org> 0:3.0.10-1mdv2010.0
|
||||
+ Revision: 369503
|
||||
- New version 3.0.10
|
||||
|
||||
* Sat Mar 28 2009 Gustavo De Nardin <gustavodn@mandriva.com> 0:3.0.8-1mdv2009.1
|
||||
+ Revision: 361836
|
||||
- new version 3.0.8
|
||||
|
||||
* Wed Mar 11 2009 Oden Eriksson <oeriksson@mandriva.com> 0:3.0.7-1mdv2009.1
|
||||
+ Revision: 354017
|
||||
- 3.0.7
|
||||
|
||||
* Tue Feb 03 2009 Funda Wang <fwang@mandriva.org> 0:3.0.6-1mdv2009.1
|
||||
+ Revision: 336982
|
||||
- New version 3.0.6
|
||||
|
||||
+ Gustavo De Nardin <gustavodn@mandriva.com>
|
||||
- obsoletes for upgrades from older distro versions:
|
||||
. obsolete latest Firefox 2 version (2.0.0.19)
|
||||
. obsolete kdeff theme, which only works with Firefox 2
|
||||
- automate subrel definition when building for older distros
|
||||
- prepare firefox 3 to build on older distro versions too
|
||||
|
||||
* Mon Dec 22 2008 Tomasz Pawel Gajc <tpg@mandriva.org> 0:3.0.5-2mdv2009.1
|
||||
+ Revision: 317704
|
||||
- build with %%setup_compile_flags
|
||||
|
||||
+ Funda Wang <fwang@mandriva.org>
|
||||
- New version 3.0.5
|
||||
- rediff lang.patch, vendor.patch
|
||||
|
||||
+ Gustavo De Nardin <gustavodn@mandriva.com>
|
||||
- reduce chance of errors by hardcoding the right values
|
||||
|
||||
* Thu Nov 13 2008 Gustavo De Nardin <gustavodn@mandriva.com> 0:3.0.4-1mdv2009.1
|
||||
+ Revision: 302922
|
||||
- Obsolete new old mozilla-firefox 2.x versions
|
||||
- adding big banner to the spec, to prevent people from messing it up
|
||||
|
||||
+ Tomasz Pawel Gajc <tpg@mandriva.org>
|
||||
- update to new version 3.0.4
|
||||
- update to firefox 3.1-beta1
|
||||
|
||||
* Mon Sep 29 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.3-2mdv2009.0
|
||||
+ Revision: 289827
|
||||
- do not show EULA
|
||||
- bump release
|
||||
|
||||
* Sat Sep 27 2008 Tomasz Pawel Gajc <tpg@mandriva.org> 0:3.0.3-1mdv2009.0
|
||||
+ Revision: 288944
|
||||
- update to new version 3.0.3
|
||||
|
||||
* Fri Sep 26 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.2-2mdv2009.0
|
||||
+ Revision: 288649
|
||||
- add strict version requires to xulrunner (#44255)
|
||||
- bump release
|
||||
|
||||
* Thu Sep 25 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.2-1mdv2009.0
|
||||
+ Revision: 288006
|
||||
- version 3.0.2
|
||||
|
||||
* Thu Sep 04 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-10mdv2009.0
|
||||
+ Revision: 280885
|
||||
- suggest nspluginwrapper
|
||||
- bump release
|
||||
|
||||
* Tue Sep 02 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-9mdv2009.0
|
||||
+ Revision: 279062
|
||||
- obsolete old libmozilla-firefox by using %%mklibname
|
||||
- bump release
|
||||
- enable BUILD_OFFICIAL and MOZILLA_OFFICIAL
|
||||
|
||||
* Mon Aug 18 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-8mdv2009.0
|
||||
+ Revision: 273430
|
||||
- obsoleting all libmozilla-firefox2.0.0.x manually
|
||||
- bump release
|
||||
|
||||
* Mon Aug 18 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-7mdv2009.0
|
||||
+ Revision: 273279
|
||||
- disabling auto selection theme patch
|
||||
|
||||
* Mon Aug 18 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-6mdv2009.0
|
||||
+ Revision: 273216
|
||||
- removing suggests to firefox-theme-kde4ff.
|
||||
- bump release
|
||||
- add Obsoletes to the old libmozilla-firefox
|
||||
|
||||
* Mon Aug 11 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-5mdv2009.0
|
||||
+ Revision: 270873
|
||||
- fixing i18n for menu entries. (desktop file from fedora)
|
||||
|
||||
+ Tomasz Pawel Gajc <tpg@mandriva.org>
|
||||
- bump tag
|
||||
- drop patches 0,8,9,10,11,13 as these are xulrunner specific
|
||||
- build with system wide nspr and nss libraries
|
||||
|
||||
* Wed Aug 06 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-4mdv2009.0
|
||||
+ Revision: 265033
|
||||
- create and own %%_libdir/mozilla/plugins
|
||||
- Remove requires for myspell packages as they will be suggested in l10n packages (#42304)
|
||||
- add suggests to myspell-en_US
|
||||
- bump release
|
||||
|
||||
* Fri Aug 01 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-3mdv2009.0
|
||||
+ Revision: 260092
|
||||
- do not conflict with mozilla-firefox-theme-kdeff. firefox-theme-kde4ff will obsolete it.
|
||||
- add patch to disable classic theme auto selection.
|
||||
- add suggests tag to kde4ff theme
|
||||
- bump release
|
||||
- moving firefox3.desktop to firefox.desktop
|
||||
|
||||
* Wed Jul 30 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-2mdv2009.0
|
||||
+ Revision: 256402
|
||||
- changing ff3 to use xulrunner1.9
|
||||
- dropping ff libification
|
||||
- obsoleting libfirefox3 and mozilla-firefox 2 package
|
||||
- renaming wrapper scripts to firefox and mozilla-firefox
|
||||
- add patch to remove update option from help menu
|
||||
- bump release
|
||||
|
||||
+ Funda Wang <fwang@mandriva.org>
|
||||
- use internal sqlite for previous releases
|
||||
|
||||
+ Frederik Himpe <fhimpe@mandriva.org>
|
||||
- Starting from Firefox 3.0.1, at least sqlite 3.5.9 is needed, so on
|
||||
Mandriva older than 2009.0 use the included sqlite library instead
|
||||
of the system wide one
|
||||
|
||||
* Mon Jul 21 2008 Tiago Salem <salem@mandriva.com.br> 0:3.0.1-1mdv2009.0
|
||||
+ Revision: 239495
|
||||
- Remove networkmanager and sqlite pacthes as they are upstream now.
|
||||
- add Requires to mailcap. Fixes bug #42096
|
||||
- add ask.com search engine
|
||||
- change search engines menu order
|
||||
- bump release
|
||||
- Changing old firefox 2 description to a new one.
|
||||
- bump release (0.b5.2mdv)
|
||||
- fixing libdir for plugins
|
||||
- renaming startup script to firefox3
|
||||
- adding Requires to libfirefox3 on firefox3 package
|
||||
- changing desktop file to point to firefox3
|
||||
- fix wrong plugins directory.
|
||||
- Disabling broken patches.
|
||||
|
||||
+ Tomasz Pawel Gajc <tpg@mandriva.org>
|
||||
- no more branches, move firefox to its own svn place
|
||||
- update to new version 3.0.1
|
||||
- do not strip debug symbols so the debug package is not empty
|
||||
- Patch13: use the correct restart command for session managers (plugins are not being loaded after user login)
|
||||
- try to use jemalloc instead of malloc, as it can help reduce memory fragmentation
|
||||
- enable java build, add buildrequires on java-rpmbuild
|
||||
- provide better description
|
||||
- let's try compile firefox with enabled strict aliasing
|
||||
- don't pass our %%optflags for --enable-optimize
|
||||
- Patch12: ignore NetworkManager status (upstream mozilla bug #424626)
|
||||
- update to new release 3.0
|
||||
- update to new release candidate rc3
|
||||
- update to new release candidate rc2
|
||||
- add missing build requires on gnome stuff (handle mime-types #41201)
|
||||
- add build requires on doxygen
|
||||
- do not install buildrequires for nss-devel and nspr-devel because ff3 uses its own (for now)
|
||||
- hunspell handles now dictionaries, no need to create a symlinks for them
|
||||
- set pref browser.tabs.loadDivertedInBackground (more infos at bug #25009)
|
||||
- disable crashreporter, and drop buildrequires on curl-devel
|
||||
- fix file list
|
||||
- Patch0: try better solution of get the mozilla plugins path (work in progress)
|
||||
- Patch10: do not use firefox's own libIDL
|
||||
- Patch11: hopefully fix compiling against system-wide hunspell
|
||||
- do not build crashreporter tool
|
||||
- enable all image encoders
|
||||
- enable default extensions
|
||||
- enable hunspell support (it is in main now)
|
||||
- use %%serverbuild macro
|
||||
- add cache files
|
||||
- disable hunspell because it is in contrib :(
|
||||
- enable system-wide hunspell support
|
||||
- use system-wide dictionaries
|
||||
- requires desktop-file-utils
|
||||
- drop patch 10, set preferences into spec file
|
||||
- add search engines
|
||||
- add firefox-rebuild-databases.pl tool
|
||||
- enable Mandriva specific bookmarks
|
||||
- add Mandriva specific settings
|
||||
- disable EULA popup
|
||||
- regenerate certificates
|
||||
- disable native uconv (really fixes #40944)
|
||||
- re-enable Xft support
|
||||
- drop requires on icu and buildrequires on icu-devel (useless)
|
||||
- Patch10: various firefox preferences
|
||||
o disable firefox update
|
||||
o enable smooth scroll
|
||||
o use system colors
|
||||
o enable http pipelining
|
||||
- add buildrequires on icu-devel (#40944)
|
||||
- Patch8: completely re-done patch, get the MAXPATHLEN from glibc rather than hardcoding (fixes buffer overflow #41102)
|
||||
- Patch9: remove -WConversion, this silences gcc output
|
||||
- Patch8: fix exePath lenght to prevent firefox crash
|
||||
- disable Xft as it sometimes renders bad fonts (# 40944)
|
||||
- don not ise system-wide nspr and nss libraries, because they were not updated yet
|
||||
- fix file list
|
||||
- fix desktop file
|
||||
- drop the mozilla prefix from the name
|
||||
- enable sqlite support
|
||||
- new version
|
||||
- backport few patches from firefox2
|
||||
- add source and spec file
|
||||
|
||||
+ Giuseppe Ghibò <ghibo@mandriva.com>
|
||||
- Versioning sqlite BuildRequires.
|
||||
- Don't force expanded %%{optflags} in CFLAGS.
|
||||
|
||||
+ Thierry Vignaud <tv@mandriva.org>
|
||||
- devel package needs the library
|
||||
- fix 'empty-%%post(|un)' error (rpm filetriggers deprecates update_menus &
|
||||
update_desktop_database)
|
||||
- stop packaging useless OS/2 & build doc as well as CVS directories
|
||||
- RC1
|
||||
- patch 7: fix testing for sqlite >= 3.5.4 that fails with sqlite-3.5.7
|
11
firefox-searchengines-askcom.xml
Normal file
11
firefox-searchengines-askcom.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/spec/opensearch/1.1/">
|
||||
<os:ShortName>Ask.com</os:ShortName>
|
||||
<os:Description>Get more with each search.</os:Description>
|
||||
<os:InputEncoding>UTF-8</os:InputEncoding>
|
||||
<os:Image width="16" height="16">data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAAAACMuAAAjLgAAAAAAAAAAAAD/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8fH5/5+f1v9pab7/QkKr/0JCqv9dXbT/h4fI/8fH6P//////////////////////////////////////s7Pg/xgYpv8GBqP/Bgaj/wYGof8GBp//Bgac/wYGlv8GBoz/MTGZ/6+v2v//////////////////////x8ft/wkJrv+Dg93/JSXH/wYGwf8GBr//BQW+/wUFuf8FBbT/BQWp/wUFnP8FBYv/QkKh/+3t+P///////////1lZzP8FBbv/wMDx/9DQ9v8FBdP/wMD0/6Gh7f/AwPL/goLk/yQkyP8zM8H/BASm/wQEk/8nJ5T/4eHy//////81NcT/BAS9/0ND2f///////////+/v/f+wsPP/kJDt///////v7/z/0ND1/6Gh5v+wsOT/AwOV/0FBoP//////TU3L/wQEvP8EBMv/wMD1/8DA9//Q0Pj/cnLq/2Fh6f//////r6/z////////////YmLY/wMDrP8DA4//nZ3R/5qa4v8EBLv/BATJ/0ND4f//////4OD7/0JC4//v7/3/sLD1/zEx5f///////////2Ji4/8EBMD/AwOk/0tLsP/8/P7/ODjJ/wQExv8EBNT/wMD3//////9DQ+n/goLw//////+BgfD/7+/9/9/f+//v7/3/FBTT/wMDs/81NbD//////9jY9P8bG8j/BATP/0ND4///////Q0Pq/wQE4/8EBOP/BATj/8DA+P+RkfP/U1Pr/zMz3f8DA7z/XFzG////////////3t73/zIy0v8EBNH/wMD1/wQE2v8EBNz/BATd/wQE3v+RkfH/wMD2/wQE2v8EBM//Bga+/83N7///////////////////////oKDp/1FR2v8EBMz/BATP/wQE0P8EBNH/YmLi//////8EBMv/Dw/G/6ys5//////////////////////////////////8/P7/vr7v/4aG4f9QUNb/Q0PU/0ND1P9fX9j/l5fk/+vr+f//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//8AAP//AAD//w==</os:Image>
|
||||
<UpdateInterval>7</UpdateInterval>
|
||||
<SearchForm>http://www.ask.com</SearchForm>
|
||||
<os:Url type="text/html" method="GET" template="http://www.ask.com/web?q={searchTerms}&o=@DISTRO_VALUE@&l=dis"></os:Url>
|
||||
<os:Url type="application/x-suggestions+json" method="GET" template="http://ss.ask.com/query?q={searchTerms}&li=ff">
|
||||
</os:Url>
|
||||
</SearchPlugin>
|
12
firefox-searchengines-bing.xml
Normal file
12
firefox-searchengines-bing.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
||||
<ShortName>Bing</ShortName>
|
||||
<Tags>Bing</Tags>
|
||||
<Description>Bing. Search by Microsoft.</Description>
|
||||
<Contact>msosa@microsoft.com</Contact>
|
||||
<InputEncoding>UTF-8</InputEncoding>
|
||||
<SyndicationRight>limited</SyndicationRight>
|
||||
<Image width="16" height="16" type="image/x-icon">http://www.bing.com/favicon.ico</Image>
|
||||
<Url type="text/html" template="http://www.bing.com/search?q={searchTerms}&form=OSDSRC"/>
|
||||
<Url type="application/x-suggestions+json" template="http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}&form=OSDJAS" />
|
||||
</OpenSearchDescription>
|
9
firefox-searchengines-exalead.xml
Normal file
9
firefox-searchengines-exalead.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/spec/opensearch/1.1/">
|
||||
<os:ShortName>Exalead</os:ShortName>
|
||||
<os:Description>Exalead search engine</os:Description>
|
||||
<os:InputEncoding>UTF-8</os:InputEncoding>
|
||||
<os:Image width="16" height="16">data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAAAABMLAAATCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnp+gPklJSaMXFxfjAAAA+wAAAfxNSD/jZGNdpZucnj8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0dXcKbmxnliYkHfoAAAD/AAAA/ywpIf+qn37/2sif/7+sh/99clr7ZGNgmMDAwgsAAAAAAAAAAAAAAAC7vL4KW1pTu8vBmP/Ivpn/CQkH/0I+Mf/q3rD//vG///Hltf/s3a//48+k/6uZdv9PTUW/aGlrCwAAAAAAAAAAUVFOlMe/m///9cn//vTI/8rCn//p3rX///XF//ruvf/57bz/9em5//DktP/m06f/rpx5/1lZVZkAAAAAW1xdOI2Ic/3/+9T//PTQ/+Xdu//Bu5z/qqSI/5yWe/+dlnn/samG/9rPpP/8773/8eW1/+XRpf+Ge2H+cHFyO0hIRKTg2br///za/7axmf+ZlYH/w76k/93XuP/e17b/0Min/66nif+Be2P/aGNO/8O5k//77r3/n5Bx/yorK6dqaFzm8evO/5CNfP+xrZj//vja///52v/589P/+PHQ//ryzv//+M7/4tix/11ZR//c0aX/9uu6/zk1Kv8DAwXmYF1T/vbx1/+hnY3/7+rR//v12//48tj/9/LW//bw0v/278//9e3K//Pqwv/678H///LA/3t0XP8AAAD/AAAA/g8PD/7Nybj////s//v24P/59N7/+vTd//jz2f/48tb/9vDS//Xuzv/27sn/+O7D//Pouv/Mwpn/a2VR/w8OC/4MDQ7lsq+k////6//79uP/+/bk///96P/79d7/+PPZ//fy1f/48dL/6uPC/+HYtP/16r3/+Ou6//vtvf9eWUrmPj08o9rWyP///Ov//vrp/+nk1f99enH/+fPg//r03f/48tj///rb/7Oul/8+PDL/9+zB//bquv/bz6T/S0lDpWxsbDaSkIj8///+//767P/y7+H/Li0q/9nVxf//+uT/+PPZ//z22f/Y0rb/JSQf/+DXsP//+MX/jodr/mNkZjkAAAAAUlFQkc7Mxf////////zu/9LOwf/v6tn//ffi//n02//38dX/+fLS/9DKq//78cb/xryU/01MSJYAAAAAAAAAAK6urwlfXly4zczH//////////b///rn//z24f/9+N7///nc//z01f///9r/xr6a/1NSS7snJyoLAAAAAAAAAAAAAAAAgoKDCD08O5GOjYf43tzV//jz5P+ysKf/o6GY/8nErv/TzbH/ioZx+WFgXZSgoaMKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAm5ucO2JiX6FUU0/iERER/AoLDPwdHR3jW1tYo5+goTwAAAAAAAAAAAAAAAAAAAAA//8+CvgfCQngB250wANlcsADPC+AAXRlgAFyPoABCQmAAWtlgAFjb4ABYXDAA2UuwANpbuAHdGn4H2V0//9saQ==</os:Image>
|
||||
<os:Url type="text/html" method="GET" template="http://www.exalead.fr/search?q={searchTerms}">
|
||||
</os:Url><os:Url type="application/x-suggestions+json" method="GET" template="http://www.exalead.fr/search/Suggestions?q={searchTerms}">
|
||||
</os:Url>
|
||||
</SearchPlugin>
|
17
firefox-searchengines-google.xml
Normal file
17
firefox-searchengines-google.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/">
|
||||
<ShortName>Google</ShortName>
|
||||
<Description>Google Search</Description>
|
||||
<InputEncoding>UTF-8</InputEncoding>
|
||||
<Image width="16" height="16">data:image/png;base64,AAABAAEAEBAAAAEAGABoAwAAFgAAACgAAAAQAAAAIAAAAAEAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADs9Pt8xetPtu9FsfFNtu%2BTzvb2%2B%2Fne4dFJeBw0egA%2FfAJAfAA8ewBBegAAAAD%2B%2FPtft98Mp%2BwWsfAVsvEbs%2FQeqvF8xO7%2F%2F%2F63yqkxdgM7gwE%2FggM%2BfQA%2BegBDeQDe7PIbotgQufcMufEPtfIPsvAbs%2FQvq%2Bfz%2Bf%2F%2B%2B%2FZKhR05hgBBhQI8hgBAgAI9ewD0%2B%2Fg3pswAtO8Cxf4Kw%2FsJvvYAqupKsNv%2B%2Fv7%2F%2FP5VkSU0iQA7jQA9hgBDgQU%2BfQH%2F%2Ff%2FQ6fM4sM4KsN8AteMCruIqqdbZ7PH8%2Fv%2Fg6Nc%2Fhg05kAA8jAM9iQI%2BhQA%2BgQDQu6b97uv%2F%2F%2F7V8Pqw3eiWz97q8%2Ff%2F%2F%2F%2F7%2FPptpkkqjQE4kwA7kAA5iwI8iAA8hQCOSSKdXjiyflbAkG7u2s%2F%2B%2F%2F39%2F%2F7r8utrqEYtjQE8lgA7kwA7kwA9jwA9igA9hACiWSekVRyeSgiYSBHx6N%2F%2B%2Fv7k7OFRmiYtlAA5lwI7lwI4lAA7kgI9jwE9iwI4iQCoVhWcTxCmb0K%2BooT8%2Fv%2F7%2F%2F%2FJ2r8fdwI1mwA3mQA3mgA8lAE8lAE4jwA9iwE%2BhwGfXifWvqz%2B%2Ff%2F58u%2Fev6Dt4tr%2B%2F%2F2ZuIUsggA7mgM6mAM3lgA5lgA6kQE%2FkwBChwHt4dv%2F%2F%2F728ei1bCi7VAC5XQ7kz7n%2F%2F%2F6bsZkgcB03lQA9lgM7kwA2iQktZToPK4r9%2F%2F%2F9%2F%2F%2FSqYK5UwDKZAS9WALIkFn%2B%2F%2F3%2F%2BP8oKccGGcIRJrERILYFEMwAAuEAAdX%2F%2Ff7%2F%2FP%2B%2BfDvGXQLIZgLEWgLOjlf7%2F%2F%2F%2F%2F%2F9QU90EAPQAAf8DAP0AAfMAAOUDAtr%2F%2F%2F%2F7%2B%2Fu2bCTIYwDPZgDBWQDSr4P%2F%2Fv%2F%2F%2FP5GRuABAPkAA%2FwBAfkDAPAAAesAAN%2F%2F%2B%2Fz%2F%2F%2F64g1C5VwDMYwK8Yg7y5tz8%2Fv%2FV1PYKDOcAAP0DAf4AAf0AAfYEAOwAAuAAAAD%2F%2FPvi28ymXyChTATRrIb8%2F%2F3v8fk6P8MAAdUCAvoAAP0CAP0AAfYAAO4AAACAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAQAA</Image>
|
||||
<Url type="application/x-suggestions+json" method="GET" template="http://suggestqueries.google.com/complete/search?output=firefox&client=firefox&hl={moz:locale}&q={searchTerms}"/>
|
||||
<Url type="text/html" method="GET" template="http://www.google.com/search">
|
||||
<Param name="q" value="{searchTerms}"/>
|
||||
<Param name="ie" value="utf-8"/>
|
||||
<Param name="oe" value="utf-8"/>
|
||||
<Param name="aq" value="t"/>
|
||||
<!-- Dynamic parameters -->
|
||||
<Param name="rls" value="{moz:distributionID}:{moz:locale}:{moz:official}"/>
|
||||
<MozParam name="client" condition="defaultEngine" trueValue="firefox-a" falseValue="firefox"/>
|
||||
</Url>
|
||||
<SearchForm>http://www.google.com/</SearchForm>
|
||||
</SearchPlugin>
|
12
firefox-searchengines-jamendo.xml
Normal file
12
firefox-searchengines-jamendo.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/spec/opensearch/1.1/">
|
||||
<os:ShortName>Jamendo</os:ShortName>
|
||||
<os:Description>Jamendo Search</os:Description>
|
||||
<os:InputEncoding>ISO-8859-1</os:InputEncoding>
|
||||
<os:Image width="16" height="16">data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1QYPDS8GqqPMwQAAAclJREFUeNpj/P//f+L68wvOP2YgBJKN5OYEGDA/1PdfcOYBw///BNH5Zx+efP7JyFC+GpeRTIyMbqriRtICLExMn37+fvLx+603n1kY/vzBpSHOVNFERujX339ff/0R52JT4Od0VRbFpyFMT/b4g9erzj/8/vsvHwerND+XojAPC8Pv37g0fPr28+nbz7eevf3/n4GBgeEKAwMDAwMzg4EXw79/WBEnK7O5gujnrz8fvv4IF2Ri+P0bF9pw+vavX79N5YR4mRnggsyM2q6M//5hRb9//2ZiYHTXlWNnZLx4/yVEkJlR04nh31/s6O/fJ28+akgJaUgJ3nz8+t2nrwz//jIzqjlAHDcnw7M7zlGUm/3Wkzdfvn1n+PuP4d+/P7///Pn9R1dOjJ2J8dydZwz//iFC6dGrD6x6ChnuRuluRq8/fb3x5M2cneduPX2rJi4gwc/Fxw5VycyoaA2x4cjlBzcfvxbk4RQT5JEQ5FEUF2RjZlIQ49eSE7n3/O22kzdevPnI8O8fI6NzGWYMRDoZGKtKf/j649+//8/eftp15tazt58gUoxxzUsW7znHQBxIcDNmvrBv7b0nby7dfkIwtSZ4mM6rigIAJxY/knh2MaAAAAAASUVORK5CYII=</os:Image>
|
||||
<UpdateInterval>7</UpdateInterval>
|
||||
<UpdateUrl>http://mycroft.mozdev.org/update.php/id0/jamendo.src</UpdateUrl>
|
||||
<IconUpdateUrl>http://mycroft.mozdev.org/update.php/id0/jamendo.png</IconUpdateUrl>
|
||||
<SearchForm>http://www.jamendo.com/index.php</SearchForm>
|
||||
<os:Url type="text/html" method="GET" template="http://www.jamendo.com/index.php?p=search&search_string={searchTerms}&sourceid=mozilla-search">
|
||||
</os:Url>
|
||||
</SearchPlugin>
|
12
firefox-searchengines-yahoo.xml
Normal file
12
firefox-searchengines-yahoo.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
||||
<ShortName>Yahoo</ShortName>
|
||||
<Tags>Bing</Tags>
|
||||
<Description>Bing. Search by Microsoft.</Description>
|
||||
<Contact>msosa@microsoft.com</Contact>
|
||||
<InputEncoding>UTF-8</InputEncoding>
|
||||
<SyndicationRight>limited</SyndicationRight>
|
||||
<Image width="16" height="16" type="image/x-icon">http://www.yahoo.com/favicon.ico</Image>
|
||||
<Url type="text/html" template="http://search.yahoo.com/search?q={searchTerms}&form=OSDSRC"/>
|
||||
<Url type="application/x-suggestions+json" template="http://api.yahoo.com/osjson.aspx?query={searchTerms}&language={language}&form=OSDJAS" />
|
||||
</OpenSearchDescription>
|
9
firefox-searchengines-yandex.xml
Normal file
9
firefox-searchengines-yandex.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/spec/opensearch/1.1/">
|
||||
<os:ShortName>Яндекс</os:ShortName>
|
||||
<os:Description>Yandex Search</os:Description>
|
||||
<os:InputEncoding>UTF-8</os:InputEncoding>
|
||||
<os:Image width="16" height="16">data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAQAABILAAASCwAAAAAAAAAAAAAAAAAsAAAAUwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADjBwcEAwcHBAMHBwQDBwcEAAAAAUbq6uurExMT/xMTE/8TExP/ExMT/xMTE/8TExP/ExMT/xMTE/8TExP9ubm6QAAAALcTExADExMQAxMTEAAAAAFrHx8f/x8fH/8fHx//Hx8f/x8fH/8fHx//Hx8f/x8fH/8fHx//Hx8f/vr6+7h4eHmQAAAAQx8fHAMfHxwAAAABXy8vL/8vLy/+UlM3/AADU/4+Pzv/Ly8v/g4PO/wwM0//Ly8v/y8vL/8vLy/+kpKS6AAAAM8vLywDLy8sAAAAAU9DQ0P/Q0ND/0NDQ/05O2f8dHd3/y8vQ/4eH1f8MDN7/0NDQ/9DQ0P/Q0ND/0NDQ/2VlZXsAAAAk0NDQAAAAAE/U1NT/1NTU/9TU1P/Fxdb/FBTq/3Bw3/+Jidz/DAzr/9TU1P/U1NT/1NTU/9TU1P/JycnkDw8PUwAAAAcAAABL2dnZ/9nZ2f/Z2dn/2dnZ/4WF5f8KCvb/ODjv/w0N9f/Z2dn/2dnZ/9nZ2f/Z2dn/2dnZ/6ioqKYAAAAqAAAASOLi4v/i4uL/4uLi/6io6v8LC/7/QkL2/zo69/8NDf3/4uLi/+Li4v/i4uL/4uLi/+Li4v/g4OD7AAAARgAAAETx8fH/8fHx//Hx8f81Ovz/bG/5//Hx8f+fovb/GB3+//Hx8f/x8fH/8fHx//Hx8f/x8fH/7+/v+wAAAEIAAABA9vb2//b29v/29vb/HSz//7K3+f/29vb/qK35/yUz/v/29vb/9vb2//b29v/29vb/9vb2/8jIyKMAAAAkAAAAPPn5+f/5+fn/+fn5/z5U/v+osvv/+fn5/6+4+/80TP//+fn5//n5+f/5+fn/+fn5//Dw8OMXFxdBAAAABgAAADj7+/v/+/v7//v7+/+Ro/3/UG7+/7/J/P+crf3/Q2P///v7+//7+/v/+/v7//v7+/+Tk5NnAAAAGfv7+wAAAAA1/f39//39/f/9/f3/9vj9/4yk/v9Td///QWn//05z///9/f3//f39//39/f/c3NysAAAAH/39/QD9/f0AAAAAMv7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/5+fnpPj4+PgAAAAn+/v4A/v7+AAAAACn39/fi////////////////////////////////////////////////tbW1cgAAABf///8A////AP///wAAAAAVAAAAKAAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAABv///8A////AP///wD///8AAA8AAAAHAAAAAwAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAMAAAADAAAABwAAAA8AAA==</os:Image>
|
||||
<os:Url type="text/html" method="GET" template="http://yandex.ru/yandsearch?clid=1764177&text={searchTerms}&">
|
||||
</os:Url><os:Url type="application/opensearchdescription+xml" method="GET" template="http://www.searchplugins.net/createos.aspx?number=55840" rel="self">
|
||||
</os:Url>
|
||||
</SearchPlugin>
|
9
firefox-searchengines.int-yandex.xml
Normal file
9
firefox-searchengines.int-yandex.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/spec/opensearch/1.1/">
|
||||
<os:ShortName>Yandex</os:ShortName>
|
||||
<os:Description>Yandex Search</os:Description>
|
||||
<os:InputEncoding>UTF-8</os:InputEncoding>
|
||||
<os:Image width="16" height="16">data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAQAABILAAASCwAAAAAAAAAAAAAAAAAsAAAAUwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADjBwcEAwcHBAMHBwQDBwcEAAAAAUbq6uurExMT/xMTE/8TExP/ExMT/xMTE/8TExP/ExMT/xMTE/8TExP9ubm6QAAAALcTExADExMQAxMTEAAAAAFrHx8f/x8fH/8fHx//Hx8f/x8fH/8fHx//Hx8f/x8fH/8fHx//Hx8f/vr6+7h4eHmQAAAAQx8fHAMfHxwAAAABXy8vL/8vLy/+UlM3/AADU/4+Pzv/Ly8v/g4PO/wwM0//Ly8v/y8vL/8vLy/+kpKS6AAAAM8vLywDLy8sAAAAAU9DQ0P/Q0ND/0NDQ/05O2f8dHd3/y8vQ/4eH1f8MDN7/0NDQ/9DQ0P/Q0ND/0NDQ/2VlZXsAAAAk0NDQAAAAAE/U1NT/1NTU/9TU1P/Fxdb/FBTq/3Bw3/+Jidz/DAzr/9TU1P/U1NT/1NTU/9TU1P/JycnkDw8PUwAAAAcAAABL2dnZ/9nZ2f/Z2dn/2dnZ/4WF5f8KCvb/ODjv/w0N9f/Z2dn/2dnZ/9nZ2f/Z2dn/2dnZ/6ioqKYAAAAqAAAASOLi4v/i4uL/4uLi/6io6v8LC/7/QkL2/zo69/8NDf3/4uLi/+Li4v/i4uL/4uLi/+Li4v/g4OD7AAAARgAAAETx8fH/8fHx//Hx8f81Ovz/bG/5//Hx8f+fovb/GB3+//Hx8f/x8fH/8fHx//Hx8f/x8fH/7+/v+wAAAEIAAABA9vb2//b29v/29vb/HSz//7K3+f/29vb/qK35/yUz/v/29vb/9vb2//b29v/29vb/9vb2/8jIyKMAAAAkAAAAPPn5+f/5+fn/+fn5/z5U/v+osvv/+fn5/6+4+/80TP//+fn5//n5+f/5+fn/+fn5//Dw8OMXFxdBAAAABgAAADj7+/v/+/v7//v7+/+Ro/3/UG7+/7/J/P+crf3/Q2P///v7+//7+/v/+/v7//v7+/+Tk5NnAAAAGfv7+wAAAAA1/f39//39/f/9/f3/9vj9/4yk/v9Td///QWn//05z///9/f3//f39//39/f/c3NysAAAAH/39/QD9/f0AAAAAMv7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/+/v7//v7+//7+/v/5+fnpPj4+PgAAAAn+/v4A/v7+AAAAACn39/fi////////////////////////////////////////////////tbW1cgAAABf///8A////AP///wAAAAAVAAAAKAAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAABv///8A////AP///wD///8AAA8AAAAHAAAAAwAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAMAAAADAAAABwAAAA8AAA==</os:Image>
|
||||
<os:Url type="text/html" method="GET" template="http://yandex.com/yandsearch?clid=1764177&family=yes&text={searchTerms}&lr=11150">
|
||||
</os:Url><os:Url type="application/opensearchdescription+xml" method="GET" template="http://www.searchplugins.net/createos.aspx?number=55840" rel="self">
|
||||
</os:Url>
|
||||
</SearchPlugin>
|
21
gcc.4.4.bug.621446-12.0.patch
Normal file
21
gcc.4.4.bug.621446-12.0.patch
Normal file
|
@ -0,0 +1,21 @@
|
|||
--- mozilla/netwerk/protocol/http/HttpChannelParent.cpp 2012-03-13 06:33:04.000000000 +0100
|
||||
+++ mozilla/netwerk/protocol/http/HttpChannelParent.cpp-new 2012-03-27 15:47:38.000000000 +0200
|
||||
@@ -333,10 +333,17 @@ HttpChannelParent::RecvUpdateAssociatedC
|
||||
return true;
|
||||
}
|
||||
|
||||
-// Bug 621446 investigation, we don't want conditional PR_Aborts bellow to be
|
||||
+// Bug 621446 investigation, we don't want conditional PR_Aborts below to be
|
||||
// merged to a single address.
|
||||
+#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4068)
|
||||
+#endif
|
||||
+// Compiling with a version of GCC <= 4.4 fails with an internal compiler
|
||||
+// error.
|
||||
+#if !defined(__GNUC__) || \
|
||||
+ (__GNUC__ >= 5) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
|
||||
#pragma GCC optimize ("O0")
|
||||
+#endif
|
||||
|
||||
bool
|
||||
HttpChannelParent::RecvRedirect2Verify(const nsresult& result,
|
Loading…
Add table
Reference in a new issue