[SVN-Commit] r1498 - in trunk/www/seamonkey: . files
svn-freebsd-gecko at chruetertee.ch
svn-freebsd-gecko at chruetertee.ch
Sat Feb 15 05:09:27 UTC 2014
Author: jbeich
Date: Sat Feb 15 05:09:19 2014
New Revision: 1498
Log:
unbreak |make patch| with ENIGMAIL disabled after r1488
Added:
trunk/www/seamonkey/files/extra-patch-mailnews-extensions-enigmail-config-getOsTarget.pl
- copied, changed from r1497, trunk/www/seamonkey/files/patch-mailnews-extensions-enigmail-config-getOsTarget.pl
Deleted:
trunk/www/seamonkey/files/patch-mailnews-extensions-enigmail-config-getOsTarget.pl
Modified:
trunk/www/seamonkey/Makefile
Modified: trunk/www/seamonkey/Makefile
==============================================================================
--- trunk/www/seamonkey/Makefile Sat Feb 15 05:09:11 2014 (r1497)
+++ trunk/www/seamonkey/Makefile Sat Feb 15 05:09:19 2014 (r1498)
@@ -105,6 +105,7 @@
EM_ID_RFILES= ${XPI_LIBDIR}/${EM_ID}/install.rdf \
${XPI_LIBDIR}/${EM_ID}/components/enigmail.js \
${XPI_LIBDIR}/${EM_ID}/modules/enigmailCommon.jsm
+EXTRA_PATCHES+= ${FILESDIR}/extra-patch-mailnews-extensions-enigmail-config-getOsTarget.pl
.endif
.endif
Copied and modified: trunk/www/seamonkey/files/extra-patch-mailnews-extensions-enigmail-config-getOsTarget.pl (from r1497, trunk/www/seamonkey/files/patch-mailnews-extensions-enigmail-config-getOsTarget.pl)
==============================================================================
Deleted: trunk/www/seamonkey/files/patch-mailnews-extensions-enigmail-config-getOsTarget.pl
==============================================================================
--- trunk/www/seamonkey/files/patch-mailnews-extensions-enigmail-config-getOsTarget.pl Sat Feb 15 05:09:19 2014 (r1497)
+++ /dev/null 00:00:00 1970 (deleted)
@@ -1,43 +0,0 @@
-commit 49a1daf
-Author: Patrick Brunschwig <patrick at enigmail.net>
-Date: Tue Jan 28 18:10:54 2014 +0100
-
- fixed detection of compiler type for better supporting cross-compilers
----
- config/getOsTarget.pl | 8 +++++---
- 1 file changed, 5 insertions(+), 3 deletions(-)
-
-diff --git config/getOsTarget.pl config/getOsTarget.pl
-index 91285cd..cf4a233 100755
---- mailnews/extensions/enigmail/config/getOsTarget.pl
-+++ mailnews/extensions/enigmail/config/getOsTarget.pl
-@@ -9,13 +9,15 @@
- # -c : CPU and compiler type
- # -o : OS type
-
-+use File::Basename;
-+
- if ($#ARGV != 3) {
- exit (1);
- }
-
- my $srcOs = $ARGV[1];
- my $srcCpu = $ARGV[2];
--my $srcComp = $ARGV[3];
-+my $srcComp = basename($ARGV[3]);
-
- my $targetOs = "";
- my $targetCpu = "";
-@@ -95,10 +97,10 @@ else {
- if ($targetOs eq "WINNT") {
- $targetComp = "msvc";
- }
--if ($srcComp =~ /^gcc/) {
-+elsif ($srcComp =~ /gcc/) {
- $targetComp = "gcc3";
- }
--elsif ($srcComp =~ /^cc/) {
-+elsif ($srcComp =~ /cc/) {
- if ($targetOs eq "SunOS") {
- $targetComp = "sunc";
- }
More information about the freebsd-gecko
mailing list