summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorVincent Lefevre <vincent@vinc17.net>2017-04-30 12:25:08 -0700
committerVincent Lefevre <vincent@vinc17.net>2017-04-30 12:25:08 -0700
commit8bcb1cbdea4b28f17ef6cd8cc2379dcbde47db4c (patch)
tree367dc062e4e2e29b20c3cce74e91700c0ef5fdce /configure.ac
parentfe777f9348b1801d9ebc0d587f418eb523539965 (diff)
Convert all exec calls to use mutt_envlist(), remove setenv function.
The documentation implies that all children processes will be affected by the setenv command, so convert all the exec calls to use mutt_envlist(). The setenv("GPG_TTY") call is no longer needed so remove it. With that removed, there are no other setenv calls in mutt, so remove the autoconf check and replacement function.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4f41632a..00652991 100644
--- a/configure.ac
+++ b/configure.ac
@@ -374,7 +374,7 @@ AC_CHECK_TYPE(ssize_t, int)
AC_CHECK_FUNCS(fgetpos memmove setegid srand48 strerror)
-AC_REPLACE_FUNCS([setenv strcasecmp strdup strsep strtok_r wcscasecmp])
+AC_REPLACE_FUNCS([strcasecmp strdup strsep strtok_r wcscasecmp])
AC_REPLACE_FUNCS([strcasestr mkdtemp])
AC_CHECK_FUNC(getopt)