diff options
author | Alexis Ballier <aballier@gentoo.org> | 2019-12-10 15:48:22 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2019-12-10 18:34:45 +0100 |
commit | e6da5cbebb60ceb1982fdc12c511f8b92a1133ee (patch) | |
tree | 86eda0787a69599c7b229b82925a93b57c295a7e /sci-electronics/gazebo/files | |
parent | sci-electronics/gazebo: Remove old (diff) | |
download | gentoo-e6da5cbebb60ceb1982fdc12c511f8b92a1133ee.tar.gz gentoo-e6da5cbebb60ceb1982fdc12c511f8b92a1133ee.tar.bz2 gentoo-e6da5cbebb60ceb1982fdc12c511f8b92a1133ee.zip |
sci-electronics/gazebo: fix build with openal 1.20
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'sci-electronics/gazebo/files')
-rw-r--r-- | sci-electronics/gazebo/files/oal.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sci-electronics/gazebo/files/oal.patch b/sci-electronics/gazebo/files/oal.patch new file mode 100644 index 000000000000..4a09793aed00 --- /dev/null +++ b/sci-electronics/gazebo/files/oal.patch @@ -0,0 +1,19 @@ +Fixes build with openal 1.20 + +Index: gazebo-10.1.0/gazebo/util/OpenALPrivate.hh +=================================================================== +--- gazebo-10.1.0.orig/gazebo/util/OpenALPrivate.hh ++++ gazebo-10.1.0/gazebo/util/OpenALPrivate.hh +@@ -37,10 +37,10 @@ namespace gazebo + class OpenALPrivate + { + /// \brief OpenAL audio context pointer. +- public: ALCcontext_struct *context; ++ public: ALCcontext *context; + + /// \brief OpenAL audio device pointer. +- public: ALCdevice_struct *audioDevice; ++ public: ALCdevice *audioDevice; + + /// \brief OpenAL sink pointer. + public: OpenALSinkPtr sink; |