Skip to content
This repository has been archived by the owner on Feb 3, 2025. It is now read-only.

Fix pkg-config boost entries for Ubuntu Focal (gazebo11) #2797

Merged
merged 2 commits into from
Aug 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,8 @@ else (build_errors)
endif()
# Remove the prefix lib (not always present, like in pthread)
string (REPLACE "lib" "" bname "${bname}")
# Some boost versions add the Boost:: component to cmake, need to change that to boost_ prefix
string (REPLACE "Boost::" "boost_" bname "${bname}")
set (Boost_PKGCONFIG_LIBS "${Boost_PKGCONFIG_LIBS} ${bname}")
endforeach(b)

Expand Down
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Gazebo 11.x.x (202x-xx-xx)

1. Fix pkg-config boost entries for Ubuntu Focal
* [Pull request #2797](https://github.com/osrf/gazebo/pull/2797)

1. Fix corruption when a URDF file is included from a SDFormat 1.6 model #2734
* [Pull request 2734](https://github.com/osrf/gazebo/pull/2734)

Expand Down