* [gentoo-commits] gentoo-x86 commit in app-text/epstool/files: gcc43.patch
@ 2009-02-17 21:23 Patrick Kursawe (phosphan)
0 siblings, 0 replies; 2+ messages in thread
From: Patrick Kursawe (phosphan) @ 2009-02-17 21:23 UTC (permalink / raw
To: gentoo-commits
phosphan 09/02/17 21:23:39
Added: gcc43.patch
Log:
Fix for gcc 4.3 and newer (bug #259305).
(Portage version: 2.1.6.4/cvs/Linux 2.6.26-gentoo-r4 i686)
Revision Changes Path
1.1 app-text/epstool/files/gcc43.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/epstool/files/gcc43.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/epstool/files/gcc43.patch?rev=1.1&content-type=text/plain
Index: gcc43.patch
===================================================================
--- epstool-3.08.orig/src/epstool.c 2005-06-10 04:41:00.000000000 -0500
+++ epstool-3.08/src/epstool.c 2009-02-16 20:55:43.186140029 -0600
@@ -2824,7 +2824,7 @@
code = -1;
}
if ((code==0) && stdout_name && (hChildStdoutWr == -1)) {
- handle = open(stdout_name, O_WRONLY | O_CREAT);
+ handle = open(stdout_name, O_WRONLY | O_CREAT, 0644);
hChildStdoutWr = dup2(handle, 1);
if (handle != -1)
close(handle);
@@ -2832,7 +2832,7 @@
code = -1;
}
if ((code==0) && stderr_name && (hChildStderrWr == -1)) {
- handle = open(stderr_name, O_WRONLY | O_CREAT);
+ handle = open(stderr_name, O_WRONLY | O_CREAT, 0644);
hChildStderrWr = dup2(handle, 2);
if (handle != -1)
close(handle);
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/epstool/files: gcc43.patch
@ 2014-04-06 23:54 Jeroen Roovers (jer)
0 siblings, 0 replies; 2+ messages in thread
From: Jeroen Roovers (jer) @ 2014-04-06 23:54 UTC (permalink / raw
To: gentoo-commits
jer 14/04/06 23:54:32
Modified: gcc43.patch
Log:
Fix parallel make issue (bug #506978). Clean up patch.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path
1.2 app-text/epstool/files/gcc43.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/epstool/files/gcc43.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/epstool/files/gcc43.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/epstool/files/gcc43.patch?r1=1.1&r2=1.2
Index: gcc43.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/epstool/files/gcc43.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gcc43.patch 17 Feb 2009 21:23:39 -0000 1.1
+++ gcc43.patch 6 Apr 2014 23:54:32 -0000 1.2
@@ -1,5 +1,5 @@
---- epstool-3.08.orig/src/epstool.c 2005-06-10 04:41:00.000000000 -0500
-+++ epstool-3.08/src/epstool.c 2009-02-16 20:55:43.186140029 -0600
+--- a/src/epstool.c
++++ b/src/epstool.c
@@ -2824,7 +2824,7 @@
code = -1;
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-04-06 23:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-17 21:23 [gentoo-commits] gentoo-x86 commit in app-text/epstool/files: gcc43.patch Patrick Kursawe (phosphan)
-- strict thread matches above, loose matches on Subject: below --
2014-04-06 23:54 Jeroen Roovers (jer)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox