History log of /freebsd/usr.bin/soelim/soelim.c (Results 1 – 25 of 42)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 5e3934b1 24-Nov-2023 Warner Losh <imp@FreeBSD.org>

usr.bin: Automated cleanup of cdefs and other formatting

Apply the following automated changes to try to eliminate
no-longer-needed sys/cdefs.h includes as well as now-empty
blank lines in a row.

R

usr.bin: Automated cleanup of cdefs and other formatting

Apply the following automated changes to try to eliminate
no-longer-needed sys/cdefs.h includes as well as now-empty
blank lines in a row.

Remove /^#if.*\n#endif.*\n#include\s+<sys/cdefs.h>.*\n/
Remove /\n+#include\s+<sys/cdefs.h>.*\n+#if.*\n#endif.*\n+/
Remove /\n+#if.*\n#endif.*\n+/
Remove /^#if.*\n#endif.*\n/
Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/types.h>/
Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/param.h>/
Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/capsicum.h>/

Sponsored by: Netflix

show more ...


Revision tags: release/14.0.0
# 1d386b48 16-Aug-2023 Warner Losh <imp@FreeBSD.org>

Remove $FreeBSD$: one-line .c pattern

Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/


Revision tags: release/13.2.0, 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, release/11.0.1, release/11.0.0
# 3ba0c990 19-Sep-2016 Baptiste Daroussin <bapt@FreeBSD.org>

Revert capsicum support

In some corner case VFS lookup is not working and I do not have time to debug
it for now.


# 720ca500 19-Sep-2016 Enji Cooper <ngie@FreeBSD.org>

Fix typo introduced in r305949 with the stable/10 bootstrapping logic

The header is sys/capability.h, not sys/capabilities.h

X-MFC with: r305949
Pointyhat to: bapt
Reported by: allanjude, Jenkins
S

Fix typo introduced in r305949 with the stable/10 bootstrapping logic

The header is sys/capability.h, not sys/capabilities.h

X-MFC with: r305949
Pointyhat to: bapt
Reported by: allanjude, Jenkins
Sponsored by: Dell EMC Isilon

show more ...


# e645c6ad 18-Sep-2016 Baptiste Daroussin <bapt@FreeBSD.org>

Simplify the fix for bootstrap tools

building head is not supported from prior to stable/10 where sys/capsicum.h was
named sys/capabilities.h

Reported by: kib


# 8197e93d 18-Sep-2016 Baptiste Daroussin <bapt@FreeBSD.org>

Fix building as bootstrap tools on pre-capsicum.h systems


# 160af931 18-Sep-2016 Baptiste Daroussin <bapt@FreeBSD.org>

Better error checking

if getcwd fails: just ignore it and do not try to adding to the list of possible
path where to find the files.

if fdopen fails, warn and return NULL the rest of the code knows

Better error checking

if getcwd fails: just ignore it and do not try to adding to the list of possible
path where to find the files.

if fdopen fails, warn and return NULL the rest of the code knows how to deal
with it

Reported by: oshogbo

show more ...


# b2c71bce 18-Sep-2016 Baptiste Daroussin <bapt@FreeBSD.org>

style(9) fix

Reported by: oshogbo


# 224d9e3e 18-Sep-2016 Baptiste Daroussin <bapt@FreeBSD.org>

Capsicum-ize soelim(1).

As a trick to be able to access all files passed in arguments (readonly) within
the sandbox we first open the root directory, then consider all files as
relative to this file

Capsicum-ize soelim(1).

As a trick to be able to access all files passed in arguments (readonly) within
the sandbox we first open the root directory, then consider all files as
relative to this file descriptor.

This might be improved once casper add supports for filesystem.

MFC after: 1 month
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D7936

show more ...


# 27067774 16-Aug-2016 Dimitry Andric <dim@FreeBSD.org>

Merge ^/head r303250 through r304235.


# a43d43d5 30-Jul-2016 Baptiste Daroussin <bapt@FreeBSD.org>

Remove usage of _WITH_GETLINE from usr.bin


Revision tags: release/10.3.0, release/10.2.0
# 416ba5c7 22-Jun-2015 Navdeep Parhar <np@FreeBSD.org>

Catch up with HEAD (r280229-r284686).


# 37a48d40 28-May-2015 Glen Barber <gjb@FreeBSD.org>

MFH: r282615-r283655

Sponsored by: The FreeBSD Foundation


# 98e0ffae 27-May-2015 Simon J. Gerraty <sjg@FreeBSD.org>

Merge sync of head


# b704d1f2 21-May-2015 Baptiste Daroussin <bapt@FreeBSD.org>

add an include on sys/types.h because we do explicitly use size_t
remove unused stdbool.h

Suggested by: schwarze at OpenBSD


# 46cc6349 21-May-2015 Baptiste Daroussin <bapt@FreeBSD.org>

Use the POSIX PATH_MAX macro from limits.h instead of non standard MAXPATHLEN

Submitted by: schwarze at OpenBSD


# 0330f102 21-May-2015 Baptiste Daroussin <bapt@FreeBSD.org>

sort headers


# 3deada41 08-May-2015 Baptiste Daroussin <bapt@FreeBSD.org>

Merge from HEAD


# 2252f43b 06-May-2015 Glen Barber <gjb@FreeBSD.org>

MFH: r282315-r282534

Sponsored by: The FreeBSD Foundation


# 2b30fb26 04-May-2015 Baptiste Daroussin <bapt@FreeBSD.org>

Parse filename until first space then print the rest of the line after file
inclusion

This is the same behaviour of heirloom's soelim


# 7757a1b4 03-May-2015 Baptiste Daroussin <bapt@FreeBSD.org>

Merge from head


# b4a0618c 02-May-2015 Baptiste Daroussin <bapt@FreeBSD.org>

Improve compatibility groff's soelim
While here implement -C from GNU groff

Reported by: delphij


# 6f32f49c 02-May-2015 Xin LI <delphij@FreeBSD.org>

Correct - handling.

Reported by: pkg-fallout
X-MFC-with: r282318


# 363da138 01-May-2015 Baptiste Daroussin <bapt@FreeBSD.org>

Replace groff's soelim by soeliminate(1) renamed soelim(1)


Revision tags: release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, 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, 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, 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, release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0, release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0
# 961a3727 30-Oct-2002 Greg Lehey <grog@FreeBSD.org>

Output .lf directives.


12