| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Similar commit in main:
(cherry picked from commit d0b2dbfa0ecf)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Replay 2010[acflm] which had been merged but not recorded.
* Merge 2010n.
* Reorganize (unsplit) the code to match the upstream layout.
* Merge 2022[cdefg].
MFC after: 1 week
Sponsored by: Klara, Inc.
(cherry picked from commit bc42155199b5b0b479311e05b07aee7f6f9c5172)
tzcode: Address some compiler warnings.
MFC after: 1 week
Sponsored by: Klara, Inc.
(cherry picked from commit d5c85ac6526dcd0ac25ebdb71969c8c788d5e13b)
tzcode: Move configuration into separate header.
MFC after: 1 week
Sponsored by: Klara, Inc.
(cherry picked from commit 394cf6719a3c665eabe24d96669409e0c5a78076)
tzcode: Remove access() again, cf. 02ba1d993fa9.
Reported by: Coverity (CID 1250126)
MFC after: 1 week
Sponsored by: Klara, Inc.
Differential Revision: https://reviews.freebsd.org/D38035
(cherry picked from commit 3e2e5eebfaa0aebb2790bbde7f35d4c6c52e2596)
tzcode: Avoid memory leak if pthread_setspecific() fails.
Reported by: Coverity (CID 1018472, 1018474)
MFC after: 1 week
Sponsored by: Klara, Inc.
Differential Revision: https://reviews.freebsd.org/D38036
(cherry picked from commit 96e68c393f65046c0cf69d29f89efcfee949e5de)
tzcode: Fully initialize structs before use.
Reported by: Coverity (CID 1502542, 1502548)
MFC after: 1 week
Sponsored by: Klara, Inc.
Differential Revision: https://reviews.freebsd.org/D38037
(cherry picked from commit 55572cff58c4208a9e532356a245676b8eed6a3e)
tzcode: Silence warnings.
* Ignore failure to remove our temp file.
* Avoid a minor memory leak in the -D case.
Reported by: Coverity (CID 1502534, 1502535, 1502538)
MFC after: 1 week
Sponsored by: Klara, Inc.
Differential Revision: https://reviews.freebsd.org/D38038
(cherry picked from commit 2aad7570f4e11ac94bb06c44cdc83ad1962fb97e)
depend-cleanup.sh: handle zic moving one level up.
MFC after: 1 week
Sponsored by: Klara, Inc.
Differential Revision: https://reviews.freebsd.org/D38044
(cherry picked from commit 4a158fc030b5a31efdbad8b30c9a859df553ae3c)
libc: Update mktime(3) / timegm(3) tests.
Sponsored by: Klara, Inc.
Reviewed by: ngie
Differential Revision: https://reviews.freebsd.org/D38177
(cherry picked from commit d8c9f80891872a54d0b21933136644d915096fe3)
zoneinfo: On amd64, include 32-bit data.
While there, drop the unnecessary posixrules option.
Sponsored by: Klara, Inc.
Reviewed by: imp, allanjude
Differential Revision: https://reviews.freebsd.org/D38142
(cherry picked from commit 783c318fd1181d46554c31a5039db10e7f5eef49)
tzcode: Document zic's -D option.
Sponsored by: Klara, Inc.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D38141
(cherry picked from commit a7b1b73935f21a3dcd6fc8d86a37b92f0c9ba93f)
zoneinfo: Always produce fat zoneinfo files.
These aren't just needed for compatibility with i386 binaries (which need
the 32-bit section), but potentially also for compatibility with older
binaries on all platforms.
Sponsored by: Klara, Inc.
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D38194
(cherry picked from commit f1021d27f73efb821213a973e1ab9366278c78f1)
Fix cross-build from STABLE or older CURRENT.
Previously, zic and tzsetup were both listed as install tools and basic
bootstrap tools. Actually, tzsetup is an install tool while zic is a
non-basic bootstrap tool.
Fixes: 783c318fd118
Sponsored by: Klara, Inc.
Reviewed by: jrtc27, emaste
Differential Revision: https://reviews.freebsd.org/D38195
(cherry picked from commit 7a4a520064cb7fbff79560113682d6fe1a1ae9ee)
Makefile.inc1: Restore adding tzsetup to _basic_bootstrap_tools
ITOOLS is only the list of programs to make a copy of during install, it
doesn't cause anything to be bootstrapped. Thus, by removing tzsetup
from _basic_bootstrap_tools, we end up without it on non-FreeBSD, and so
we error out trying to copy it to INSTALLTMP.
Note that _basic_bootstrap_tools is only used for BOOTSTRAP_ALL_TOOLS
(which is why zic was moved away from it). Should tzsetup evolve such
that the host version is insufficient on older FreeBSD it can be moved
to be more like zic, but that seems unnecessary for what is likely to
remain a simple tool.
This partially reverts commit 7a4a520064cb7fbff79560113682d6fe1a1ae9ee.
Fixes: 7a4a520064cb ("Fix cross-build from STABLE or older CURRENT.")
(cherry picked from commit d4fdfd3f9077216e52f38f7364974959c9e43168)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Assume gcc is at least 6.4, the oldest xtoolchain in the ports tree.
Assume clang is at least 6, which was in 11.2-RELEASE. Drop conditions
for older compilers.
Reviewed by: imp (earlier version), emaste, jhb
MFC after: 2 weeks
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D24802
Notes:
svn path=/head/; revision=360964
|
| |
|
|
|
|
|
| |
Sponsored by: Dell EMC Isilon
Notes:
svn path=/head/; revision=325188
|
| |
|
|
|
|
|
|
|
| |
Reviewed by: emaste
Sponsored by: Dell EMC Isilon
X-Differential Revision: https://reviews.freebsd.org/D12284
Notes:
svn path=/head/; revision=323572
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Also, use :H where possible/sensical to manipulate .CURDIR-relative paths
This simplifies pathing in make/displayed output.
MFC after: 1 week
Sponsored by: Dell EMC Isilon
Notes:
svn path=/head/; revision=314468
|
| |
|
|
|
|
|
|
| |
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
Notes:
svn path=/head/; revision=290083
|
| |\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Off by default, build behaves normally.
WITH_META_MODE we get auto objdir creation, the ability to
start build from anywhere in the tree.
Still need to add real targets under targets/ to build packages.
Differential Revision: D2796
Reviewed by: brooks imp
Notes:
svn path=/head/; revision=284345
|
| | |
| |
| |
| | |
Notes:
svn path=/projects/bmake/; revision=284172
|
| | |
| |
| |
| | |
Notes:
svn path=/projects/bmake/; revision=266219
|
| | |
| |
| |
| | |
Notes:
svn path=/projects/bmake/; revision=265802
|
| | |
| |
| |
| | |
Notes:
svn path=/projects/bmake/; revision=248169
|
| | |
| |
| |
| | |
Notes:
svn path=/projects/bmake/; revision=246868
|
| |/
|
|
|
|
|
| |
Requested by: Simon Gerraty <sjg@juniper.net>
Notes:
svn path=/projects/bmake/; revision=239572
|
| |
|
|
|
|
|
|
| |
Submitted by: linimon
Approved by: wollman (via linimon)
Notes:
svn path=/head/; revision=205366
|
| |
|
|
|
|
|
| |
to contrib/tzcode/stdtime.
Notes:
svn path=/head/; revision=204347
|
| |
|
|
|
|
|
|
|
|
|
| |
The Makefiles are leftovers from the copies and should live in usr.sbin/zic/*
From usr.sbin/zic:
The sources are from a vendor contributed source, therefore should
live in contrib/tzcode/zic.
Notes:
svn path=/head/; revision=204332
|
| |
|
|
| |
Notes:
svn path=/head/; revision=201390
|
| |\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
zic:
- Fix URL / reference to Calendrical Calculations: Third Edition
libc/stdtime:
- Fix typo in tzfile.5 (no changes in our part)
MFC after: 1 week
Notes:
svn path=/head/; revision=200832
|
| |\|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Cleanup unnecessary local variables in zdump.
- Fix man-page
MFC after: 1 week
Notes:
svn path=/head/; revision=198831
|
| |\|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
MFV of tzcode2009k
zic.c:
Do not end a binary file with a POSIX-style time zone string
for locations that end up in permanent DST (thanks to Andreas
Schwab).
Notes:
svn path=/head/; revision=196587
|
| | |
| |
| |
| | |
Notes:
svn path=/vendor/tzcode/dist/; revision=183400
|
| | |
| |
| |
| | |
Notes:
svn path=/vendor/tzcode/dist/; revision=130780
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
- Clarify the license for the tzcode: public domain
MFC after: 1 month
Notes:
svn path=/head/; revision=192890
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Upgrade of the tzcode from 2004a to 2009e.
Changes are numerous, but include...
- New format of the output of zic, which supports both 32 and 64
bit time_t formats.
- zdump on 64 bit platforms will actually produce some output instead
of doing nothing for a looooooooong time.
- linux_base-fX, with X >= at least 8, will work without problems related
to the local time again.
The original patch, based on the 2008e, has been running for a long
time on both my laptop and desktop machine and have been tested by
other people.
After the installation of this code and the running of zic(8), you
need to run tzsetup(8) again to install the new datafile.
Approved by: wollman@ for usr.sbin/zic
MFC after: 1 month
Notes:
svn path=/head/; revision=192625
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=184985
|
| | |
| |
| |
| |
| |
| |
| |
| | |
This is harmless for the mandoc output, but it makes syntax highlighting of
the .Dl argument string a bit prettier in Emacs.
Notes:
svn path=/head/; revision=184984
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=176407
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
to the call to error(). The problem found by doing fuzz testing.
MFC after: 3 days
Notes:
svn path=/head/; revision=174210
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=163484
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=141851
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=140295
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=136708
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=131500
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=130819
|
| | |
| |
| |
| |
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
Notes:
svn path=/head/; revision=130781
|
| |\|
| |
| |
| |
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
Notes:
svn path=/head/; revision=130778
|
| | |
| |
| |
| |
| |
| |
| | |
Obtained from: ftp://elsie.nci.nih.gov/pub/tzcode2004a.tar.gz
Notes:
svn path=/vendor/tzcode/dist/; revision=130777
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=113091
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
calling getmode(3).
Approved by: wollman
MFC after: 1 week
Notes:
svn path=/head/; revision=111414
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=99968
|
| | |
| |
| |
| |
| |
| |
| |
| | |
These are not perfectly in agreement with each other style-wise, but they
are orders of orders of magnitude more consistent style-wise than before.
Notes:
svn path=/head/; revision=80029
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
this entire subtree would be in src/contrib, but if that isn't going
to happen at least this has a chance of warning off unsuspecting
committers.
Approved by: wollman
Notes:
svn path=/head/; revision=79859
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
most of the files aren't on the vendor branch.
Submitted by: wollman
Notes:
svn path=/head/; revision=79858
|
| | |
| |
| |
| |
| |
| |
| | |
Submitted by: Mike Barcroft <mike@q9media.com>
Notes:
svn path=/head/; revision=79751
|
| | |
| |
| |
| |
| |
| |
| | |
- MAN[1-9] -> MAN.
Notes:
svn path=/head/; revision=74816
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=74532
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=70403
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=69862
|
| | |
| |
| |
| | |
Notes:
svn path=/head/; revision=69315
|