pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/git-base



Module Name:    pkgsrc
Committed By:   dholland
Date:           Sat Jul 10 19:06:01 UTC 2021

Modified Files:
        pkgsrc/devel/git-base: Makefile

Log Message:
PR 55225 from Benjamin Lorenz: git push not displaying username

Seems that the input code depends on a HAVE_DEV_TTY setting that
autoconf doesn't actually check. I guess Linux packagers set this
explicitly; we shall too. Otherwise it falls back to libc getpass()
for all input, which disables echo unconditionally.

PKGREVISION -> 1


To generate a diff of this commit:
cvs rdiff -u -r1.89 -r1.90 pkgsrc/devel/git-base/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/git-base/Makefile
diff -u pkgsrc/devel/git-base/Makefile:1.89 pkgsrc/devel/git-base/Makefile:1.90
--- pkgsrc/devel/git-base/Makefile:1.89 Sun Jun 13 18:36:31 2021
+++ pkgsrc/devel/git-base/Makefile      Sat Jul 10 19:06:01 2021
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.89 2021/06/13 18:36:31 adam Exp $
+# $NetBSD: Makefile,v 1.90 2021/07/10 19:06:01 dholland Exp $
 
 .include "../../devel/git/Makefile.common"
 
 PKGNAME=       git-base-${GIT_VERSION}
+PKGREVISION=   1
 COMMENT=       GIT Tree History Storage Tool (base package)
 
 CONFLICTS+=    scmgit-base-[0-9]*
@@ -20,6 +21,7 @@ USE_TOOLS+=           perl:run sh:run msgfmt bash
 REPLACE_PERL+=         *.perl */*.perl */*/*.perl
 REPLACE_PERL+=         contrib/hooks/update-paranoid
 
+CFLAGS+=               -DHAVE_DEV_TTY
 CFLAGS.NetBSD+=                -D_NETBSD_SOURCE
 
 CONFIGURE_ARGS+=       --with-curl=${BUILDLINK_PREFIX.curl}



Home | Main Index | Thread Index | Old Index