diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-11-15 01:25:06 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-11-15 01:25:06 +0000 |
commit | 992a738c780c1bab58df9d2ba49c37c906da8511 (patch) | |
tree | 1fbae6ced3b91cb11296ee46005a4aacf7a95417 | |
parent | e77b2d5941b8008435d7fb3df11c6b4cd6153e39 (diff) | |
download | tor-992a738c780c1bab58df9d2ba49c37c906da8511.tar.gz tor-992a738c780c1bab58df9d2ba49c37c906da8511.zip |
r9324@totoro: nickm | 2006-11-14 20:21:43 -0500
Patch from pnx to make configure.in link against libevent properly on irix64. "This time for sure--presto!".
svn:r8954
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5f217cadf2..b289a64367 100644 --- a/configure.in +++ b/configure.in @@ -260,7 +260,7 @@ AC_CACHE_CHECK([whether we need extra options to link libevent], saved_LDFLAGS="$LDFLAGS" le_runs=no linked_with=nothing - for le_extra in "" "-Wl,-R$le_libdir" "-R$le_libdir" ; do + for le_extra in "" "-Wl,-R$le_libdir" "-R$le_libdir" "-Wl,-rpath,$le_libdir" ; do LDFLAGS="$le_extra $saved_LDFLAGS" AC_TRY_RUN([void *event_init(void); int main(int c, char **v) { |