1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# Copyright 2004-2012 SPARTA, Inc. All rights reserved.
# See the COPYING file included with the dnssec-tools package for details.
DNSSEC-Tools
Is your domain secure?
This directory contains a patch to apply to the mozilla xulrunner code for
enabling DNSSEC checking of URL DNS names.
The current patches are for xulrunner 4.8.2, though they may work with
other releases.
Needed Files depending on what is being built:
+-------------------------+--------+-----------+
| |xulrunner RPM|xulrunner source|
+-------------------------+--------+-----------+
|dnssec-xulrunner.patch |X |X |
|xulrunner-spec.patch |X | |
+-------------------------+--------+-----------+
######################################################################
# PREREQUISITES
All of the following instructions assume you have the dnssec-tools
package already install (specifically, libval and libsres).
######################################################################
# xulrunner RPM
#
If you don't already have a rpm build tree, create one with
rpmdeb-setuptree.
cd ~/rpmbuild/SRPMS
yumdownloader --source xulrunner
rpm -ivh xulrunner-*src.rpm
# or fedpkg co xulrunner && cd xulrunner && fedpkg switch-branch f13
cd ~/rpmbuild/SPECS
patch < ~/dnssec-tools/apps/mozilla/xulrunner-spec.patch
cp ~/dnssec-tools/apps/mozilla/dnssec-both.patch ~/dnssec-tools/apps/mozilla/dnssec-firefox.patch ~/rpmbuild/SOURCES/
rpmbuild -bb ~/rpmbuild/SPECS/xulrunner.spec
# or: fedpkg local
sudo rpm -Uvh ~/rpmbuild/RPMS/i386/xulrunner-*
######################################################################
|