Skip to content

Commit

Permalink
Merge branch 'v1.5-fixes' for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Armin Hornung committed Feb 27, 2013
2 parents 409ce68 + 4a117df commit a37f359
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 437 deletions.
7 changes: 6 additions & 1 deletion octomap/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
v1.5.4: 2013-02-27
==================
- Removed binvox binaries from sources for improved packaging compatibility
(ticket #18). Download from www.cs.princeton.edu/~min/binvox/ instead.

v1.5.3: 2012-12-18
=================
==================
- CMakeConfig now installs into share/octomap instead of lib/cmake/octomap for
better compatibility with ROS
- ROS package.xml removed, will be added in the release process
Expand Down
6 changes: 0 additions & 6 deletions octomap/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ set(INSTALL_TARGETS_DEFAULT_ARGS
ADD_SUBDIRECTORY( src/math )
ADD_SUBDIRECTORY( src )

# installation for external targets:
install(PROGRAMS "extern/binvox/binvox" DESTINATION bin)
install(PROGRAMS "extern/binvox/binvox64" DESTINATION bin)
install(PROGRAMS "extern/binvox/viewvox" DESTINATION bin)
install(PROGRAMS "extern/binvox/viewvox64" DESTINATION bin)

file(GLOB octomap_HDRS ${PROJECT_SOURCE_DIR}/include/octomap/*.h ${PROJECT_SOURCE_DIR}/include/octomap/*.hxx)
install(FILES ${octomap_HDRS} DESTINATION include/octomap)
file(GLOB octomap_math_HDRS ${PROJECT_SOURCE_DIR}/include/octomap/math/*.h)
Expand Down
5 changes: 5 additions & 0 deletions octomap/extern/README_BINVOX
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
binvox (and viewvox) binaries are no longer provided in the
OctoMap source. Please obtain the latest versions from:

http://www.cs.princeton.edu/~min/binvox

339 changes: 0 additions & 339 deletions octomap/extern/binvox/LICENSE

This file was deleted.

91 changes: 0 additions & 91 deletions octomap/extern/binvox/README

This file was deleted.

Binary file removed octomap/extern/binvox/binvox
Binary file not shown.
Binary file removed octomap/extern/binvox/binvox64
Binary file not shown.
Binary file removed octomap/extern/binvox/viewvox
Binary file not shown.
Binary file removed octomap/extern/binvox/viewvox64
Binary file not shown.
2 changes: 2 additions & 0 deletions octomap/include/octomap/OccupancyOcTreeBase.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ namespace octomap {
OcTreeKey key;
if (!this->coordToKeyChecked(value, key))
return NULL;

return updateNode(key, log_odds_update, lazy_eval);
}

Expand All @@ -208,6 +209,7 @@ namespace octomap {
OcTreeKey key;
if (!this->coordToKeyChecked(x, y, z, key))
return NULL;

return updateNode(key, log_odds_update, lazy_eval);
}

Expand Down

0 comments on commit a37f359

Please sign in to comment.