-
-
Notifications
You must be signed in to change notification settings - Fork 73
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
1 parent
10ffa72
commit fafd1ed
Showing
11 changed files
with
90 additions
and
22 deletions.
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,44 @@ | ||
diff --git a/lisp/Makefile.Linux64 b/lisp/Makefile.Linux64 | ||
index e12ed082..ce35ee40 100644 | ||
--- a/lisp/Makefile.Linux64 | ||
+++ b/lisp/Makefile.Linux64 | ||
@@ -50,7 +50,7 @@ CFLAGS= $(WFLAGS) -fPIC -D$(MACHINE) -DLinux -D_REENTRANT -DVERSION=\"$(VERSION) | ||
-DLIB6 $(ALIGN_FUNCTIONS) \ | ||
$(DEBUG) $(CPU_OPTIMIZE) $(THREAD) -D$(XVERSION) \ | ||
-DGCC $(GCC3) \ | ||
- -I/usr/include -I/usr/X11R6/include -I$(EUSDIR)/include | ||
+ -I$(PREFIX)/include -I$(PREFIX)/X11R6/include -I$(EUSDIR)/include | ||
|
||
CC=gcc | ||
|
||
@@ -68,7 +68,7 @@ CC=gcc | ||
|
||
# Linux | ||
RAWLIB=-ldl -lm -lpthread -lc | ||
-XLIB= -L/usr/X11R6/lib -lX11 | ||
+XLIB= -L$(PREFIX)/lib -lX11 | ||
|
||
# specify directories where euslisp's libraries are located. | ||
EUSRPATH=-R$(ADLIBDIR) | ||
diff --git a/lisp/Makefile.LinuxARM b/lisp/Makefile.LinuxARM | ||
index e49262b3..b9290d8c 100644 | ||
--- a/lisp/Makefile.LinuxARM | ||
+++ b/lisp/Makefile.LinuxARM | ||
@@ -72,7 +72,7 @@ CFLAGS=$(WFLAGS) -D$(MACHINE) -DLinux -DARM -D_REENTRANT -DVERSION=\"$(VERSION)\ | ||
-DLIB6 $(ALIGN_FUNCTIONS) $(ADD_CFLAGS) \ | ||
$(DEBUG) $(CPU_OPTIMIZE) $(THREAD) -D$(XVERSION) \ | ||
-DGCC $(GCC3) \ | ||
- -I/usr/include -I/usr/X11R6/include -I$(EUSDIR)/include | ||
+ -I$(PREFIX)/include -I$(PREFIX)/X11R6/include -I$(EUSDIR)/include | ||
|
||
# Use gcc for C-compiling on SunOS4. Sun's cc is ok on Solaris. | ||
# /usr/ucb/cc cannot compile because of its incapability of recognizing | ||
@@ -94,7 +94,7 @@ LD=gcc | ||
|
||
# Linux | ||
RAWLIB=-ldl -lm -lpthread -lc | ||
-XLIB= -L/usr/X11R6/lib -lX11 | ||
+XLIB= -L$(PREFIX)/lib -lX11 | ||
|
||
# specify directories where euslisp's libraries are located. | ||
EUSLIB= -Xlinker -R$(ADLIBDIR):$(EUSDIR)/lib/LinuxARM -L$(ADLIBDIR) |
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 @@ | ||
diff --git a/src/interactive_marker_utils.cpp b/src/interactive_marker_utils.cpp | ||
index cb709057..eb4a35d5 100644 | ||
--- a/src/interactive_marker_utils.cpp | ||
+++ b/src/interactive_marker_utils.cpp | ||
@@ -2,6 +2,8 @@ | ||
#include <boost/filesystem/operations.hpp> | ||
#include <iostream> | ||
#include <stdlib.h> | ||
+#include <filesystem> | ||
+ | ||
#include <ros/package.h> | ||
#include "urdf_parser/urdf_parser.h" | ||
|
||
@@ -570,8 +572,8 @@ namespace im_utils { | ||
try{ | ||
std::string search_path = std::string(gazebo_model_path, current, found - current); | ||
current = found + 1; | ||
- recursive_directory_iterator iter = recursive_directory_iterator(search_path); | ||
- recursive_directory_iterator end = recursive_directory_iterator(); | ||
+ std::filesystem::recursive_directory_iterator iter = std::filesystem::recursive_directory_iterator(search_path); | ||
+ std::filesystem::recursive_directory_iterator end = std::filesystem::recursive_directory_iterator(); | ||
for (; iter != end; ++iter) { | ||
if (is_regular_file(*iter)) { | ||
int locate = iter->path().string().find( path, 0 ); |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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