Displaying 20 results from an estimated 40 matches for "dssh_askpass_default".
2000 Jun 27
1
openssh-2.1.1p1 on Irix6.2 report
...* preferable to the prior perl-based
EGD.
Many thanks,
-jml
A few high/easy portability points:
** There seems to be a pointer problem in vsnprintf:
cc -n32 -I/usr/local/include -I/usr/local/ssl/include -DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-snprintf.c
"bsd-snprintf.c", line 149: warning(1164): argument of type "va_list *" is
incompatible with parameter of type "char *"
ret = vsprintf(p, fmt, ap);...
1999 Dec 14
0
1.2pre17 fails to compile on RedHat 4.2/i386 (libc5)
Here goes:
./configure --prefix=/usr --sysconfdir=/etc/ssh --with-tcp-wrappers
Compiles just about everything until:
gcc -O2 -m486 -fno-strength-reduce -Wall -DETCDIR=\"/etc/ssh\"
-DSSH_PROGRAM=\"/usr/bin/ssh\"
-DSSH_ASKPASS_DEFAULT=\"/usr/libexec/ssh/ssh-askpass\"
-DHAVE_CONFIG_H -c ssh.c -o ssh.o
ssh.c: In function `main':
ssh.c:751: warning: implicit declaration of function `daemon'
gcc -o ssh ssh.o sshconnect.o log-client.o readconf.o clientloop.o libssh.a
-lpam -ldl -lz -lcrypto -lssl -lcrypto...
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
...le.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_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" -DLOGIN_PROGRAM=\"$(LOGIN_PROGRAM)\"
CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
LIBS=@LIBS@
AR=@AR@
2000 Nov 28
0
No subject
...like this
make: rv: Command not found
make: *** [libopenbsd-compat.a] Error 127
I am running Solaris 2.6 with perl 5.6 and openssl 0.9
gcc -g -O2 -Wall -I. -I. -I/usr/local/include -I/usr/local/ssl/include
-DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\"
-DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh-askpass\" -DHAVE_CONFIG_H
-c -o fake-getnameinfo.o fake-getnameinfo.c
gcc -g -O2 -Wall -I. -I. -I/usr/local/include -I/usr/local/ssl/include
-DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\"
-DSSH_ASKPASS_DEFAULT=\"/usr/loca...
2000 Dec 07
1
[PATCH] Separate CFLAGS and CPPFLAGS
...etrieving revision 1.1.1.4
retrieving 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 In...
2000 Dec 30
1
MAXHOSTNAMELEN
...on.
Suggested by Christian Kurz <shorty at debain.org>
This change causes compiler warnings on UnixWare 7, Solaris 7, others?
...
gcc -g -O2 -Wall -I/usr/local/include -I/usr/local/ssl/include -I. -Isrc -DETCDI
R=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\" -DSSH_ASKPASS_DEFAULT=
\"/usr/local/libexec/ssh-askpass\" -DHAVE_CONFIG_H -c src/bsd-arc4random.c
In file included from src/includes.h:59,
from src/bsd-arc4random.c:25:
/usr/include/netdb.h:302: warning: `MAXHOSTNAMELEN' redefined
src/defines.h:82: warning: this is the location of the prev...
2000 Jan 17
1
pre27 compilation fails on Sol7 box
Something strange happens when I compile the pre27 SSH:
ocal/ssh//include -DETCDIR=\"/usr/local/ssh//etc\" \
-DSSH_PROGRAM=\"/usr/local/ssh//bin/ssh\" \
-DSSH_ASKPASS_DEFAULT=\"/usr/local/ssh//libexec/ssh/ssh-askpass\" \
-DHAVE_CONFIG_H -c atomicio.c
In file included from includes.h:106,
from atomicio.c:26:
fake-socket.h:30: parse error before u_int8_t'
fake-socket.h:30: warning: no semicolon at end of
struct or union
fake-socket.h...
2000 Dec 27
1
problem report about installation of OpenSSH
...the make does not work, with the
following message:
_______________________________________________________________________
/usr/local/src/openssh-2.3.0p1>make
gcc -g -O2 -Wall -I. -I. -I/usr/local/ssl/include
-DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh-askpass\" -DHAVE_CONFIG_H
-c bsd-base64.c -o bsd-base64.o
gcc: Internal compiler error: program cc1 got fatal signal 6
make: *** [bsd-base64.o] Error 1
______________________________________________________________________
I do not know what to try next. I have l...
2000 Feb 21
1
OpenSSH doesn't compile under Solaris 2.3 Sparc
...ev/random
This runs and doesn't look like any real problems.
--hostname~/open/openssh-1.2.2 -->make
This runs for awhile and looks like it is working till ...
gcc -g -O2 -Wall -I/usr/local/ssl/include -DETCDIR=\"/usr/local/etc\" -DSSH_
PROG
RAM=\"/usr/local/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh/ss
h-as
kpass\" -DHAVE_CONFIG_H -c bsd-snprintf.c -o bsd-snprintf.o
bsd-snprintf.c: In function `getpagesize':
bsd-snprintf.c:70: `NBPC' undeclared (first use this function)
bsd-snprintf.c:70: (Each undeclared identifier is reported only once
bsd-snprint...
2000 Jan 07
2
problems with compiling on SPARC solaris 2.7
ssh won't compile on this platform
log:
gcc -g -O2 -Wall -I/usr/local/ssl/include -DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\"
-DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c atomicio.c -o atomicio.o
In file included from config.h:294,
from bsd-misc.h:39,
from includes.h:91,
from atomicio.c:26:
defines.h:74: redefinition of `u_int16_t'
defines.h:7...
1999 Dec 08
0
apparent fix for Solaris 7 compilation problems
...h-egd-pool=/dev/entropy; make;"
And here's where the compilation process failed...
---------------------------------------------------------------------
gcc -g -O2 -Wall -I/usr/local/ssl/include -DETCDIR=\"/usr/local/etc\"
-DSSH_PROGRAM=\"/usr/local/bin/ssh\"
-DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh/ssh-askpass\"
-DHAVE_CONFIG_H -c pty.c -o pty.o
pty.c: In function `pty_allocate':
pty.c:115: `I_PUSH' undeclared (first use in this function)
pty.c:115: (Each undeclared identifier is reported only once
pty.c:115: for each function it appears...
1999 Dec 09
1
openssh-1.2pre16 patch to pty.c for Solaris 2.6
...etc/ssh \
--with-tcp-wrapers \
--with-egd-pool=/var/random/entropy
Problem:
# using $Id: pty.c,v 1.9 1999/12/06 12:10:12 deraadt Exp $
gcc -g -O2 -Wall -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" \
-DSSH_PROGRAM=\"/usr/local/bin/ssh\" \
-DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh/ssh-askpass\" \
-DHAVE_CONFIG_H -c pty.c -o pty.o
pty.c: In function `pty_allocate':
pty.c:115: `I_PUSH' undeclared (first use in this function)
pty.c:115: (Each undeclared identifier is reported only once
pty.c:115: for each function it appears...
2000 Jan 16
1
Report on openssh-1.2.1pre26.tar.gz
....
First I needed to modify the file "fake-getaddrinfo.h" as attached
diff. Then I tried again, and gave up with the error:
gcc -g -O2 -Wall -I/usr/local/ssl/include \
-DETCDIR=\"/usr/local/openssh/etc\" \
-DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" \
-DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" \
-DHAVE_CONFIG_H -c pty.c -o pty.o
pty.c: In function `pty_allocate':
pty.c:100: warning: implicit declaration of function `grantpt'
pty.c:104: warning: implicit declaration of function `unlockpt'
pty.c:108: warning...
2000 Mar 22
0
solaris build error for version 1.2.2p1
...fixes this problem. When I run 'make' it
dies with the following error:
gcc -g -O2 -I/usr/include -I/usr/local/openssl/include
-I/usr/lib/openssl/include -I/usr/local/ssl/include -I/usr/local/ssl/include
-DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\"
-DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H
-c log.c
log.c: In function `fatal':
log.c:17: `__builtin_va_alist' undeclared (first use in this function)
log.c:17: (Each undeclared identifier is reported only once
log.c:17: for each function it appears in.)
log.c: In fun...
2000 Apr 24
2
OpenSSH 1.2.3, HPUX 10.20 [TCB]
...-with-lastlog=/var/adm/wtmp --with-egd-pool=/dev/entropy
--with-tcp-wrappers --with-pid-dir=/var/run --sysconfdir=/etc/ssh
and get after a make:
gcc -O2 -Wall -D_HPUX_SOURCE -I/usr/local/include -I/opt/include
-DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/opt/bin/ssh\"
-DSSH_ASKPASS_DEFAULT=\"/opt/libexec/ssh/ssh-askpass\"
-DHAVE_CONFIG_H -c login.c
login.c: In function `get_last_login_time':
login.c:57: storage size of `ll' isn't known
login.c:57: warning: unused variable `ll'
login.c:131: warning: control reaches end of non-void function
login.c: In funct...
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
2000 Jun 09
2
openssh-2.1.1p1 RH62 compile failure
Hello all,
Compiling 2.1.1p1 on my RedHat Linux 6.2 w/ 2.2.16 kernel seems to cause
errors from the start..
----
gcc -O2 -m486 -fno-strength-reduce -Wall -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c -o bsd-base64.o bsd-base64.c
In file included from defines.h:261,
from config.h:455,
from bsd-base64.c:45:
/usr/include/utmp.h:109: redefinition of `struct lastlog'
/usr/include/utmp.h:119: redefinit...
2001 Jan 04
0
'make' fails on SCO OpenServer 5.0.5
...<-- works with no errors. Output attached here:
(See attached file: output.txt)
make displays:
root:/tmp/OpenSSH/openssh-2.3.0p1 # make
cc -g -I. -I. -I/usr/local/include -I/usr/local/ssl/include -DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\"
-DSSH_ASKPASS_DEFAULT
=\"/usr/local/libexec/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-arc4random.c
"./defines.h", line 174: #error: "64 bit int type not found."
*** Error code 1 (bu21)
I'm doing all this per the instructions in Sysadmin Magazine October 2000 in the article "Installin...
2001 Feb 05
0
Problem compiling openssh on Solaris 2.6 with AFS-krb4
...usr/local/include -L/usr/local/lib -I/software/@sys/usr/local/include
-L/software/@sys/usr/local/lib -Wall -I. -I. -I/usr/local/include
-I/software/@sys/usr/local/include -I/usr/athena/include
-I/usr/afsws/include
-DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh-askpass\" -DHAVE_CONFIG_H
-c sshconnect1.c -o sshconnect1.o
In file included from /usr/athena/include/krb.h:17,
from ssh.h:523,
from sshconnect1.c:25:
/usr/athena/include/ktypes.h:14: redefinition of `u_int8_t'
defines.h:142:...