various: general adoption of SPDX licensing ID tags.Mainly focus on files that use BSD 2-Clause license, however the tool Iwas using misidentified many licenses so this was mostly a manual - error
various: general adoption of SPDX licensing ID tags.Mainly focus on files that use BSD 2-Clause license, however the tool Iwas using misidentified many licenses so this was mostly a manual - errorprone - task.The Software Package Data Exchange (SPDX) group provides a specificationto make it easier for automated tools to detect and summarize well knownopensource licenses. We are gradually adopting the specification, notingthat the tags are considered only advisory and do not, in any way,superceed or replace the license texts.No functional change intended.
show more ...
DIRDEPS_BUILD: Update dependencies.Sponsored by: Dell EMC Isilon
Update URLs in usr.bin- http -> https- contents have moved locations- removal of URL if I could not find new location
Adopt SRCTOP in usr.binPrefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/fooover ${.CURDIR}/../foo for paths in Makefiles.Differential Revision: https://reviews.freebsd.org/D9
Adopt SRCTOP in usr.binPrefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/fooover ${.CURDIR}/../foo for paths in Makefiles.Differential Revision: https://reviews.freebsd.org/D9932Sponsored by: NetflixSilence on: arch@ (twice)
Revert the change from errx/strerror to errc to appease gcc 4.2
Sync usage between program and man page. Increase column width. [1]Simplifay the usage() functionReplace errx/strerror with errcSubmitted by: [email protected] [1]Obtained from: NetBSD
Add RCS Id. Sort options in SYNOPSIS. Fix macro usage. Fix Dd.Submitted by: [email protected]Obtained from: NetBSD
DIRDEPS_BUILD: Regenerate without local dependencies.These are no longer needed after the recent 'beforebuild: depend' changesand hooking DIRDEPS_BUILD into a subset of FAST_DEPEND which supports
DIRDEPS_BUILD: Regenerate without local dependencies.These are no longer needed after the recent 'beforebuild: depend' changesand hooking DIRDEPS_BUILD into a subset of FAST_DEPEND which supportsskipping 'make depend'.Sponsored by: EMC / Isilon Storage Division
META MODE: Update dependencies with 'the-lot' and add missing directories.This is not properly respecting WITHOUT or ARCH dependencies in target/.Doing so requires a massive effort to rework targe
META MODE: Update dependencies with 'the-lot' and add missing directories.This is not properly respecting WITHOUT or ARCH dependencies in target/.Doing so requires a massive effort to rework targets/ to do so. Abetter approach will be to either include the SUBDIR Makefiles directlyand map to DIRDEPS or just dynamically lookup the SUBDIR. These losethe benefit of having a userland/lib, userland/libexec, etc, though andresults in a massive package. The current implementation of targets/ isvery unmaintainable.Currently rescue/rescue and sys/modules are still not connected.Sponsored by: EMC / Isilon Storage Division
mdoc: sort SEE ALSO.
use .Mt to mark up email addresses consistently (part3)PR: 191174Submitted by: Franco Fichtner <franco at lastsummer.de>
To avoid having to explicitly test COMPILER_TYPE for settingclang-specific or gcc-specific flags, introduce the following newvariables for use in Makefiles:CFLAGS.clangCFLAGS.gccCXXFLAGS.clang
To avoid having to explicitly test COMPILER_TYPE for settingclang-specific or gcc-specific flags, introduce the following newvariables for use in Makefiles:CFLAGS.clangCFLAGS.gccCXXFLAGS.clangCXXFLAGS.gccIn bsd.sys.mk, these get appended to the regular CFLAGS or CXXFLAGS forthe right compiler.MFC after: 1 week
Attempt to deal with a compile failure that shows up with gcc, whichhas -Werror on. Without this, yylex() is inconsistently or redundantlydefined.
Prevent shadowing.The name line_number seems to be used as a function parameter name forone of the Lex functions. Change the name to linenumber.
Let iconv build on -HEAD properly.- Add NO_WMISSING_VARIABLE_DECLARATIONS where we use Yacc/Lex.- Add variable declarations where possible.- Add missing static keyword.
For mkcsmapper, conditionalize gcc-specific compile flags.MFC after: 3 days
Ensure mkcsmapper and mkesdb compile with clang, if WITH_ICONV isdefined.Submitted by: zeisingPR: bin/167481MFC after: 3 daysX-MFC-With: r238197
Fix spellingPR: bin/167480Submitted by: zeisingApproved by: cperciva
Fix world after byacc import:- old yacc(1) use to magicially append stdlib.h, while new one don't- new yacc(1) do declare yyparse by itself, fix redundant declaration of 'yyparse'Approved by: d
Fix world after byacc import:- old yacc(1) use to magicially append stdlib.h, while new one don't- new yacc(1) do declare yyparse by itself, fix redundant declaration of 'yyparse'Approved by: des (mentor)
[mdoc] Fixed .Dt call.
Add the BSD-licensed Citrus iconv to the base system with default offsetting. It can be built by setting the WITH_ICONV knob. While thisknob is unset, the library part, the binaries, the header fil
Add the BSD-licensed Citrus iconv to the base system with default offsetting. It can be built by setting the WITH_ICONV knob. While thisknob is unset, the library part, the binaries, the header file andthe metadata files will not be built or installed so it makes no impacton the system if left turned off.This work is based on the iconv implementation in NetBSD but a greatnumber of improvements and feature additions have been included:- Some utilities have been added. There is a conversion table generator, which can compare conversion tables to reference data generated by GNU libiconv. This helps ensuring conversion compatibility.- UTF-16 surrogate support and some endianness issues have been fixed.- The rather chaotic Makefiles to build metadata have been refactored and cleaned up, now it is easy to read and it is also easier to add support for new encodings.- A bunch of new encodings and encoding aliases have been added.- Support for 1->2, 1->3 and 1->4 mappings, which is needed for transliterating with flying accents as GNU does, like "u.- Lots of warnings have been fixed, the major part of the code is now WARNS=6 clean.- New section 1 and section 5 manual pages have been added.- Some GNU-specific calls have been implemented: iconvlist(), iconvctl(), iconv_canonicalize(), iconv_open_into()- Support for GNU's //IGNORE suffix has been added.- The "-" argument for stdin is now recognized in iconv(1) as per POSIX.- The Big5 conversion module has been fixed.- The iconv.h header files is supposed to be compatible with the GNU version, i.e. sources should build with base iconv.h and GNU libiconv. It also includes a macro magic to deal with the char ** and const char ** incompatibility.- GNU compatibility: "" or "char" means the current local encoding in use- Various cleanups and style(9) fixes.Approved by: delphij (mentor)Obtained from: The NetBSD ProjectSponsored by: Google Summer of Code 2009