-
Notifications
You must be signed in to change notification settings - Fork 266
Fix compile with wayland #1569
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: rolling
Are you sure you want to change the base?
Fix compile with wayland #1569
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| <?xml-model | ||
| href="http://download.ros.org/schema/package_format2.xsd" | ||
| schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
| <package format="2"> | ||
| <package format="3"> | ||
| <name>rviz_ogre_vendor</name> | ||
| <version>15.1.9</version> | ||
| <description> | ||
|
|
@@ -28,7 +28,8 @@ | |
| <build_export_depend>libglew-dev</build_export_depend> | ||
| <exec_depend>libfreetype6</exec_depend> | ||
|
|
||
| <depend>libx11-dev</depend> | ||
| <depend condition="$XDG_SESSION_TYPE == 'x11'">libx11-dev</depend> | ||
| <depend condition="$XDG_SESSION_TYPE == 'wayland'">libwayland-dev</depend> | ||
|
Comment on lines
+31
to
+32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How will this affect the binaries (.debs) provided by ROS? Or any others built by a CI system that has no It seems like CI generated binaries, esp. those provided by the ROS project, should be built with compatibility in mind (i.e support both platforms if possible)? It certainly seems like it would be undesirable for a headless CI system to result in it building with neither X11 nor Wayland support 😁 |
||
| <depend>libxaw</depend> | ||
| <depend>libxrandr</depend> | ||
| <depend>opengl</depend> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.