View | Details | Raw Unified | Return to bug 1145
Collapse All | Expand All

(-)file_not_specified_in_diff (-6 / +8 lines)
Line  Link Here
0
-- openssh/configure.ac
0
++ openssh/configure.ac
Lines 1366-1371 Link Here
1366
		[
1366
		[
1367
			AC_MSG_RESULT(no)
1367
			AC_MSG_RESULT(no)
1368
			AC_DEFINE(SSHD_ACQUIRES_CTTY)
1368
			AC_DEFINE(SSHD_ACQUIRES_CTTY)
1369
		],
1370
		[
1371
			AC_MSG_WARN([cross compiling: Assuming yes])
1369
		]
1372
		]
1370
	)
1373
	)
1371
fi
1374
fi
Lines 2959-2971 Link Here
2959
	[ etc_default_login=yes ]
2964
	[ etc_default_login=yes ]
2960
)
2965
)
2961
2966
2962
if test "x$etc_default_login" != "xno"; then
2967
if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes"; then
2968
	AC_MSG_WARN([cross compiling: Disabling /etc/default/login test])
2969
elif test "x$etc_default_login" != "xno"; then
2963
	AC_CHECK_FILE("/etc/default/login",
2970
	AC_CHECK_FILE("/etc/default/login",
2964
	    [ external_path_file=/etc/default/login ])
2971
	    [ external_path_file=/etc/default/login ])
2965
	if test ! -z "$cross_compiling" && test "x$cross_compiling" = "xyes";
2972
	if test "x$external_path_file" = "x/etc/default/login"; then
2966
	then
2967
		AC_MSG_WARN([cross compiling: Disabling /etc/default/login test])
2968
	elif test "x$external_path_file" = "x/etc/default/login"; then
2969
		AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN)
2973
		AC_DEFINE(HAVE_ETC_DEFAULT_LOGIN)
2970
	fi
2974
	fi
2971
fi
2975
fi

Return to bug 1145