History log of /freebsd-14.2/lib/libsm/Makefile (Results 1 – 25 of 29)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0
# d0b2dbfa 16-Aug-2023 Warner Losh <[email protected]>

Remove $FreeBSD$: one-line sh pattern

Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/


# 525438ea 18-Apr-2023 John Baldwin <[email protected]>

sendmail: Silence -Wdeprecated-non-prototype warnings.

These will hopefully be fixed upstream eventually, but silence the
warnings until then.

Reviewed by: emaste
Differential Revision: https://rev

sendmail: Silence -Wdeprecated-non-prototype warnings.

These will hopefully be fixed upstream eventually, but silence the
warnings until then.

Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D39518

show more ...


Revision tags: release/13.2.0
# d89513ed 15-Jan-2023 Gregory Neil Shapiro <[email protected]>

Update for new library files in sendmail 8.17.1


Revision tags: release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0, release/10.4.0, release/11.1.0
# ff9aa684 20-Jan-2017 Enji Cooper <[email protected]>

Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones

This implifies pathing in make/displayed output

MFC after: 3 weeks
Sponsored by: Dell EMC Isilon


Revision tags: release/11.0.1, release/11.0.0, release/10.3.0
# 9c4fa87c 08-Feb-2016 Glen Barber <[email protected]>

Create a package for sendmail(8).

Sponsored by: The FreeBSD Foundation


# a70cba95 04-Feb-2016 Glen Barber <[email protected]>

First pass through library packaging.

Sponsored by: The FreeBSD Foundation


# b791fbe6 25-Nov-2015 Bryan Drewery <[email protected]>

META MODE: Don't create .meta files when symlinking sources into the obj directory.

Tracking these leads to situations where meta mode will consider the
file to be out of date if /bin/sh or /bin/ln

META MODE: Don't create .meta files when symlinking sources into the obj directory.

Tracking these leads to situations where meta mode will consider the
file to be out of date if /bin/sh or /bin/ln are newer than the source
file. There's no reason for meta mode to do this as make is already
handling the rebuild dependency fine.

Sponsored by: EMC / Isilon Storage Division

show more ...


Revision tags: release/10.2.0
# 2e6b47f2 07-Jul-2015 Gregory Neil Shapiro <[email protected]>

libsm/path.c is about to disappear in the merge of sendmail 8.15.2. It is an
empty file now so it is safe to remove before the merge.

MFC after: 3 days


Revision tags: release/10.1.0, 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.


# 7d9b9991 26-Jan-2014 Gregory Neil Shapiro <[email protected]>

Add new sendmail 8.14.8 file

MFC after: 5 days


Revision tags: release/10.0.0, release/9.2.0, release/8.4.0
# a7449e3c 16-Feb-2013 Dimitry Andric <[email protected]>

Since clang 3.2 now has an option to suppress warnings about implicitly
promoted K&R parameters, remove the workarounds added for sendmail
components in r228558.

MFC after: 1 week


Revision tags: release/9.1.0, release/8.3.0_cvs, release/8.3.0
# 07b202a8 28-Feb-2012 Dimitry Andric <[email protected]>

Define several extra macros in bsd.sys.mk and sys/conf/kern.pre.mk, to
get rid of testing explicitly for clang (using ${CC:T:Mclang}) in
individual Makefiles.

Instead, use the following extra macros

Define several extra macros in bsd.sys.mk and sys/conf/kern.pre.mk, to
get rid of testing explicitly for clang (using ${CC:T:Mclang}) in
individual Makefiles.

Instead, use the following extra macros, for use with clang:
- NO_WERROR.clang (disables -Werror)
- NO_WCAST_ALIGN.clang (disables -Wcast-align)
- NO_WFORMAT.clang (disables -Wformat and friends)
- CLANG_NO_IAS (disables integrated assembler)
- CLANG_OPT_SMALL (adds flags for extra small size optimizations)

As a side effect, this enables setting CC/CXX/CPP in src.conf instead of
make.conf! For clang, use the following:

