Skip to content

Commit

Permalink
BUILD: fixed rpath for FreeBSD for linking opentracing-cpp (again)
Browse files Browse the repository at this point in the history
'-Wl' must be specified for each argument separately.

Also, the package version has been changed to 1.1.3.
  • Loading branch information
zaga00 committed Oct 15, 2021
1 parent 45e0b49 commit d1b715e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Package Version: 1.1.2
Package Version: 1.1.3
Library Version: 1:1:1
2 changes: 1 addition & 1 deletion m4/am-with-opentracing.m4
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ AC_DEFUN([AX_WITH_OPENTRACING], [
if test "`uname`" = "Linux"; then
OPENTRACING_LDFLAGS="-L${with_opentracing}/lib -Wl,--rpath,${with_opentracing}/lib"
elif test "`uname`" = "FreeBSD"; then
OPENTRACING_LDFLAGS="-L${with_opentracing}/lib -Wl,-rpath ${with_opentracing}/lib"
OPENTRACING_LDFLAGS="-L${with_opentracing}/lib -Wl,-rpath -Wl,${with_opentracing}/lib"
else
OPENTRACING_LDFLAGS="-L${with_opentracing}/lib -R${with_opentracing}/lib"
fi
Expand Down

0 comments on commit d1b715e

Please sign in to comment.