Displaying 7 results from an estimated 7 matches for "sshlibs".
Did you mean:
  shlibs
  
2006 Sep 23
3
[Bug 1234] configure adds opensc libs to LDFLAGS when it should use LIBS
...GS="$CPPFLAGS $LIBOPENSC_CFLAGS"
                        LDFLAGS="$LDFLAGS $LIBOPENSC_LIBS"
since we're grabbing libs, we actually want to be sticking that into
LIBS
otherwise, when the binaries get linked, they're of the form:
$(CC) <objects> -o ssh $LDFLAGS <sshlibs> $LIBS
so -lopensc goes into LDFLAGS instead of LIBS and if we use something
like -static or --as-needed in LDFLAGS, the build aborts because the
<sshlibs> use symbols from -lopensc but -lopensc is discarded before
sshlibs get processed
------- You are receiving this mail because: ---...
2002 Mar 10
1
libssh
All~
I recently started coding an SFTP client in Qt, since i noticed their seemed
to be a lack of one with a gui for really any platform that didn't cost
money.  I wrote most of the FTP portion, and then I decided to begin working
on the SFTP part.  I couldn't really find documentation for an sshlib to use
for developing this portion of my program.  Sorry if i'm sending this email
to
2002 Mar 22
0
[Bug 179] New: sshd sends channel data after sending EOF
http://bugzilla.mindrot.org/show_bug.cgi?id=179
           Summary: sshd sends channel data after sending EOF
           Product: Portable OpenSSH
           Version: 3.1p1
          Platform: ix86
               URL: http://www.denisbider.com
        OS/Version: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: sshd
        AssignedTo:
2016 Jan 19
2
OpenSSH portability & buildsystem fixes
...dir@
 top_srcdir=@top_srcdir@
 
-DESTDIR=
 VPATH=@srcdir@
 SSH_PROGRAM=@bindir@/ssh
 ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
@@ -163,41 +162,41 @@ libssh.a: $(LIBSSH_OBJS)
 	$(RANLIB) $@
 
 ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
-	$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS)
+	$(CC) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS)
 
 sshd$(EXEEXT): libssh.a	$(LIBCOMPAT) $(SSHDOBJS)
-	$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS)
+	$(CC) -o $@ $(SSHDOBJS) $(LDFLAGS)...
2004 Apr 08
1
SSH library in C?
Hello,
	Is there a C API for ssh client?  If yes, where can I get documentation on it?  If no, I would like to request it.
Thank you.
 
Jai
2020 Mar 24
4
ZSTD compression support for OpenSSH
I hacked zstd support into OpenSSH a while ago and just started to clean
it up in the recent days. The cleanup includes configuration support
among other things that I did not have.
During testing I noticed the following differences compared to zlib:
- highly interactive shell output (as in refreshed at a _very_ high
  rate) may result in higher bandwidth compared to zlib. Since zstd is
  quicker
2020 Jul 21
11
[RFC PATCH 0/4] PAM module for ssh-agent user authentication
Hi,
The main (and probably the only) use case of this PAM module is to let
sudo authenticate users via their ssh-agent, therefore without having
to type any password and without being tempted to use the NOPASSWD sudo
option for such convenience.
The principle is originally implemented by an existing module [0][1]
and many pages that explain how to use it for such purpose can be
found online.