CC=clang
CXX=clang++
CPP=clang-cpp

MFC after: 2 weeks

show more ...


Revision tags: release/9.0.0
# 9e277ed8 16-Dec-2011 Dimitry Andric <[email protected]>

Fix typos in the comments about clang warnings in several
sendmail-related Makefiles.

Spotted by: arundel
MFC after: 1 week


# df5eee43 16-Dec-2011 Dimitry Andric <[email protected]>

Unfortunately, clang gives a warning about sendmail code that cannot be
turned off yet. Since this is contrib code, and we don't really care
about the warnings, just turn make them non-fatal for now

Unfortunately, clang gives a warning about sendmail code that cannot be
turned off yet. Since this is contrib code, and we don't really care
about the warnings, just turn make them non-fatal for now.

MFC after: 1 week

show more ...


Revision tags: release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0
# 1b015457 07-Mar-2010 Gregory Neil Shapiro <[email protected]>

MFC: Enable the use of nanosleep() instead of using pause() and signals.
This Makefile change can be removed when the next version of sendmail
is imported as it will have this built in to t

MFC: Enable the use of nanosleep() instead of using pause() and signals.
This Makefile change can be removed when the next version of sendmail
is imported as it will have this built in to the FreeBSD conf.h section.

show more ...


# f37de12b 04-Mar-2010 Gregory Neil Shapiro <[email protected]>

Enable the use of nanosleep() instead of using pause() and signals.
This Makefile change can be removed when the next version of sendmail
is imported as it will have this built in to the FreeBSD conf

Enable the use of nanosleep() instead of using pause() and signals.
This Makefile change can be removed when the next version of sendmail
is imported as it will have this built in to the FreeBSD conf.h section.

Submitted by: John Marshall
MFC after: 3 days

show more ...


# daaf5759 02-Jan-2010 Ed Schouten <[email protected]>

Build lib/ with WARNS=6 by default.

Similar to libexec/, do the same with lib/. Make WARNS=6 the norm and
lower it when needed.

I'm setting WARNS?=0 for secure/. It seems secure/ includes the
Makef

Build lib/ with WARNS=6 by default.

Similar to libexec/, do the same with lib/. Make WARNS=6 the norm and
lower it when needed.

I'm setting WARNS?=0 for secure/. It seems secure/ includes the
Makefile.inc provided by lib/. I'm not going to touch that directory.
Most of the code there is contributed anyway.

show more ...


Revision tags: release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0
# 4881b9c3 09-Apr-2007 Gregory Neil Shapiro <[email protected]>

New files in sendmail 8.14.1


Revision tags: release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0
# 9f734473 22-Mar-2006 Gregory Neil Shapiro <[email protected]>

Add new libsm file from sendmail 8.13.6

MFC after: 4 days


# e1fe3dba 17-Mar-2006 Ruslan Ermilov <[email protected]>

Reimplementation of world/kernel build options. For details, see:

http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html

The src.conf(5) manpage is to follow in a few days.

Bro

Reimplementation of world/kernel build options. For details, see:

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)

show more ...


Revision tags: release/6.0.0_cvs, release/6.0.0
# 3852b24c 07-Jun-2005 Gregory Neil Shapiro <[email protected]>

Add a new source file in sendmail 8.13.4


Revision tags: release/5.4.0_cvs, release/5.4.0
# c3b29b3f 14-Feb-2005 Gregory Neil Shapiro <[email protected]>

Remove file no longer in 8.13.3


Revision tags: release/4.11.0_cvs, release/4.11.0
# 731db6a4 21-Dec-2004 Ruslan Ermilov <[email protected]>

NOINET6 -> NO_INET6


Revision tags: release/5.3.0_cvs, release/5.3.0
# a35d8893 24-Oct-2004 Ruslan Ermilov <[email protected]>

For variables that are only checked with defined(), don't provide
any fake value.


# f673db9f 01-Aug-2004 Gregory Neil Shapiro <[email protected]>

Reflect changes in sendmail 8.13 source tree


12