summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-05-17 03:53:23 +0000
committerNick Mathewson <nickm@torproject.org>2005-05-17 03:53:23 +0000
commit28367080c42ad97afdd6c48631e0c7aba61f03b7 (patch)
tree6cdf1b1bd006de48be1a684f67b5277a449a7cdd
parent08ae126f9b0484b99f7569e8f2fe3138abe18029 (diff)
downloadtor-28367080c42ad97afdd6c48631e0c7aba61f03b7.tar.gz
tor-28367080c42ad97afdd6c48631e0c7aba61f03b7.zip
Brag to the user when we successfully work around an idiotic ld.so.conf.
svn:r4251
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index ee1eff64cd..708ca179e6 100644
--- a/configure.in
+++ b/configure.in
@@ -121,6 +121,12 @@ int main(void)
fi
if test $ac_cv_libevent_local = unlinked_gcc_elf; then
LDFLAGS="$LDFLAGS -Wl,-R/usr/local/lib"
+ if test -f /etc/ld.so.conf ; then
+ AC_MSG_NOTICE([
+Apparently, you don't have /usr/local/lib in your /etc/ld.so.conf.
+Tor is smart enought to deal this now, but other applications aren't.
+You might want to add it in.])
+ fi
fi
if test $ac_cv_libevent_local = unlinked ; then