-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
225 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Mumble Murmur Server on Gentoo | ||
================================================================ | ||
|
||
TL;DR: Enable the `cxx` use flag on the `sys-libs/db` package. | ||
|
||
Trying to build the Murmur server with the following dependencies: | ||
|
||
* `media-sound/murmur` | ||
* `dev-libs/Ice` | ||
* `sys-libs/db` | ||
|
||
Default compilation of `sys-libs/Ice` failed with: | ||
|
||
``` | ||
iostream.h no such file or directory | ||
``` | ||
|
||
This was actually an include from another package: `sys-libs/db` | ||
|
||
Looking at the file, it's using a non-standard C++ include (the iostream header should not have a .h on the end of it). This include is guarded by a directive - if CXX compatibility is specified, it would use the correct header file. | ||
|
||
Looking at the `sys-libs/db` package itself, we see it has the `cxx` use flag on it. | ||
|
||
Sure enough, enabling `cxx` globably re-built this package and allowed `Ice` to build correctly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.