summaryrefslogtreecommitdiff
path: root/media-gfx/dawn/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-04-05 21:52:00 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-04-05 21:52:00 +0100
commit2d446203bcf1a0db08e99abca43513d246dfa73d (patch)
treeec623bb5f1f389976977e375342ec59ff441eab7 /media-gfx/dawn/files
parent171a011ad3a131671aeb5a98b9e3adf219ad2865 (diff)
gentoo resync : 05.04.2018
Diffstat (limited to 'media-gfx/dawn/files')
-rw-r--r--media-gfx/dawn/files/dawn-3.90b-gcc7.patch21
-rw-r--r--media-gfx/dawn/files/dawn-3.90b-no-interactive.patch12
2 files changed, 27 insertions, 6 deletions
diff --git a/media-gfx/dawn/files/dawn-3.90b-gcc7.patch b/media-gfx/dawn/files/dawn-3.90b-gcc7.patch
new file mode 100644
index 000000000000..e144a38df8f0
--- /dev/null
+++ b/media-gfx/dawn/files/dawn-3.90b-gcc7.patch
@@ -0,0 +1,21 @@
+Bug: https://bugs.gentoo.org/638616
+
+--- a/FRString.h
++++ b/FRString.h
+@@ -137,13 +137,13 @@
+ char* p = m_string ;
+
+ // skip first blank if any
+- while( isspace(*p) && p != '\0' ) {p++;}
++ while( isspace(*p) && *p != '\0' ) {p++;}
+
+ // skip one word
+- while( !isspace(*p) && p != '\0' ) {p++;}
++ while( !isspace(*p) && *p != '\0' ) {p++;}
+
+ // skip second blank if any
+- while( isspace(*p) && p != '\0' ) {p++;}
++ while( isspace(*p) && *p != '\0' ) {p++;}
+
+ // reset string
+ strcpy( tmp, p );
diff --git a/media-gfx/dawn/files/dawn-3.90b-no-interactive.patch b/media-gfx/dawn/files/dawn-3.90b-no-interactive.patch
index 244948ec5262..ea8ac7e6a90e 100644
--- a/media-gfx/dawn/files/dawn-3.90b-no-interactive.patch
+++ b/media-gfx/dawn/files/dawn-3.90b-no-interactive.patch
@@ -1,5 +1,5 @@
---- configure_xwin.orig 2008-04-02 22:58:44.973465484 +0100
-+++ configure_xwin 2008-04-03 00:02:15.950190359 +0100
+--- a/configure_xwin
++++ b/configure_xwin
@@ -16,17 +16,17 @@
#----- C++ compiler name
echo "Input C++ compiler name (e.g. g++, no default)."
@@ -87,8 +87,8 @@
echo "" >> Makefile
echo "### Socket libraries to be linked " >> Makefile
---- FRSocketMacro.h.orig 2008-04-02 23:58:51.126518123 +0100
-+++ FRSocketMacro.h 2008-04-02 23:59:03.443220012 +0100
+--- a/FRSocketMacro.h
++++ b/FRSocketMacro.h
@@ -14,8 +14,8 @@
#elif defined SOCKET_REDHAT61
#define CLIENT_ADDR_LENGTH socklen_t
@@ -100,8 +100,8 @@
#endif
//----- gethostname
---- configure.orig 2010-08-21 14:22:18.000000000 +0100
-+++ configure 2010-09-23 05:57:02.000000000 +0100
+--- a/configure
++++ b/configure
@@ -13,22 +13,22 @@
#----- C++ compiler name
echo "Input C++ compiler name (e.g. g++, no default)."