Skip to content
  • David Goulet's avatar
    configure: Revert back the static libevent path · 15b0d30a
    David Goulet authored
    From c618c4f2, we changed the static
    libevent.a path to be able to use the git repository or tarball directly but
    that broke the "make install" setup that Tor Browser is using with Android.
    
    In other words, the git repository and tarball put the "libevent.a" in
    ".libs/" where "make install" puts it in "lib/".
    
    Using the --with-libevent-dir=..., which is mandatory for static libevent,
    autoconf will take the path and use it for the includes (-I) and library (-L)
    for which if it finds a "include/" and a "lib/" in the root, it will use
    those.
    
    However, with the git repo or tarball, the "lib/" doesn't exists thus autoconf
    sets the library search path to be at the root and thus fails to find the
    libevent.a in ".libs/".
    
    This is a whole lot more work to make both cases work in our configure.ac thus
    I'm reverting the change here to the Tor Browser case works again and the work
    around for others is to either symlink the libevent.a at the root or use a
    temporary make install directory.
    
    One long term fix here would likely be to ask libevent to symblink the .a into
    the root along the .la files and likely do the same for .so. Or, use the
    "lib/" structure to contain the .a + .so files. Would be better than doing
    ninji-tsu in our configure.ac
    
    Fixes #40225
    
    
    
    Signed-off-by: David Goulet's avatarDavid Goulet <dgoulet@torproject.org>
    15b0d30a