]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Link to libevent_openssl statically when requested
authorSebastian Hahn <sebastian@torproject.org>
Fri, 6 May 2011 13:34:00 +0000 (15:34 +0200)
committerSebastian Hahn <sebastian@torproject.org>
Fri, 6 May 2011 13:38:32 +0000 (15:38 +0200)
When configure tor with --enable-bufferevents and
--enable-static-libevent, libevent_openssl would still be linked
dynamically. Fix this and refactor src/or/Makefile.am along the way.

changes/bug3118 [new file with mode: 0644]
configure.in
src/or/Makefile.am
src/test/Makefile.am

diff --git a/changes/bug3118 b/changes/bug3118
new file mode 100644 (file)
index 0000000..c702981
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes:
+    - Correctly link libevent_openssl when --enable-static-libevent
+      is passed to configure. Fixes bug 3118; bugfix on 0.2.3.1-alpha.
+
index 58d32a18151cb1c1fc6a3576e8b66133d3b1ff13..26c933b156a80672f9da79055153ed15bd05421c 100644 (file)
@@ -410,7 +410,6 @@ if test "$enable_static_libevent" = "yes"; then
 else
      TOR_LIBEVENT_LIBS="-levent"
 fi
-AC_SUBST(TOR_LIBEVENT_LIBS)
 
 dnl This isn't the best test for Libevent 2.0.3-alpha.  Once it's released,
 dnl we can do much better.
@@ -458,8 +457,14 @@ CPPFLAGS="$save_CPPFLAGS"
 
 AM_CONDITIONAL(USE_BUFFEREVENTS, test "$enable_bufferevents" = "yes")
 if test "$enable_bufferevents" = "yes"; then
-   AC_DEFINE(USE_BUFFEREVENTS, 1, [Defined if we're going to use Libevent's buffered IO API])
+  AC_DEFINE(USE_BUFFEREVENTS, 1, [Defined if we're going to use Libevent's buffered IO API])
+  if test "$enable_static_libevent" = "yes"; then
+    TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent_openssl.a $TOR_LIBEVENT_LIBS"
+  else
+    TOR_LIBEVENT_LIBS="-levent_openssl $TOR_LIBEVENT_LIBS"
+  fi
 fi
+AC_SUBST(TOR_LIBEVENT_LIBS)
 
 dnl ------------------------------------------------------
 dnl Where do you live, openssl?  And how do we call you?
index f0d5a0f5f92ce22f7f66a6d4672029b71dc27500..a12d56b73d6a51dedbef8b9097cfd87f21995a05 100644 (file)
@@ -69,17 +69,12 @@ AM_CPPFLAGS = -DSHARE_DATADIR="\"$(datadir)\"" \
 # This seems to matter nowhere but on windows, but I assure you that it
 # matters a lot there, and is quite hard to debug if you forget to do it.
 
-if USE_BUFFEREVENTS
-levent_openssl_lib = -levent_openssl
-else
-levent_openssl_lib =
-endif
 
 tor_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ @TOR_LDFLAGS_libevent@
 tor_LDADD = ./libtor.a ../common/libor.a ../common/libor-crypto.a \
        ../common/libor-event.a \
        @TOR_ZLIB_LIBS@ -lm @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \
-       @TOR_LIB_WS32@ @TOR_LIB_GDI@ $(levent_openssl_lib)
+       @TOR_LIB_WS32@ @TOR_LIB_GDI@
 
 noinst_HEADERS = \
        buffers.h                               \
index 174c1af6ef3bb930bdfbab17734c7e02d7155c78..a4f93d1c9eb2b09c12f72318748230d4746f67ca 100644 (file)
@@ -22,18 +22,12 @@ test_SOURCES = \
        test_util.c \
        tinytest.c
 
-if USE_BUFFEREVENTS
-levent_openssl_lib = -levent_openssl
-else
-levent_openssl_lib =
-endif
-
 test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \
         @TOR_LDFLAGS_libevent@
 test_LDADD = ../or/libtor.a ../common/libor.a ../common/libor-crypto.a \
        ../common/libor-event.a \
        @TOR_ZLIB_LIBS@ -lm @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \
-       @TOR_LIB_WS32@ @TOR_LIB_GDI@ $(levent_openssl_lib)
+       @TOR_LIB_WS32@ @TOR_LIB_GDI@
 
 noinst_HEADERS = \
        tinytest.h \