Skip to content

Commit

Permalink
configure.ac: default to --enable-agent-forwarding
Browse files Browse the repository at this point in the history
  • Loading branch information
intelfx committed Oct 25, 2024
1 parent 0a7d917 commit cc4c44e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ AS_IF([test x"$enable_syslog" != xno],
[AC_MSG_ERROR([--enable-syslog was given but syslog.h was not found.])])])])

AC_ARG_ENABLE([agent-forwarding],
[AS_HELP_STRING([--enable-agent-forwarding], [Build support for SSH agent forwarding @<:@no@:>@])],
[AS_HELP_STRING([--disable-agent-forwarding], [Build support for SSH agent forwarding @<:@yes@:>@])],
[enable_agent_forwarding="$enableval"],
[enable_agent_forwarding="no"])
[enable_agent_forwarding="yes"])
AS_IF([test x"$enable_agent_forwarding" != xno],
[AC_DEFINE([SUPPORT_AGENT_FORWARDING], [1], [Define to build support for SSH agent forwarding.])])

Expand Down

0 comments on commit cc4c44e

Please sign in to comment.