diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2015-10-10 00:47:53 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2015-10-10 00:47:53 +0300 |
commit | 5351c9596c8f014cc2e664d256fb5bd432229a66 (patch) | |
tree | 0a99a15ea41f8eb2dd02d8326d1e2b0fca485b81 /media-sound | |
parent | d140ccafc16603eb7ac6da82517ea25e6ef94f53 (diff) |
mumble: patch for new compilers which is not silently include default headers
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/mumble/files/gcc.patch | 12 | ||||
-rw-r--r-- | media-sound/mumble/mumble-scm.ebuild | 8 |
2 files changed, 15 insertions, 5 deletions
diff --git a/media-sound/mumble/files/gcc.patch b/media-sound/mumble/files/gcc.patch new file mode 100644 index 0000000..12d2851 --- /dev/null +++ b/media-sound/mumble/files/gcc.patch @@ -0,0 +1,12 @@ +diff --git a/src/SSLCipherInfo.h b/src/SSLCipherInfo.h +index 508db61..2889b82 100644 +--- a/src/SSLCipherInfo.h ++++ b/src/SSLCipherInfo.h +@@ -30,6 +30,7 @@ +
+ #ifndef MUMBLE_SSLCIPHERINFO_H_
+ #define MUMBLE_SSLCIPHERINFO_H_
++#include <string.h> +
+ struct SSLCipherInfo {
+ const char *openssl_name;
diff --git a/media-sound/mumble/mumble-scm.ebuild b/media-sound/mumble/mumble-scm.ebuild index 4411f2e..bc45019 100644 --- a/media-sound/mumble/mumble-scm.ebuild +++ b/media-sound/mumble/mumble-scm.ebuild @@ -15,8 +15,6 @@ HOMEPAGE="http://mumble.sourceforge.net/" SRC_URI="" EGIT_REPO_URI="https://github.com/mumble-voip/mumble.git" -#EGIT_BOOTSTRAP="./autogen.sh" -#EGIT_HAS_SUBMODULES="1" LICENSE="BSD MIT" @@ -51,9 +49,9 @@ RDEPEND=">=dev-libs/boost-1.41.0 DEPEND="${RDEPEND} virtual/pkgconfig" -#PATCHES=( - #"${FILESDIR}"/${PN}-1.2.4-speech-dispatcher.patch -#) +PATCHES=( + "${FILESDIR}"/gcc.patch +) #S="${WORKDIR}/${MY_P}" |