Skip to content

Commit

Permalink
Remove default option passed for rpath to linker on HP-UX
Browse files Browse the repository at this point in the history
The option '+b:' is passed by default for rpath if no explicit value passed
to '+b'.
  • Loading branch information
michael-o committed May 18, 2020
1 parent 41a4da6 commit 3a77bb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion native/build/tcnative.m4
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ case "$use_openssl" in
*-hp-hpux*)
# By default cc/aCC on HP-UX IA64 will produce 32 bit output
ssllibdir=lib/hpux32
TCN_OPENSSL_LIBS="-L$use_openssl/$ssllibdir -Wl,+b: -lssl -lcrypto"
TCN_OPENSSL_LIBS="-L$use_openssl/$ssllibdir -lssl -lcrypto"
;;
*linux*|*freebsd*)
TCN_OPENSSL_LIBS="-L$use_openssl/$ssllibdir -Wl,-rpath,$use_openssl/$ssllibdir -lssl -lcrypto"
Expand Down
3 changes: 3 additions & 0 deletions xdocs/miscellaneous/changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
Add support for HP-UX's _lwp_self() in our
ssl_thread_id(void). (michaelo)
</add>
<remove>
Remove default option passed for rpath to linker on HP-UX. (michaelo)
</remove>
</changelog>
</section>
<section name="Changes in 1.2.24">
Expand Down

0 comments on commit 3a77bb0

Please sign in to comment.