From 436783c95a59cca00a7cca1219666bb0af67cb81 Mon Sep 17 00:00:00 2001 From: Ben Walton Date: Mon, 6 Aug 2012 23:07:42 -0400 Subject: [PATCH] Enable HAVE_DEV_TTY for Solaris Now that git_terminal_prompt can cleanly interact with /dev/tty on Solaris, enable HAVE_DEV_TTY so that this code path is used for credential reading instead of relying on the crippled getpass(). Signed-off-by: Ben Walton Signed-off-by: Junio C Hamano --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 7c370ea57c..9472ff768c 100644 --- a/Makefile +++ b/Makefile @@ -909,6 +909,7 @@ ifeq ($(uname_S),SunOS) NO_MKSTEMPS = YesPlease NO_REGEX = YesPlease NO_FNMATCH_CASEFOLD = YesPlease + HAVE_DEV_TTY = YesPlease ifeq ($(uname_R),5.6) SOCKLEN_T = int NO_HSTRERROR = YesPlease -- 2.11.4.GIT