You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@apr.apache.org by bu...@apache.org on 2017/07/24 21:57:15 UTC

[Bug 61333] undefined symbol: apr_siphash48_auth

https://bz.apache.org/bugzilla/show_bug.cgi?id=61333

Yann Ylavic <yl...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO

--- Comment #1 from Yann Ylavic <yl...@gmail.com> ---
Looks like your httpd is still linked against an "old" APR (1.5.x) at runtime.

What does:
  $ ldd /usr/local/apache2/bin/httpd
shows?

You may need to start httpd with "LD_LIBRARY_PATH=/path/to/new/apr/lib", such
that the new libs take precedence over the system ones at startup, i.e.:
  $ LD_LIBRARY_PATH=/path/to/new/apr/lib ldd /usr/local/apache2/bin/httpd
should be better.

Or maybe also, build httpd with something like:
  ./configure "LDFLAGS=-Wl,-rpath,/path/to/new/apr/lib" ...
so that it's fixed at compile time.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org