search for: askpass_program

Displaying 20 results from an estimated 22 matches for "askpass_program".

1999 Nov 19
0
Request for change in ssh-askpass location after pre12
...39;ve been working on a NetBSD package for openssl-1.2pre12, and I've noticed that Makefile.in installs ssh-askpass in $prefix/lib/ssh ($libdir) instead of $libexecdir/ssh. Since it is an executable, IMHO it should be in the latter spot. In the patch below, I've fixed this, as well as made ASKPASS_PROGRAM used during the install so that it's easier to maintain. Thanks, David --- Makefile.in.orig Thu Nov 18 20:02:51 1999 +++ Makefile.in Thu Nov 18 20:04:42 1999 @@ -7,7 +7,7 @@ sysconfdir=@sysconfdir@ SSH_PROGRAM=@bindir@/ssh -ASKPASS_PROGRAM=@libdir@/ssh/ssh-askpass +ASKPASS_PROGRAM=@libex...
2001 Jan 22
3
CVS source tree from 22 Jan 2001
Makefile.in is not fixed ! in old ssh.h # define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass" in new pathnames.h #define _PATH_SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass" but in Makefile.in PATHS=...-DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" ----------------------------------------------------------- about patch: - remove unused defines: USE_EXTERNAL_ASKPASS (acconfig.h) ASKPASS_PROGRAM (Makefile.in, pathnames.h) - add new option (again) --with-askpass=PATH ----------------------------------------------------------...
2000 Aug 27
1
Login Patch
..._PROG(LOGIN_PROGRAM, login) +AC_SUBST(LOGIN_PROGRAM) if test -z "$LD" ; then LD=$CC --- openssh-2.1.1p4/Makefile.in.orig Thu Aug 17 11:25:31 2000 +++ openssh-2.1.1p4/Makefile.in Thu Aug 17 11:24:06 2000 @@ -17,10 +17,11 @@ SSH_PROGRAM=@bindir@/ssh ASKPASS_LOCATION=@libexecdir@/ssh ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass +LOGIN_PROGRAM=@LOGIN_PROGRAM@ CC=@CC@ LD=@LD@ -PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" +PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PRO...
2002 Mar 12
0
OpenSSH 3.1: ssh-rand-helper
...ned with a fixed path in Makefile.in and not having a default in pathnames.h. I propose a handling analogous to the sftp-server binary. *** Makefile.in.orig Tue Feb 26 20:24:22 2002 --- Makefile.in Tue Mar 12 12:42:05 2002 *************** *** 18,23 **** --- 18,24 ---- SSH_PROGRAM=@bindir@/ssh ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass SFTP_SERVER=$(libexecdir)/sftp-server + SSH_RAND_HELPER=$(libexecdir)/ssh-rand-helper PATHS= -DSSHDIR=\"$(sysconfdir)\" \ -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \ *************** *** 24,30 **** -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_P...
2001 Oct 16
6
program-prefix does not work
...nssh-2.9.9p2/Makefile.in *** openssh-2.9.9p2.orig/Makefile.in Mon Sep 17 22:06:22 2001 --- openssh-2.9.9p2/Makefile.in Tue Oct 16 15:29:27 2001 *************** *** 12,29 **** piddir=@piddir@ srcdir=@srcdir@ top_srcdir=@top_srcdir@ DESTDIR= VPATH=@srcdir@ ! SSH_PROGRAM=@bindir@/ssh ! ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass ! SFTP_SERVER=$(libexecdir)/sftp-server PATHS= -DETCDIR=\"$(sysconfdir)\" \ -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \ -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \ -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \ ! -D_...
1999 Nov 23
0
[PATCH] Adding BSD compatible install script to 1.2pre14.
...if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \ - install -d $(libexecdir) ; \ - install -d $(libexecdir)/ssh ; \ + $(INSTALL) -d $(libexecdir) ; \ + $(INSTALL) -d $(libexecdir)/ssh ; \ if [ -z "@GNOME_ASKPASS@" ] ; then \ - install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ + $(INSTALL) -m755 ssh-askpass ${ASKPASS_PROGRAM}; \ else \ - install -m755 -c gnome-ssh-askpass ${ASKPASS_PROGRAM}; \ + $(INSTALL) -m755 gnome-ssh-askpass ${ASKPASS_PROGRAM}; \ fi ; \ fi if [ ! -f $(sysconfdir)/ssh_config -a ! -f $(sysconfdir)/sshd_config ]; then \ - install...
1999 Dec 09
1
[PATCH] Fixing a couple of small problems in Makefile.in (1.2pre17).
...-rm -f $(mandir)/man1/slogin.1 ln -s ssh.1 $(mandir)/man1/slogin.1 - $(INSTALL) -d $(libexecdir) ; - $(INSTALL) -d $(libexecdir)/ssh ; if [ ! -z "@GNOME_ASKPASS@" ] ; then \ + $(INSTALL) -d $(libexecdir) ; \ + $(INSTALL) -d $(libexecdir)/ssh ; \ $(INSTALL) -s @GNOME_ASKPASS@ ${ASKPASS_PROGRAM} ; \ fi @@ -129,7 +129,6 @@ -rm -f $(mandir)/man1/ssh-keygen.1 -rm -f $(mandir)/man8/sshd.8 -rm -f $(bindir)/slogin - -rm -f $(mandir)/man1/slogin.1 -rm -f $(mandir)/man1/slogin.1 -rm -f ${ASKPASS_PROGRAM} -rmdir $(libexecdir)/ssh ; -- Niels Kristian Bech Jensen -- nkbj at image.d...
2000 Dec 07
1
[PATCH] Separate CFLAGS and CPPFLAGS
...rieving revision 1.8 diff -u -d -b -w -r1.1.1.4 -r1.8 --- Makefile.in 2000/12/06 21:56:06 1.1.1.4 +++ Makefile.in 2000/12/06 22:11:15 1.8 @@ -20,7 +20,8 @@ CC=@CC@ LD=@LD@ PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" -CFLAGS=@CFLAGS@ $(PATHS) @DEFS@ +CFLAGS=@CFLAGS@ +CPPFLAGS=@CPPFLAGS@ $(PATHS) @DEFS@ -I. -I$(srcdir) LIBS=@LIBS@ AR=@AR@ RANLIB=@RANLIB@ Wilfredo S?nchez, wsanchez at apple.com Open Source Engineering Lead Apple Computer, Inc., Core Operating System Group 1 Infinite Loop, Cupertino, C...
2001 Feb 07
0
Makefile.in
remove last line in Makefile.in -rm -f $(DESTDIR)${ASKPASS_PROGRAM} ----------------------------------------- ${ASKPASS_PROGRAM} is external program 'make uninstall' don't needed to remove it
2001 Feb 12
3
add scp path to _PATH_STDPATH
...Makefile.in =================================================================== RCS file: /var/cvs/openssh/Makefile.in,v retrieving revision 1.150 diff -u -r1.150 Makefile.in --- Makefile.in 2001/02/09 13:40:03 1.150 +++ Makefile.in 2001/02/12 14:47:51 @@ -17,11 +17,13 @@ SSH_PROGRAM=@bindir@/ssh ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass SFTP_SERVER=$(libexecdir)/sftp-server +PATH_SCP=$(bindir) PATHS= -DETCDIR=\"$(sysconfdir)\" \ -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \ -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \ - -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\&quo...
1999 Nov 22
1
[PATCH] A couple of small fixes for 1.2pre14.
...2,7 @@ ln -sf ssh.1 $(mandir)/man1/slogin.1 if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \ - install -d $(libdir) ; \ + install -d $(libexecdir) ; \ install -d $(libexecdir)/ssh ; \ if [ -z "@GNOME_ASKPASS@" ] ; then \ install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ -- Niels Kristian Bech Jensen -- nkbj at image.dk -- http://www.image.dk/~nkbj/ ----------->> Stop software piracy --- use free software! <<-----------
2000 May 23
1
further problems Re: scp not found with solaris 8/2.1.0p2
Thanks to Richard June, John Horne and Bosko Radivojevic, who pointed out that I probably need to set the configure-time option --with-default-path, so I did this (rather than make symlink messes, which I'd prefer to avoid) : 1489 ./configure --with-default-path=/bin:/usr/bin:/opt/local/bin --prefix=/opt/local --with-random=/dev/random 1490 make 1491 make install 1492 pkill -TERM
2001 Dec 12
1
RFE: ssh-askpass program configurable
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I note that ssh-askpass-gnome was moved into the contrib/ directory of portable OpenSSH and the configure option for it (--with-gnome-askpass) was removed. I can understand not wanting a configure option for one particular askpass program, but it would be useful to have a general replacement, as in % ./configure
2009 Nov 14
1
Alternate Install Location Patch Proposal
...akefile.in openssh-5.3p1/Makefile.in --- openssh-5.3p1.orig/Makefile.in 2009-08-27 19:47:38.000000000 -0500 +++ openssh-5.3p1/Makefile.in 2009-11-14 08:02:29.000000000 -0600 @@ -19,7 +19,7 @@ srcdir=@srcdir@ top_srcdir=@top_srcdir@ -DESTDIR= +DESTDIR?= VPATH=@srcdir@ SSH_PROGRAM=@bindir@/ssh ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass -------------- next part -------------- A non-text attachment was scrubbed... Name: openssh-5.3p1-alt-install-loc.patch Type: text/x-diff Size: 373 bytes Desc: not available URL: <http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/20091114/0354f2e9...
2000 Aug 27
0
patch for TIS (skey/opie) *and* passwd auth via PAM
...ix}/lib' --mandir='$${prefix}/usr/share/man' --with-tcp-wrappers --with-xauth=/usr/bin/X11/xauth --with-rsh=/usr/bin/netkit-rsh - $(MAKE) OPT_FLAGS='-DLOGIN_PROGRAM=\"/bin/login\" -DSSHD_PAM_SERVICE=\"ssh\" -DFORWARD_AGENT_DEFAULT=0 -DFALLBACKTORSH_DEFAULT=0' ASKPASS_PROGRAM='/usr/bin/ssh-askpass' + ./configure --prefix='' --exec_prefix='$${prefix}/usr' --sysconfdir='$${prefix}/etc/ssh' --libexecdir='$${exec_prefix}/lib' --mandir='$${prefix}/usr/share/man' --with-tcp-wrappers --with-xauth=/usr/bin/X11/xauth --with-rsh=/us...
2002 Apr 01
0
[Bug 198] New: Error getting file with sftp on old F-Secure servers
...fix=/usr/local exec_prefix=${prefix} bindir=${exec_prefix}/bin sbindir=${exec_prefix}/sbin libexecdir=${exec_prefix}/libexec datadir=${prefix}/share mandir=${prefix}/man mansubdir=man sysconfdir=/usr/local/etc piddir=/usr/local/etc srcdir=. top_srcdir=. DESTDIR= SSH_PROGRAM=${exec_prefix}/bin/ssh ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass SFTP_SERVER=$(libexecdir)/sftp-server PATHS= -DSSHDIR=\"$(sysconfdir)\" \ -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \ -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \ -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \ -D_PATH_SSH_PIDDIR=...
2002 Mar 26
0
[Bug 187] New: ssh-keygen not converting from and to SECSH standard correctly
...fix=/usr/local exec_prefix=${prefix} bindir=${exec_prefix}/bin sbindir=${exec_prefix}/sbin libexecdir=${exec_prefix}/libexec datadir=${prefix}/share mandir=${prefix}/man mansubdir=man sysconfdir=/usr/local/etc piddir=/usr/local/etc srcdir=. top_srcdir=. DESTDIR= SSH_PROGRAM=${exec_prefix}/bin/ssh ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass SFTP_SERVER=$(libexecdir)/sftp-server PATHS= -DSSHDIR=\"$(sysconfdir)\" \ -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \ -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \ -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \ -D_PATH_SSH_PIDDIR=...
2000 Aug 15
0
[PATCH]: Port to Mac OS X/Darwin, misc
...1.7 --- Services/OpenSSH/openssh/Makefile.in:1.1.1.3 Wed Jul 12 20:13:08 2000 +++ Services/OpenSSH/openssh/Makefile.in Mon Aug 14 19:36:09 2000 @@ -21,7 +21,8 @@ CC=@CC@ LD=@LD@ PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" -CFLAGS=@CFLAGS@ $(PATHS) @DEFS@ +CFLAGS=@CFLAGS@ +CPPFLAGS=@CPPFLAGS@ $(PATHS) @DEFS@ -I. -I$(srcdir) LIBS=@LIBS@ AR=@AR@ RANLIB=@RANLIB@ @@ -118,11 +119,11 @@ install: manpages $(TARGETS) install-files host-key install-files: - ./mkinstalldirs $(DESTDIR)$(bindir) - ./mki...
2004 Jan 26
6
OpenSSH, OpenAFS, Heimdal Kerberos and MIT Kerberos
Rather then implementing kafs in MIT Kerberos, I would like to suggest an alternative which has advantages to all parties. The OpenSSH sshd needs to do two things: (1) sets a PAG in the kernel, (2) obtains an AFS token storing it in the kernel. It can use the Kerberos credentials either obtained via GSSAPI delegation, PAM or other kerberos login code in the sshd. The above two
1999 Nov 23
2
Fixes for Solaris
...2,7 @@ ln -sf ssh.1 $(mandir)/man1/slogin.1 if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \ - install -d $(libdir) ; \ + install -d $(libexecdir) ; \ install -d $(libexecdir)/ssh ; \ if [ -z "@GNOME_ASKPASS@" ] ; then \ install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ Index: README =================================================================== RCS file: /var/cvs/openssh/README,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- README 1999/11/22 04:24:35 1.25 +++ README 1999/11/22 23:11:29 1.26 @@ -54,6 +54,7 @@ 'jonchen...