diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-09-23 12:30:24 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-09-23 12:33:58 -0400 |
commit | 5c9b4a00608b89892fc48a1a76e5d4b52a237b55 (patch) | |
tree | ce3864224baed98e3bdc6f9acec3a37a8753d25d /configure.ac | |
parent | 10e40ca1de34d0e0611d510f913ff4f181e04c10 (diff) | |
download | tor-5c9b4a00608b89892fc48a1a76e5d4b52a237b55.tar.gz tor-5c9b4a00608b89892fc48a1a76e5d4b52a237b55.zip |
Remove support for old android "logcat" API
This is apparently obsolete; syslog is modern instead. If users
have an android log configured, given them a syslog if we can.
Closes #32181.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 41c23e964c..dea3a5307f 100644 --- a/configure.ac +++ b/configure.ac @@ -328,10 +328,6 @@ AM_CONDITIONAL([USE_ANDROID], [test "x$enable_android" = "xyes"]) if test "x$enable_android" = "xyes"; then AC_DEFINE([USE_ANDROID], [1], [Compile with Android specific features enabled]) - dnl Check if the Android log library is available. - AC_CHECK_HEADERS([android/log.h]) - AC_SEARCH_LIBS(__android_log_write, [log]) - fi dnl --- |