00-ssh_scp_path.patch

来自「linux集群服务器软件代码包」· PATCH 代码 · 共 44 行

PATCH
44
字号
--- heartbeat-1.2.3.debian/configure.in	2004-09-18 15:24:22.000000000 +0900+++ heartbeat-1.2.2.debian/configure.in	2004-08-29 17:13:23.000000000 +0900@@ -1173,6 +1134,40 @@ AC_DEFINE_UNQUOTED(UCDSNMPDEVEL, $UCDSNMPDEVEL,  	Name of UCD SNMP development package) +#+#	Path to SSH+#       This is guessed if ssh is installed.+#       However, there is a long standing bug with installing ssh+#       on arm in debian and this is preventing heartbeat from+#       moving into sarge. By adding this we can remove the build+#       dependancy on ssh and get an updated heartbeat into sarge... +#       I hope. Horms 26th July 2004+#+AC_ARG_WITH(+  ssh-path,+    [  --with-ssh-path=path    Path to SSH binary (e.g. /usr/bin/ssh)+                          [default=autodetect]  ],+    [ SSH=$withval ],+  )+AC_SUBST(SSH)++#+#	Path to SCP+#       This is guessed if ssh is installed.+#       However, there is a long standing bug with installing ssh+#       on arm in debian and this is preventing heartbeat from+#       moving into sarge. By adding this we can remove the build+#       dependancy on ssh and get an updated heartbeat into sarge... +#       I hope. Horms 26th July 2004+#+AC_ARG_WITH(+  scp-path,+    [  --with-scp-path=path    Path to SCP binary (e.g. /usr/bin/scp)+                          [default=autodetect]  ],+    [ SCP=$withval ],+  )+AC_SUBST(SCP)+ dnl ************************************************************************ dnl checks for library functions to replace them dnl

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?