Commit Graph

3253 Commits

Author SHA1 Message Date
maya 07425de535 Correct copy-paste error. From joerg, thanks. 2019-03-12 02:07:14 +00:00
christos 643c7056b9 Add an initializatin that is not needed when the optimizer works... 2019-03-11 18:06:28 +00:00
christos 3cae15996b Reduce diffs with upstream and enable the built-in database code. 2019-03-11 17:59:28 +00:00
christos d90f6d4d22 add __dead for clang. 2019-03-11 03:56:30 +00:00
christos 6167eca2d0 resolve conflicts 2019-03-11 00:15:38 +00:00
christos 544c191c34 Changes in version 1.14.5, released on March 10, 2019
--- MAJOR NEW FEATURES ---
 * apropos(1): improve POSIX compliance by accepting case-insensitive
   extended regular expressions by default
 * new -O tag[=term] output option (open a page at the definition of a term)
 * tbl(7) -T html: spanning and horizontal and vertical alignment of cells
 * tbl(7) -T html: draw lines on the edges of table cells
 * tbl(7) -T utf8: render lines with the Unicode box drawing characters
 * mandoc is now able to handle the manual pages of the groff package.
    --- MINOR NEW FEATURES ---
 * -T html: new option -O toc (table of contents)
 * -T html: second argument to -O man to support local and remote links
 * mdoc(7) .Bd -centered now fills the text contained in it
 * man-ext .SY and .YS macros (synopsis block)
 * man-ext .TQ macro (tagged paragraph without vertical space before it)
 * tbl(7) \& explicit alignment indicator
 * roff(7) .shift, .while, and .return requests
 * roff(7) .char request (output glyph definition)
 * roff(7) .nop request (no operation)
 * roff(7) .ft request: handle the CB, CI, and CR fonts
 * roff(7) .if c conditional (character available)
 * roff(7) \\$@ escape sequence (insert all macro arguments, quoted)
 * roff(7) \*(.T predefined string (interpolate output device name)
 * roff(7) \[charNNN] escape sequence (for printable ASCII characters)
 * roff(7) \# escape sequence (line continuation with comment)
    --- HTML OUTPUT SYNTAX CORRECTIONS ---
 * Render .br and \p as <br/>, not as an empty <div>.
 * Render .Pp and .PP as <p> and automatically close it when needed.
 * Stop writing empty list elements for non-compact .Bl -tag lists.
 * Do not put <p> inside <a> if .UR or .MT contain .PP.
 * Implement tooltips purely in CSS rather than abusing title= attributes.
    --- MINOR FUNCTIONAL IMPROVEMENTS ---
 * many improvements to the handling of fill and no-fill mode
 * tbl(7): better column widths in the presence of horizontal spans
 * several minor improvements to escape sequence handling
 * several minor improvements to manual font handling
 * portability: autodetect need for _GNU_SOURCE or _OPENBSD_SOURCE
 * portability: autodetect whether less(1) supports the -T option
 * large numbers of bugfixes of diverse kinds
    --- STRUCTURAL IMPROVEMENTS ---
 * Disentangle eqn(7) and tbl(7) from other parser header files,
   and clean up some parser data structures.
 * Substantially simplify error and warning message infrastructure.
    --- THANKS TO ---
 * John Gardner for crucial help implementing tooltips in CSS.
 * Alexander Bluhm, Raphael Graf, Ted Unangst (OpenBSD)
   and Daniel Sabogal (Alpine Linux) for patches.
 * Anthony Bentley and Jason McIntyre (OpenBSD) for documentation patches,
   suggesting new features, bug reports, and useful discussions.
 * Kyle Evans and Baptiste Daroussin (FreeBSD) for minor patches.
 * Pali Rohar for suggesting multiple new features and for reporting
   several bugs and missing features.
 * Klemens Nanni (OpenBSD) for suggesting multiple new features.
 * Kristaps Dzonsons (bsd.lv), Marc Espie (OpenBSD), Adam Kalisz,
   and Laura Morales for suggesting new features.
 * Wolfram Schneider and Yuri Pankov (FreeBSD) for reporting missing features.
 * Edward Tomasz Napierala (FreeBSD) for suggesting a feature improvement.
 * Thomas Klausner (NetBSD) and Sevan Janiyan (SmartOS)
   for bug reports and release testing.
 * Bryan Steele, Janne Johansson, Kurt Mosiejczuk, Mike Belopuhov, Theo
   Buehler, Todd Miller (OpenBSD), Andreas Gustafsson, Christos Zoulas,
   Robert Elz (NetBSD), Kurt Jaeger (FreeBSD), Fabio Scotoni, Kelvin
   Sherlock, Mark Harris, Orestis Ioannou, Raf Czlonka, and Sean Farrell
   for bug reports.
 * Ulrich Spoerlein (FreeBSD), Leah Neukirchen (Void Linux),
   Matej Cepl (openSUSE), and Jan Stary (MacOS X) for release testing.
 * Brian Callahan and Stuart Henderson (OpenBSD) for help
   with the OpenBSD groff port.
 * Bertrand Garrigues, Branden Robinson, Ralph Corderoy, and Werner
   Lemberg (GNU troff) for checking groff patches.
 * Scott Cheloha, Theo de Raadt (OpenBSD)
   and Natanael Copa (Alpine Linux) for useful discussions.
2019-03-10 22:28:56 +00:00
christos 24ea0e6557 one more noreturn 2019-03-10 21:52:00 +00:00
christos 4ebe1e1401 Add noreturn where needed. In the prof case because of cassert() and return
in some functions we disable the cassert() for clang. We should really have
a JEMALLOC_PROF_NORETURN and a way to mark the remaining of the function
unreachable.
2019-03-10 19:34:30 +00:00
christos bd8496e18f Add noreturn for the benefit of clang 2019-03-10 19:32:56 +00:00
christos 177af116b1 clang does not have the gnu_printf attribute 2019-03-10 15:45:26 +00:00
christos 0a0bcc4d2a turn on debugging to help find problems. 2019-03-10 15:32:42 +00:00
mrg 5e9cdbeac0 add most of the AMDGPU target makefiles and stuff that don't
touch the build.  this comes from:

commit f90685c11d4460d3098fa35f48b58d1893e974e0
Author: Maya Rashish <maya@NetBSD.org>
Date:   Sat Feb 23 09:46:14 2019 +0200

    Separate MKCLANG from MKLLVM.

    build LLVM libraries as PIC.
    Add AMDGPU target, and adjust tools accordingly.
2019-03-10 12:14:05 +00:00
kamil 24ff731477 Rename je_mallctltomib to je_mallctlnametomib
This unbreaks the build.
2019-03-10 10:00:29 +00:00
christos b8c1d815cd Make the non-standard jemalloc api weak. 2019-03-10 02:49:52 +00:00
christos dd4590b9a0 We don't need to depend on pthreads. 2019-03-08 20:40:05 +00:00
christos 83c1f8fdbe Arrange for the new man page to be installed. 2019-03-08 20:00:21 +00:00
mrg 2205ec8c8a - install fontconfig 2.13.1 files and new fc-conflist
- move libuuid_ul stuff into its srcs.mk and link directly into libfontconfig.
- update reachover
- update man page list
2019-03-08 09:58:23 +00:00
mrg e35ff3d389 build glue libuuid_ul from util-linux's libuuid, with renamed functions,
as a private library so that fontconfig can link it in.

provide a randutils.h compat as the generic util-linux one is GPL.
2019-03-07 03:53:51 +00:00
martin f079cca48c Apply fix for CVE-2016-3189 bzip2: heap use after free in bzip2recover 2019-03-06 07:21:55 +00:00
christos 76d4ffd600 Sync with installed files. 2019-03-05 22:51:36 +00:00
christos 2aea8519e2 Fix debugging compilation 2019-03-05 22:45:11 +00:00
christos 15db7ac5db Add some XXX for things I need to fix later, and fix some of the hard-coding. 2019-03-05 22:39:21 +00:00
christos 2460de9976 fix const cast with custom "unconst" 2019-03-05 22:37:39 +00:00
christos 4fcb57530e revert previous; not needed. 2019-03-05 22:35:45 +00:00
christos bfbf98e5ee Check that the previous link exists before merging it.
XXX: Is that right? Fixing this makes the h_resolve test work.
2019-03-05 15:18:59 +00:00
christos 1cbe59dfac Add FALLTHROUGH comments. 2019-03-04 20:22:04 +00:00
christos 1fec95ec6d Add fallthough comments. 2019-03-04 20:21:18 +00:00
christos 26f3906123 add constcond 2019-03-04 20:06:50 +00:00
christos 27141d3f59 - fix shadowing
- add constcond
2019-03-04 20:06:31 +00:00
christos 5f477cbe04 Adjust to new names 2019-03-04 20:06:11 +00:00
christos 9079a1c0d8 adjust prototype 2019-03-04 20:05:19 +00:00
christos c8a14bf385 use UNCONST 2019-03-04 20:05:01 +00:00
christos 36cc706d2e fix prototypes 2019-03-04 20:04:43 +00:00
christos 09e980e902 fix incorrect macro use 2019-03-04 20:04:30 +00:00
christos 945c1de7b3 fix const hash 2019-03-04 20:04:09 +00:00
christos d2fd6995a9 remove unused line 2019-03-04 20:03:53 +00:00
christos 32ed463d0d fix shadowing 2019-03-04 20:03:00 +00:00
christos 1f3e6ff0b2 fix prototype 2019-03-04 20:02:18 +00:00
christos 3eabc6e968 use c99 initializers 2019-03-04 20:01:59 +00:00
christos d00da0a209 use __format_arg__ to check format arguments. 2019-03-04 20:01:42 +00:00
christos 49734e41f0 no need to elide format-non-literal 2019-03-04 19:41:51 +00:00
christos ecfb4c344b bump warns 2019-03-04 19:41:37 +00:00
christos fc7304a42d use __format_arg__ to check arguments... 2019-03-04 19:40:57 +00:00
christos dab1a04efe Put back braces. 2019-03-04 19:16:31 +00:00
christos 9fcfb587d6 use ATOMIC_INIT() 2019-03-04 19:16:10 +00:00
christos f27c68ffb8 put back __UNCONST for now. 2019-03-04 19:15:39 +00:00
christos 9f7b5a74cf Add Makefiles if we want to build jemalloc standalone. 2019-03-04 17:29:49 +00:00
christos 776d0ce61e Add glue for libc. 2019-03-04 17:29:24 +00:00
christos 6b01c29176 We already have div.{c,S} in libc so we call this one divide.c 2019-03-04 17:26:51 +00:00
christos 222f5120bc Add header files (generated and not) 2019-03-04 17:25:09 +00:00