History log of /freebsd-12.1/secure/lib/libssh/Makefile (Results 1 – 25 of 63)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0
# 4b6d416b 03-Oct-2018 Ed Maste <[email protected]>

openssh: connect libressl-api-compat.c and regen config.h

Differential Revision: https://reviews.freebsd.org/D17390


Revision tags: release/11.2.0, release/10.4.0, release/11.1.0
# ad5b34a2 09-May-2017 Bryan Drewery <[email protected]>

Fix invalid .o SRCS from r314527.

MFC after: 1 week
Sponsored by: Dell EMC Isilon


# b71fb1a4 04-Mar-2017 Enji Cooper <[email protected]>

crypto: normalize paths using SRCTOP-relative paths or :H when possible

This simplifies make logic/output

MFC after: 1 month
Sponsored by: Dell EMC Isilon


# 94ef145e 02-Jan-2017 Enji Cooper <[email protected]>

Only bake krb5_config.h support in to ssh(3), etc if both MK_GSSAPI and
MK_KERBEROS_SUPPORT != no

This fixes the odd case where someone specified MK_GSSAPI=no and
MK_KERBEROS_SUPPORT=yes (which admi

Only bake krb5_config.h support in to ssh(3), etc if both MK_GSSAPI and
MK_KERBEROS_SUPPORT != no

This fixes the odd case where someone specified MK_GSSAPI=no and
MK_KERBEROS_SUPPORT=yes (which admittedly, probably doesn't make sense,
but the build system doesn't prevent this case today, and it didn't when
I filed the bug back in 2011 either).

MFC after: 2 weeks
PR: 159745

show more ...


Revision tags: release/11.0.1, release/11.0.0, release/10.3.0
# ba681bc9 20-Jan-2016 John Baldwin <[email protected]>

List source files (foo.c) instead of object files in SRCS.

Reviewed by: bdrewery


# e42070a7 07-Dec-2015 Bryan Drewery <[email protected]>

Replace unneeded manual dependency on header by adding it to SRCS.

bsd.lib.mk and bsd.prog.mk already depend all objs on headers in SRCS if
there is not yet a depend file. The headers in SRCS are n

Replace unneeded manual dependency on header by adding it to SRCS.

bsd.lib.mk and bsd.prog.mk already depend all objs on headers in SRCS if
there is not yet a depend file. The headers in SRCS are never built or
installed. After 'make depend' the header was already added as a proper
dependency on the objects where needed.

MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division

show more ...


# 1765946b 23-Nov-2015 Dag-Erling Smørgrav <[email protected]>

Retire the NONE cipher option.


Revision tags: release/10.2.0
# 0bd7d22e 05-Mar-2015 Baptiste Daroussin <[email protected]>

Move ssh into a dedicated package
Flag config files as "to be merged on upgrade"


# ff75e007 25-Nov-2014 Baptiste Daroussin <[email protected]>

Reduce overlinking
The framework now ensure by itself that pthread is added to the link chain
as the last component if linked to kerberos hence avoid with out any explicit
addition prevent issue like

Reduce overlinking
The framework now ensure by itself that pthread is added to the link chain
as the last component if linked to kerberos hence avoid with out any explicit
addition prevent issue like CVE-2014-8475

show more ...


# ee5a34ec 25-Nov-2014 Baptiste Daroussin <[email protected]>

Convert to LIBADD
Reduce overlinking


Revision tags: release/10.1.0
# d029c3aa 06-Aug-2014 Baptiste Daroussin <[email protected]>

Rework privatelib/internallib

Make sure everything linking to a privatelib and/or an internallib does it directly
from the OBJDIR rather than DESTDIR.
Add src.libnames.mk so bsd.libnames.mk is not p

Rework privatelib/internallib

Make sure everything linking to a privatelib and/or an internallib does it directly
from the OBJDIR rather than DESTDIR.
Add src.libnames.mk so bsd.libnames.mk is not polluted by libraries not existsing
in final installation
Introduce the LD* variable which is what ld(1) is expecting (via LDADD) to link to
internal/privatelib
Directly link to the .so in case of private library to avoid having to complexify
LDFLAGS.

Phabric: https://phabric.freebsd.org/D553
Reviewed by: imp, emaste

show more ...


Revision tags: release/9.3.0
# c6063d0d 06-May-2014 Warner Losh <[email protected]>

Use src.opts.mk in preference to bsd.own.mk except where we need stuff
from the latter.


Revision tags: release/10.0.0, release/9.2.0
# 0085282b 23-Sep-2013 Dag-Erling Smørgrav <[email protected]>

Unbreak the WITHOUT_KERBEROS build and try to reduce the odds of a
repeat performance by introducing a script that runs configure with and
without Kerberos, diffs the result and generates krb5_config

Unbreak the WITHOUT_KERBEROS build and try to reduce the odds of a
repeat performance by introducing a script that runs configure with and
without Kerberos, diffs the result and generates krb5_config.h, which
contains the preprocessor macros that need to be defined in the Kerberos
case and undefined otherwise.

Approved by: re (marius)

show more ...


# 9cfa8b3f 10-Sep-2013 Dag-Erling Smørgrav <[email protected]>

Clean up the OpenSSH build. It is now possible to build most components
as static binaries, if desired. The one exception is sshd, which runs
into trouble due to libpam.a's includion of pam_ssh.

M

Clean up the OpenSSH build. It is now possible to build most components
as static binaries, if desired. The one exception is sshd, which runs
into trouble due to libpam.a's includion of pam_ssh.

Make OpenSSH use LDNS if available. This allows it to verify signed
SSHFP records.

Approved by: re (blanket)

show more ...


# 0b2766bd 08-Sep-2013 Dag-Erling Smørgrav <[email protected]>

Make libldns and libssh private.

Approved by: re (blanket)


Revision tags: release/8.4.0
# e6a64a84 17-Jan-2013 Bjoern A. Zeeb <[email protected]>

Add a src.conf(5) option to allow users to compile in the "NONE cipher",
which, only after authentication, disables crypto, and only for sessions
without a terminal.

Submitted by: Jeremy Chadwick (f

Add a src.conf(5) option to allow users to compile in the "NONE cipher",
which, only after authentication, disables crypto, and only for sessions
without a terminal.

Submitted by: Jeremy Chadwick (freebsd jdc.parodius.com)
PR: bin/163095
MFC after: 10 days

show more ...


Revision tags: release/9.1.0, release/8.3.0, release/7.4.0, release/8.2.0, release/8.1.0
# 124981e1 21-Apr-2010 Dag-Erling Smørgrav <[email protected]>

MFH OpenSSH 5.4p1


Revision tags: release/7.3.0, release/8.0.0
# 0c56c384 10-Nov-2009 Dag-Erling Smørgrav <[email protected]>

Fix globbing

Noticed by: delphij, David Cornejo <[email protected]>
Forgotten by: des


# 3ca3047a 19-Jul-2009 Ken Smith <[email protected]>

Bump the version of all non-symbol-versioned shared libraries in
preparation for 8.0-RELEASE. Add the previous version of those
libraries to ObsoleteFiles.inc and bump __FreeBSD_Version.

Reviewed b

Bump the version of all non-symbol-versioned shared libraries in
preparation for 8.0-RELEASE. Add the previous version of those
libraries to ObsoleteFiles.inc and bump __FreeBSD_Version.

Reviewed by: kib
Approved by: re (rwatson)

show more ...


# 5d54b264 16-Jun-2009 John Baldwin <[email protected]>

Use the closefrom(2) system call.

Reviewed by: des


Revision tags: release/7.2.0, release/7.1.0, release/6.4.0
# 33f12199 07-May-2008 Doug Rabson <[email protected]>

Fix conflicts after heimdal-1.1 import and add build infrastructure. Import
all non-style changes made by heimdal to our own libgssapi.


Revision tags: release/7.0.0, release/6.3.0
# 27cfc42f 18-Jun-2007 Rong-En Fan <[email protected]>

- Bump share library version which were missed in last bump

Reported by: jhb
Discussed with: deischen, des, doubg, harti
Approved by: re (kensmith)


Revision tags: release/6.2.0
# bb79c11d 30-Sep-2006 Dag-Erling Smørgrav <[email protected]>

Update for OpenSSH 4.4p1.

MFC after: 1 week


Revision tags: release/5.5.0
# 9fd9594d 13-May-2006 Dag-Erling Smørgrav <[email protected]>

Add a manual dependency on ssh_namespace.h.

Discussed with: ru


# ed22e27d 13-May-2006 Dag-Erling Smørgrav <[email protected]>

Introduce a namespace munging hack inspired by NetBSD to avoid polluting
the namespace of applications which inadvertantly link in libssh (usually
through pam_ssh)

Suggested by: [email protected]
MFC

Introduce a namespace munging hack inspired by NetBSD to avoid polluting
the namespace of applications which inadvertantly link in libssh (usually
through pam_ssh)

Suggested by: [email protected]
MFC after: 6 weeks

show more ...


123