Displaying 6 results from an estimated 6 matches for "duse_posix_thread".
Did you mean:
duse_posix_threads
2004 May 27
1
Solaris/PAM/AFS: can't make it work
...machine but do not get a token (on
one box, I was getting someone else's token =8-O ).
Here is what I have done so far:
- I tried forcing USE_POSIX_THREADS when building as described in
http://bugzilla.mindrot.org/show_bug.cgi?id=688 . My understanding of
how to do this was to set CFLAGS=-DUSE_POSIX_THREADS when configuring
and I added -lpthreads to the LIBS in the Makefile. (Correct?)
When I tried this, I was prompted for a password but when I entered
it the server closed the connection. The debug output from the server
(from the point of the password prompt) was:
Postponed keyboard-interactiv...
2005 Feb 15
6
[Bug 967] Command only sessions hangs on target system.
http://bugzilla.mindrot.org/show_bug.cgi?id=967
------- Additional Comments From dimitrij at schlund.de 2005-02-16 10:33 -------
Hi,
could you verify this issue? Beacause tis Bug we cann't sitch to 2.6-er Kernel.
We have a lot of cmmand-only keys -:(
Dimi
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2007 Nov 13
1
compile error in hp-ux 11.23PA system with OpenSSH4.7p1
Hi all,
I am compiling the OpenSSH4.7p1 on hp-ux PA11.23 system, however, it gives the following bug:
cc +DD64 -I. -I. -I../include/openssl -I../include/tcpwrap -I../include/zlib -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1 -I/usr/local/include -I../include/gssapi -DSSHDIR=\"/opt/ssh/etc\" -D_PATH_SSH_PROGRAM=\"/opt/ssh/bin/ssh\"
2011 Jul 13
3
How to compile OpenSSH on HP-UX10
I did this as a project back in the early 2002, and I had a nice
little how-to to walk me through it. Many work places and moves, and
I've lost it. I have a friend who asked me about this recently, and I
can't seem to find anything on the web, or the how-to I used (not
surprised).
If I remember correctly, you needed an up-to-date zlib, egd (or prng),
OpenSSL, tcpwrappers, and OpenSSH.
2004 Feb 27
3
Change request For OpenSSH 3.8p1
...**
*** 273,278 ****
--- 273,285 ----
AC_DEFINE(LOGIN_NEEDS_TERM)
AC_DEFINE(PAM_TTY_KLUDGE)
AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*")
+ # Check for existence of POSIX threads.
+ AC_CHECK_HEADER(pthread.h, [
+ AC_CHECK_LIB(pthread, pthread_create, [
+ CPPFLAGS="$CPPFLAGS -DUSE_POSIX_THREADS"
+ LIBS="-lpthread $LIBS"
+ ])
+ ])
# Pushing STREAMS modules will cause sshd to acquire a controlling tty.
AC_DEFINE(SSHD_ACQUIRES_CTTY)
external_path_file=/etc/default/login
-----------------------------------------------------------------------
Antoine Verheijen...
2003 Oct 29
4
Fix for USE_POSIX_THREADS in auth-pam.c
As many of you know, OpenSSH 3.7.X, unlike previous versions, makes
PAM authentication take place in a separate process or thread
(launched from sshpam_init_ctx() in auth-pam.c). By default (if you
don't define USE_POSIX_THREADS) the code "fork"s a separate process.
Or if you define USE_POSIX_THREADS it will create a new thread (a
second one, in addition to the primary thread).
The