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 16:39:32 UTC

[Bug 61333] New: undefined symbol: apr_siphash48_auth

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

            Bug ID: 61333
           Summary: undefined symbol: apr_siphash48_auth
           Product: APR
           Version: HEAD
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: APR
          Assignee: bugs@apr.apache.org
          Reporter: james@nightfurytrainers.com
  Target Milestone: ---

after downloading and installing apache2, it complained about APR so I
downloaded and installed it (/usr/local/apr) so I tried the recompile of
apache2 and then it complained about apr-utils  so I downloaded it and
installed it.  went back to apache2 and it compiled fine and I installed it
/usr/local/apache2. everything went fine till I
/usr/local/apache2/bin/apachectl start then I get 
/usr/local/apache2/bin/httpd: symbol lookup error:
/usr/local/apache2/bin/httpd: undefined symbol: apr_siphash48_auth

where did I go wrong?  how do I get past this... Ive checked the FAQ, bug
reports etc and am at a loss... Ive looked at log files with nothing, Ive
looked through the config files and still nothing.

Please help
James

-- 
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


[Bug 61333] undefined symbol: apr_siphash48_auth

Posted by bu...@apache.org.
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