summaryrefslogtreecommitdiffstats
path: root/secure/lib/libssh
Commit message (Collapse)AuthorAgeFilesLines
* Update for OpenSSH 4.4p1.des2006-09-301-2/+2
| | | | MFC after: 1 week
* Add a manual dependency on ssh_namespace.h.des2006-05-131-0/+2
| | | | Discussed with: ru
* Introduce a namespace munging hack inspired by NetBSD to avoid pollutingdes2006-05-131-1/+1
| | | | | | | | the namespace of applications which inadvertantly link in libssh (usually through pam_ssh) Suggested by: lukem@netbsd.org MFC after: 6 weeks
* Add port-tun.c.des2006-03-221-1/+1
|
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-1/+3
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Add a new extensible GSS-API layer which can support GSS-API plugins,dfr2005-12-291-1/+1
| | | | | | | | | similar the the Solaris implementation. Repackage the krb5 GSS mechanism as a plugin library for the new implementation. This also includes a comprehensive set of manpages for the GSS-API functions with text mostly taken from the RFC. Reviewed by: Love Hörnquist Åstrand <lha@it.su.se>, ru (build system), des (openssh parts)
* Update for OpenSSH 4.2p1.des2005-09-031-3/+4
|
* Bump the shared library version number of all libraries that have notkensmith2005-07-221-1/+1
| | | | | | | been bumped since RELENG_5. Reviewed by: ru Approved by: re (not needed for commit check but in principle...)
* Revert the commits that made libssh an INTERNALLIB; they caused too muchdes2005-06-071-2/+6
| | | | | | trouble, especially on amd64. Requested by: ru
* Make libssh an INTERNALLIB like it is in {Net,Open}BSD.des2005-06-061-6/+2
|
* Update for OpenSSH 4.1p1.des2005-06-051-1/+6
|
* NODOCCOMPRESS -> NO_DOCCOMPRESSru2004-12-211-1/+1
| | | | | | | | NOINFO -> NO_INFO NOINFOCOMPRESS -> NO_INFOCOMPRESS NOLINT -> NO_LINT NOPIC -> NO_PIC NOPROFILE -> NO_PROFILE
* Update for OpenSSH 3.9p1.des2004-10-281-4/+4
|
* For variables that are only checked with defined(), don't provideru2004-10-241-1/+1
| | | | any fake value.
* Update for 3.8p1, including workaround for a bug in gss-genr.c.des2004-02-261-8/+9
|
* Cosmetics: rearrange the dependency list to match that of ssh and sshd.ru2004-01-081-2/+5
| | | | Reviewed by: des
* Use += instead of = with DPADD / LDADD.des2004-01-081-2/+2
|
* Enable GSSAPI support. [1]des2004-01-081-1/+3
| | | | | | Also remove some duplicates from ssh's SRCS. Submitted by: [1] Björn Grönvall <bg@sics.se>
* Previous commit erroneously listed some sources with .o suffixes.des2004-01-071-1/+1
|
* Update Makefiles for OpenSSH 3.7.1p2.des2004-01-071-8/+9
|
* Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extramarkm2003-05-051-1/+1
| | | | | cleanups were necessary in release/Makefile, and the tinderbox code was syntax checked, not run checked.
* Update for 3.6.1p1; also remove Kerberos IV shims.des2003-04-231-5/+3
|
* Style sync with rest of FreeBSD.obrien2002-11-061-8/+6
|
* Update for OpenSSH 3.5p1.des2002-10-291-1/+9
|
* Don't lint contrib'ed sources, even if the builder has asked for linting.markm2002-09-251-0/+2
| | | | Its Just Too Noisy.
* No guts, no glory. Switch to OpenSSH-portable.des2002-06-251-3/+7
| | | | Sponsored by: DARPA, NAI Labs
* Update Makefiles for OpenSSH 3.3.des2002-06-231-3/+4
|
* The library itself does not depend on Kerberos bits.ru2002-04-231-10/+0
| | | | Otherwise, we would have broken krb4 and krb5 dists.
* Adjust for OpenSSH 3.1.des2002-03-181-2/+2
| | | | Sponsored by: DARPA, NAI Labs
* Now that cross-tools ld(1) has been fixed to look for dynamicru2002-02-081-0/+3
| | | | | | | | | | dependencies in the correct place, record the fact that -lssh depends on -lcrypto and -lz. Removed false dependencies on -lz (except ssh(1) and sshd(8)). Removed false dependencies on -lcrypto and -lutil for scp(1). Reviewed by: markm
* Add pam_ssh support to the static PAM library, libpam.a:ru2002-01-231-2/+0
| | | | | | | | | | | - Spam /usr/lib some more by making libssh a standard library. - Tweak ${LIBPAM} and ${MINUSLPAM}. - Garbage collect unused libssh_pic.a. - Add fake -lz dependency to secure/ makefiles needed for dynamic linkage with -lssh. Reviewed by: des, markm Approved by: markm
* Install libssh and libssh_pic. These are needed when buildingmarkm2001-10-301-4/+1
| | | | | | | statically, and when building things (like login(8)) standalone. libssh_pic is needed for libpam and modules. Requested by: peter
* Follow the OpenSSH 2.9 upgrade with the infrastructure. Two newgreen2001-05-041-7/+4
| | | | programs are now included: sftp(1) and ssh-keyscan(1).
* Add the new version.c to libssh.green2001-05-031-1/+1
|
* secure/ build fixes:ru2001-03-261-10/+6
| | | | | | | | | | | | | | | | | | | | - TELNETOBJDIR is gone. `buildworld' already installs libtelnet.a in ${WORLDTMP}/usr/lib, and we have LIBRARY_PATH pointing there. - SSHDIR (formerly SSHSRC) is now shared between all SSH modules. New LIBSSH is introduced for libssh.a (an internal static lib). Previously, build without prior `obj' was broken; SSH modules always looked for libssh.a in ${.OBJDIR}. Also, the dependancies on the libssh.a were missing. - libtelnet/ did not install the crypto version of telnet.h into /usr/include/arpa. - Removed BINOWN, BINMODE, BINDIR and SRCS with default values. Reviewed by: markm - MAN[1-9] -> MAN.
* Update for OpenSSH 2.3.0.green2000-12-051-2/+3
|
* Update for OpenSSH 2.2.0kris2000-09-101-3/+3
|
* Add a new file to SRCSkris2000-06-031-1/+1
|
* Update for OpenSSH 2.1kris2000-05-151-1/+6
|
* Remove port components not needed in 4.n+markm2000-02-241-2/+1
| | | | Submitted by: Half the freaking planet....
* Add the OpenSSH userland-building Makefiles.markm2000-02-241-0/+36
OpenPOWER on IntegriCloud