Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (49m)  netbsd-8 (5d)  netbsd-10 (5d)  netbsd-9 (11d)  thorpej-ifq (175d)  thorpej-altq-separation (177d) 

2024-05-09 22:17:41 UTC Now

2020-10-25 22:04:24 UTC MAIN commitmail json YAML

make(1): add tests for generating the ... command indirectly

(rillig)

2020-10-25 21:51:49 UTC MAIN commitmail json YAML

2020-10-25 21:34:52 UTC MAIN commitmail json YAML

make(1): refactor JobDeleteTarget

Splitting the many conditions into separate pieces makes the code more
understandable.

(rillig)

2020-10-25 21:31:00 UTC MAIN commitmail json YAML

2020-10-25 20:34:05 UTC MAIN commitmail json YAML

make(1): inline macro STATIC

It was a leftover from the remote code, which was removed on 2006-03-11.

(rillig)

2020-10-25 20:29:51 UTC MAIN commitmail json YAML

make(1): convert result of JobStart from macros to enum

Right now the result is not used by any code.

(rillig)

2020-10-25 20:24:25 UTC MAIN commitmail json YAML

make(1): convert abort reason macros to enum

(rillig)

2020-10-25 20:19:06 UTC MAIN commitmail json YAML

make(1): invert condition in Job_CheckCommands, reduce indentation

(rillig)

2020-10-25 20:15:56 UTC MAIN commitmail json YAML

make(1): reduce indentation in Job_CheckCommands

(rillig)

2020-10-25 20:14:09 UTC MAIN commitmail json YAML

make(1): split and invert complex condition in Job_CheckCommands

(rillig)

2020-10-25 20:09:28 UTC MAIN commitmail json YAML

make(1): inline error message

This saves a variable, and since bmake needs to adhere to C90, this
variable declaration prevents refactoring the code.

(rillig)

2020-10-25 19:57:43 UTC MAIN commitmail json YAML

make(1): clean up API comment in job.c

(rillig)

2020-10-25 19:28:44 UTC MAIN commitmail json YAML

make(1): print hash in debug log with fixed width

This way all the keys are nicely aligned in the debug log.

(rillig)

2020-10-25 19:19:07 UTC MAIN commitmail json YAML

make(1): rename hash functions to identify the type name

This makes it easier to spot mismatches between the function name and
its first parameter, although the compiler should already catch most of
them.  Except for void pointers.

(rillig)

2020-10-25 19:11:31 UTC MAIN commitmail json YAML

make(1): reduce duplicate code in VarFind

(rillig)

2020-10-25 18:53:12 UTC MAIN commitmail json YAML

Temporarily disable NTFS for an internal test.

(martin)

2020-10-25 18:40:00 UTC MAIN commitmail json YAML

make(1): clean up comments in hash.c

(rillig)

2020-10-25 18:37:08 UTC MAIN commitmail json YAML

make(1): clean up hash table functions

(rillig)

2020-10-25 18:12:35 UTC MAIN commitmail json YAML

make(1): refactor Hash_DeleteTable

(rillig)

2020-10-25 18:03:59 UTC MAIN commitmail json YAML

make(1): refactor Hash_InitTable

First prepare all the data, then initialize the fields in declaration
order.

(rillig)

2020-10-25 17:58:53 UTC MAIN commitmail json YAML

make(1): clean up RebuildTable for hash tables

The previous code used ++ and -- a lot, it also reused variables a lot
for different purposes.

(rillig)

2020-10-25 17:37:36 UTC MAIN commitmail json YAML

Skip reading .MAKE.DEPENDFILE if set to
"/dev/null" or anything starting with "no".

Ref: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223564

(sjg)

2020-10-25 17:12:51 UTC MAIN commitmail json YAML

make(1): add more details to DEBUG_SRC log

(rillig)

2020-10-25 17:01:05 UTC MAIN commitmail json YAML

make(1): reduce amount of string hashing

In pkgsrc, running "bmake show-all" in pkgtools/pkglint called the hash
function 249130 times before, and only 115502 times after.

Still, a single call to Var_Set hashes the same string 3 times.

(rillig)

2020-10-25 16:59:28 UTC MAIN commitmail json YAML

Unhook libglut (MesaGLUT) from the build.

The GL Utility Library was formerly a core part of most OpenGL
distributions.

Originally, this version of libglut was developed as part of Mesa (the
primary OpenGL implementation used in NetBSD) before it was mostly abandoned
and work moved to the freeglut fork. It provides a platform-neutral way of
creating OpenGL contexts, something that many other libraries can also do
today (e.g. SDL, glfw).

All users in pkgsrc have been switched to the freeglut fork and there are no
remaining users of this library in src. If having a GLUT implementation in
base turns out to be particularly useful outside of compatibility with
previous NetBSD versions, we can import freeglut (which, AFAIK, is also
ABI compatible with MesaGLUT).

(nia)

2020-10-25 16:39:00 UTC MAIN commitmail json YAML

Normalize some machine dependent CPU frequenct sysctl variables.

This moves machdep.*.frequency.* to machdep.cpu.frequency.*.

This was proposed on tech-kern some time ago. The intention is to allow
third-party tools such as estd and conky to more easily and reliably
fetch or modify the current CPU frequency without iterating through
various machine-dependent variables to check their presence.

(nia)

2020-10-25 16:18:02 UTC MAIN commitmail json YAML

make(1): clean up comments in .for handling

(rillig)

2020-10-25 16:15:48 UTC MAIN commitmail json YAML

make(1): use complete words in error message for .for loop

(rillig)

2020-10-25 16:14:08 UTC MAIN commitmail json YAML

make(1): extract code to see if a directive is a .for or .endfor

(rillig)

2020-10-25 15:58:04 UTC MAIN commitmail json YAML

make(1): rename local variable in For_Eval

(rillig)

2020-10-25 15:55:37 UTC MAIN commitmail json YAML

ptrace_Common is a module unto itself.  Don't use the ptrace module's
init/fini routines.

(pgoyette)

2020-10-25 15:49:03 UTC MAIN commitmail json YAML

2020-10-25 15:41:31 UTC MAIN commitmail json YAML

make(1): reduce memory allocation in .for loops

It was not necessary to allocate a new buffer for each iteration of the
.for loop.

(rillig)

2020-10-25 15:26:19 UTC MAIN commitmail json YAML

make(1): use Words instead of Vector for the .for items

This makes memory management a bit simpler and also more efficient.

(rillig)

2020-10-25 15:15:45 UTC MAIN commitmail json YAML

make(1): remove unnecessary type ForVar

Now that the escaping information is computed just-in-time, the item of
a .for loops is a simple string with no additional information.
Therefore, unwrap the struct.

(rillig)

2020-10-25 14:58:23 UTC MAIN commitmail json YAML

make(1): compute escaping flags for .for values when needed

Before, they were computed when parsing the .for line, which was
unnecessarily early.

(rillig)

2020-10-25 14:55:23 UTC MAIN commitmail json YAML

make(1): add test for escaping parentheses and braces in .for loops

(rillig)

2020-10-25 14:29:13 UTC MAIN commitmail json YAML

make(1): extract GetEscapes from For_Eval

(rillig)

2020-10-25 13:51:56 UTC MAIN commitmail json YAML

make(1): extract SubstVarShort from ForIterate

(rillig)

2020-10-25 13:45:33 UTC MAIN commitmail json YAML

make(1): extract SubstVarLong from ForIterate

(rillig)

2020-10-25 13:31:16 UTC MAIN commitmail json YAML

make(1): remove obsolete comment from lst.h

(rillig)

2020-10-25 13:25:19 UTC MAIN commitmail json YAML

2020-10-25 13:20:11 UTC MAIN commitmail json YAML

make(1): use Vector instead of strlist_t for expanding .for loops

strlist_t combines a string with an unsigned int.  This unsigned int had
been the string length for variables and the escaping flags for values.
This is another case of using generic types where specific types would
give more guidance to the reader.

Defining the types ForVar and ForItem expresses the involved concepts
more directly.

This is the last use of strlist_t, which will be removed in a follow-up
commit.

(rillig)

2020-10-25 13:06:12 UTC MAIN commitmail json YAML

make(1): replace PtrVector with Vector, which can contain any type

(rillig)

2020-10-25 12:08:53 UTC MAIN commitmail json YAML

make(1): rename type Vector to PtrVector

This allows the name Vector to be used for a more generic vector type,
which will be added soon.

(rillig)

2020-10-25 12:01:33 UTC MAIN commitmail json YAML

make(1): clean up code for handling .for loops

(rillig)

2020-10-25 10:07:23 UTC MAIN commitmail json YAML

2020-10-25 10:00:20 UTC MAIN commitmail json YAML

make(1): replace Dir_CopyDir with Dir_CopyDirSearchPath

Callback functions for the Lst functions do not belong in the public API
of a module.

(rillig)

2020-10-25 09:51:52 UTC MAIN commitmail json YAML

make(1): clean up Dir_HasWildcards

(rillig)

2020-10-25 09:46:25 UTC MAIN commitmail json YAML

make(1): add test for setting a variable in a GNode context

This edge case is probably not used widely.  The local variables of a
GNode should only ever be the predefined variables.

(rillig)

2020-10-25 09:30:46 UTC MAIN commitmail json YAML

make(1): clean up DirLookupSubdir and DirLookupAbs

As with cp2, the variable names p1 and p2 are not expressive.

(rillig)

2020-10-25 09:19:10 UTC MAIN commitmail json YAML

make(1): omit trailing space in debug output for expanding file patterns

(rillig)

2020-10-25 09:10:46 UTC MAIN commitmail json YAML

make(1): clean up documentation of DirExpandInt, rename it

The code in that function is so trivial that there is no point in
writing this much redundant documentation.

(rillig)

2020-10-25 09:06:24 UTC MAIN commitmail json YAML

Switch alpha to USE_XZ_SETS=no, i.e. using gzip for installation sets.

Ok'ed by martin@ in PR/55751.  Maybe worth to pullup to netbsd-9.

(tsutsui)

2020-10-25 09:03:05 UTC MAIN commitmail json YAML

make(1): document pattern matching edge case in DirMatchFiles

(rillig)

2020-10-25 08:59:26 UTC MAIN commitmail json YAML

make(1): refactor DirMatchFiles

Split the conditions since the comment only applies to one of them.
Use local variables for common subexpressions.

(rillig)

2020-10-25 08:50:32 UTC MAIN commitmail json YAML

Mark a variable only used in an assert as __diagused.

(martin)

2020-10-25 08:29:30 UTC MAIN commitmail json YAML

KASSERT -> KASSERTMSG

(skrll)

2020-10-25 08:18:39 UTC MAIN commitmail json YAML

l2tp: call if_link_state_change rather then directly setting it.

This allows protocols to do their thing.

(roy)

2020-10-25 08:15:54 UTC MAIN commitmail json YAML

l2tp: Revert prior

It proves I can't read comments and that if_initialize should not be used.

(roy)

2020-10-25 08:10:03 UTC MAIN commitmail json YAML

make(1): clean up documentation of DirExpandCurly and Dir_Expand

(rillig)

2020-10-25 07:59:09 UTC MAIN commitmail json YAML

make(1): document that the SearchPath of Dir_FindFile may be NULL

(rillig)

2020-10-25 07:57:01 UTC MAIN commitmail json YAML

make(1): make Arch_FindLib simpler

(rillig)

2020-10-25 07:46:54 UTC MAIN commitmail json YAML

Don't release the last reference to the "i2c-child-devices" dictionary in
the v210/v240 patches.
Fixes missing i2c devices there (pointed out by macallan@).
While here, add debug to show when we create the dictionary.

(jdc)

2020-10-25 07:46:05 UTC MAIN commitmail json YAML

make(1): remove unused parameter from DirFindDot

(rillig)

2020-10-25 07:44:16 UTC MAIN commitmail json YAML

make(1): rename parameter of DirLookup

The DirLookup functions work on "name", which may be a complete path,
and on "base" or "cp", which is the basename of the file.  Don't use
"name" for the basename, since that would be confusing.

(rillig)

2020-10-25 07:32:07 UTC MAIN commitmail json YAML

make(1): remove unused parameters from DirLookup

(rillig)

2020-10-25 07:27:06 UTC MAIN commitmail json YAML

make(1): only define OpenDirs_Done if necessary

(rillig)

2020-10-25 00:05:26 UTC MAIN commitmail json YAML

Handle PG_PAGEOUT in uvm_anon_release() too.

(chs)

2020-10-24 23:27:33 UTC MAIN commitmail json YAML

make(1): remove UNCONST from Dir_Expand

That code is called so seldom that one more memory allocation doesn't
hurt.  It needs a wildcard character in a dependency declaration, which
is rare in practice; see dep-wildcards.mk for an example.

(rillig)

2020-10-24 23:06:15 UTC MAIN commitmail json YAML

Now that we are adding the thread in the bsd_kvm_ops target namespace,
make sure that the inferior's top namespace is that too.

(christos)

2020-10-24 20:51:49 UTC MAIN commitmail json YAML

make(1): remove macros MIN and MAX

These macros typically evaluate one of their arguments twice.  Until
2020-08-31, they had not parenthesized their arguments properly.  They
are only used in a few places, therefore it doesn't hurt much to have
them expanded.

(rillig)

2020-10-24 20:29:40 UTC MAIN commitmail json YAML

make(1): convert macros for debug flags into enum

(rillig)

2020-10-24 16:13:15 UTC MAIN commitmail json YAML

When looking for available CD media, skip those that are already mounted.
When no medium with sets is found, show a new error message and return
to the source selection menu.
Rearrange all source option menus to have the proper set suffix
available (either .tgz or .tar.xz).

(martin)

2020-10-24 15:16:39 UTC MAIN commitmail json YAML

Add support for automatically changing the CPU fan speed on the E250 in a
similar way to the SB1000/SB2000.
The fan control information was determined by experiment, as it's only
partially available in OFW.
Hardcode the missing information for E250 fan control into the driver
(it should be possible to support the E450 in future too).

(jdc)

2020-10-24 14:51:59 UTC MAIN commitmail json YAML

Fix the logic around "parent is a subset and can be re-used" in
bus_dmatag_subregion.  Thanks to mrg@ for spotting the problem.

(skrll)

2020-10-24 14:45:06 UTC MAIN commitmail json YAML

2020-10-24 14:43:53 UTC MAIN commitmail json YAML

libossaudio: return newfd here as we return retval elsewhere

(roy)

2020-10-24 14:21:26 UTC MAIN commitmail json YAML

2020-10-24 13:47:53 UTC MAIN commitmail json YAML

Add E250 i2c devices missing from the OFW tree.
Normalise the spelling of "temperature".

(jdc)

2020-10-24 10:51:34 UTC MAIN commitmail json YAML

file systems that are used as what spools?

(nia)

2020-10-24 10:36:23 UTC MAIN commitmail json YAML

2020-10-24 10:32:25 UTC MAIN commitmail json YAML

make(1): inline Lst_Find in meta_oodate

(rillig)

2020-10-24 10:18:29 UTC MAIN commitmail json YAML

make(1): clean up comments in list functions

(rillig)

2020-10-24 10:17:21 UTC MAIN commitmail json YAML

make(1): make Lst_RemoveIf simpler in meta_oodate

Using Lst_Find and Lst_FindFrom to implement Lst_RemoveIf was a bad
idea.  It made the code much more complicated than necessary.  There is
no predefined Lst_RemoveIf, but that can be implemented easily.  By
inlining the list handling, path_match does not need void pointers
anymore.

Freeing the path from the missingFiles list had been implemented in a
surprisingly complicated way, intermangling it unnecessarily with the
list operations, even though these are completely independent.

(rillig)

2020-10-24 09:28:50 UTC MAIN commitmail json YAML

make(1): inline ReadMakefileFailed, eliminating some void pointers

(rillig)

2020-10-24 09:18:09 UTC MAIN commitmail json YAML

make(1): inline DirFindName

(rillig)

2020-10-24 09:03:54 UTC MAIN commitmail json YAML

make(1): clean up code in lst.c

(rillig)

2020-10-24 09:01:56 UTC MAIN commitmail json YAML

Fix compat with Linux programs that use longer namelen for sockets

Linux is less strict than NetBSD and permits namelen to be larger
than valid struct sockaddr_in*.  If this is the case, truncate the value
to the correct size, so that NetBSD networking does not return an error.

Reviewed by kamil

(mgorny)

2020-10-24 09:00:35 UTC MAIN commitmail json YAML

Use BUS_DMA_WAITOK in ld_virtio_alloc_reqs which is called at attached
time...

(skrll)

2020-10-24 08:57:06 UTC MAIN commitmail json YAML

Test the 64bit dma tag with BUS_DMA_TAG_VALID before using it.

(skrll)

2020-10-24 08:56:27 UTC MAIN commitmail json YAML

make(1): refactor LstNodeNew

(rillig)

2020-10-24 08:55:23 UTC MAIN commitmail json YAML

Fix DMA size reporting.  Previously it could report 64bit DMA when the tag
wasn't available (and it fell back to 32bit tag)

(skrll)

2020-10-24 08:50:17 UTC MAIN commitmail json YAML

2020-10-24 08:46:08 UTC MAIN commitmail json YAML

make(1): indent directives like .info, .if, .for consistently

Done by "pkglint -F *.mk", no manual corrections.

(rillig)

2020-10-24 08:34:59 UTC MAIN commitmail json YAML

2020-10-24 07:21:01 UTC MAIN commitmail json YAML

Use the 64bit DMA tag if its valid.

There appears to be a bug in virtio / ld_virtio and bounce buffers that
was triggered when the bus_dmatag_subregion code on arm64 was fixed to
correctly create a new tag for the 32bit tag vs the system (64bit) tag.
This change avoids the bug.

PR/55737: Apparent bug in evbarm64 DMA code causes filesystem corruption

(skrll)

2020-10-24 07:14:30 UTC MAIN commitmail json YAML

Issue 64-bit versions of *XSAVE* for 64-bit amd64 programs

When calling FXSAVE, XSAVE, FXRSTOR, ... for 64-bit programs on amd64
use the 64-suffixed variant in order to include the complete FIP/FDP
registers in the x87 area.

The difference between the two variants is that the FXSAVE64 (new)
variant represents FIP/FDP as 64-bit fields (union fp_addr.fa_64),
while the legacy FXSAVE variant uses split fields: 32-bit offset,
16-bit segment and 16-bit reserved field (union fp_addr.fa_32).
The latter implies that the actual addresses are truncated to 32 bits
which is insufficient in modern programs.

The change is applied only to 64-bit programs on amd64.  Plain i386
and compat32 continue using plain FXSAVE.  Similarly, NVMM is not
changed as I am not familiar with that code.

This is a potentially breaking change.  However, I don't think it likely
to actually break anything because the data provided by the old variant
were not meaningful (because of the truncated pointer).

(mgorny)

2020-10-24 07:08:22 UTC MAIN commitmail json YAML

2020-10-24 07:05:52 UTC MAIN commitmail json YAML

Add _UC_GREGS_* defines for all general registers

(skrll)

2020-10-24 07:03:12 UTC MAIN commitmail json YAML

Provide _UC_REGS_* defines for all registers

(skrll)

2020-10-24 07:03:01 UTC MAIN commitmail json YAML

Register the usr/share/gdb dir

(kamil)

2020-10-24 07:02:20 UTC MAIN commitmail json YAML

Update the unwinder comment to better reflect ARM64

(skrll)

2020-10-24 07:00:26 UTC MAIN commitmail json YAML

2020-10-24 05:01:58 UTC MAIN commitmail json YAML

2020-10-24 04:51:19 UTC MAIN commitmail json YAML

make(1): clean up comments in cond.c

(rillig)

2020-10-24 04:47:43 UTC MAIN commitmail json YAML

Add new tests and check files for libcurses from the Google Summoer of Code
project.

(blymn)

2020-10-24 04:46:17 UTC MAIN commitmail json YAML

Merge in code from Google Summer of Code project which dramatically
increases the number of tests performed.

Thanks to Naman Jain <jnaman806@gmail.com> for his excellent work on
this GSoC project.

(blymn)

2020-10-24 04:40:45 UTC MAIN commitmail json YAML

make(1): clean up code style in compat.c

(rillig)

2020-10-24 04:31:53 UTC MAIN commitmail json YAML

make(1): remove redundant parameter from meta_name

(rillig)

2020-10-24 04:27:24 UTC MAIN commitmail json YAML

make(1): clean up comments in buf.c

(rillig)

2020-10-24 04:20:50 UTC MAIN commitmail json YAML

make(1): clean up code layout in arch.c

Combining #ifdef with else if is bad style.  Mixing spaces and tabs in
indentation is bad style as well.

The generated code stays exactly the same.

(rillig)

2020-10-24 04:03:04 UTC MAIN commitmail json YAML

make(1): fix local variable name for determining the basename

(rillig)

2020-10-24 04:00:56 UTC MAIN commitmail json YAML

make(1): clean up comments and braces in arch.c

(rillig)

2020-10-24 03:48:09 UTC MAIN commitmail json YAML

make(1): make Arch_ParseArchive simpler

Neither '\0' nor ')' have ever been space characters.

(rillig)

2020-10-24 03:45:02 UTC MAIN commitmail json YAML

make(1): remove lengthy comments from archive handling

The relevant information is already documented on OP_ARCHV, but only
since a few weeks.

(rillig)

2020-10-24 03:30:26 UTC MAIN commitmail json YAML

make(1): don't modify GNode name while rebuilding the suffix graph

(rillig)

2020-10-24 03:18:22 UTC MAIN commitmail json YAML

make(1): extend test suff-lookup.mk

This test ensures that FindSuffByName behaves correctly.

In order to convert some char pointers to const char pointers, there
needs to be FindSuffByNameLen, and to make sure that this function
actually uses the given length, this test has the suffixes ".sho" and
".short".  Without the proper string comparison in FindSuffByNameLen,
the suffix ".short" might be found when searching for ".sho".

(rillig)

2020-10-24 03:01:19 UTC MAIN commitmail json YAML

make(1): improve local variable names in SuffFindThem

(rillig)

2020-10-24 02:25:02 UTC MAIN commitmail json YAML

2020-10-23 22:14:47 UTC MAIN commitmail json YAML

2020-10-23 20:15:20 UTC MAIN commitmail json YAML

make(1): improve variable names in SuffRebuildGraph

(rillig)

2020-10-23 20:14:50 UTC MAIN commitmail json YAML

make(1): fix typos in comments

(rillig)

2020-10-23 20:04:56 UTC MAIN commitmail json YAML

make(1): convert error level for Parse_Error to an enum

(rillig)

2020-10-23 19:54:35 UTC MAIN commitmail json YAML

2020-10-23 19:48:17 UTC MAIN commitmail json YAML

make(1): rename GNode.cmgn to youngestChild

The name is longer than before but also clearer.

(rillig)

2020-10-23 19:28:17 UTC MAIN commitmail json YAML

make(1): add test for .END depending on another target

(rillig)

2020-10-23 19:23:01 UTC MAIN commitmail json YAML

2020-10-23 19:11:30 UTC MAIN commitmail json YAML

2020-10-23 19:03:43 UTC MAIN commitmail json YAML

Do not force bootselector MBR code for installs with only a single named
partition.

(martin)

2020-10-23 19:02:58 UTC MAIN commitmail json YAML

Do not force alignment of the first partition by default (which is
treated special to skip the first track), unless an existing partition
table hints at it.

(martin)

2020-10-23 18:36:10 UTC MAIN commitmail json YAML

2020-10-23 18:10:39 UTC MAIN commitmail json YAML

make(1): merge duplicate documentation for OP_NOP

(rillig)

2020-10-23 18:05:35 UTC MAIN commitmail json YAML

make(1): only define TRUE and FALSE if necessary

For -DUSE_ENUM_BOOLEAN, the macros are not necessary.

(rillig)

2020-10-23 17:59:25 UTC MAIN commitmail json YAML

make(1): allow compilation with Boolean implemented as char

(rillig)

2020-10-23 17:53:07 UTC MAIN commitmail json YAML

Add missing prop_object_release() to the E250/E450 patches.
Use the recently added (in r1.2) functions for SPARCle i2c devices too.
Simplify adding "compatible" entries and handle cases where there is none.

(jdc)

2020-10-23 17:53:01 UTC MAIN commitmail json YAML

2020-10-23 17:21:22 UTC MAIN commitmail json YAML

make(1): add test for variable name aliasing

(rillig)

2020-10-23 17:05:40 UTC MAIN commitmail json YAML

make(1): rename Shell fields

Some of them should have been in an anonymous union, or should just kept
as separate fields.  There is only a small, fixed number of shells,
therefore it doesn't make sense to squeeze two completely separate
meanings into a single field just because that field happens to have a
fitting data type.

(rillig)

2020-10-23 16:45:34 UTC MAIN commitmail json YAML

make(1): describe the Shell fields by topic

Describing each field in isolation does not help to understand how these
fields work together.

(rillig)

2020-10-23 16:16:10 UTC MAIN commitmail json YAML

renice: Make usage match man page more.

(wiz)

2020-10-23 16:14:41 UTC MAIN commitmail json YAML

Fix macro use, sort.

(wiz)

2020-10-23 16:00:23 UTC MAIN commitmail json YAML

make(1): add field names in declaration of DEFSHELL_CUSTOM

(rillig)

2020-10-23 15:54:18 UTC MAIN commitmail json YAML

make(1): remove unused null shell

(rillig)

2020-10-23 15:44:38 UTC MAIN commitmail json YAML

make(1): add target-specific COPTS when generating cpre or casm

(rillig)

2020-10-23 15:19:51 UTC MAIN commitmail json YAML

make(1): decorate shell declarations with field names

Without these names, the declarations were hard to read, even though
they were already grouped into lines.  This grouping was inconsistent
though and the many string literals were hard to tell apart.

(rillig)

2020-10-23 15:18:10 UTC MAIN commitmail json YAML

Move E250 and E450 i2c patches from dev/pcfiic_ebus.c to sparc64/ofw_patch.c.
They are now co-located with the other OFW patch routines.
New i2c devices are created for E250/E450 and v210/v240, so create new
functions to avoid duplicate code.

(jdc)

2020-10-23 14:48:49 UTC MAIN commitmail json YAML

2020-10-23 14:38:39 UTC MAIN commitmail json YAML

make(1): move tests from cond2.mk to varmod-ifelse.mk (fixup)

(rillig)

2020-10-23 14:24:51 UTC MAIN commitmail json YAML

2020-10-23 13:38:17 UTC MAIN commitmail json YAML

make(1): move comment in Var_Set_with_flags

Until 2000-05-11, that comment was just above a VarFind call.  20 years
later, it is back again where it belongs.

(rillig)

2020-10-23 12:13:04 UTC MAIN commitmail json YAML

Fix typo in comment.

(wiz)

2020-10-23 11:00:09 UTC MAIN commitmail json YAML

Use MI acpi_intr_establish_irq instead of MD intr_establish

(jmcneill)

2020-10-23 10:59:37 UTC MAIN commitmail json YAML

Add acpi_intr_establish_irq, which is like acpi_intr_establish except
it takes a struct acpi_irq * instead of ACPI_HANDLE. Useful if a device
has more than one IRQ resource (acpi_intr_establish always picks the
first).

(jmcneill)

2020-10-23 09:05:20 UTC MAIN commitmail json YAML

ossaudio(3): Add an implementation of SNDCTL_CARDINFO

Correct some of the counts returned by SNDCTL_SYSINFO so this works.

(nia)

2020-10-23 08:41:00 UTC netbsd-9 commitmail json YAML

Ammend ticket #1118 and note release doc changes.

(martin)

2020-10-23 08:37:06 UTC netbsd-9 commitmail json YAML

Pull up following revision(s) (requested by maya in ticket #1118):

external/mit/xorg/lib/freetype/freetype/config/Makefile: revision 1.4

Build fixes for freetype 2.10.4

(martin)

2020-10-23 08:32:27 UTC netbsd-9 commitmail json YAML

Comment out (and fix typo in) dedication for 9.0 release

(martin)

2020-10-23 07:14:32 UTC MAIN commitmail json YAML

make(1): convert JobState and JobFlags to enum types

Both GCC and Clang complained when JobFindPid had its parameter "status"
as an int.  Strangely both compilers complained about a comparison
between unsigned and signed int, even though enums are defined to be
int, not unsigned.

(rillig)

2020-10-23 06:57:41 UTC MAIN commitmail json YAML

make(1): inline CondFindStrMatch into FuncMake

(rillig)

2020-10-23 06:27:39 UTC MAIN commitmail json YAML

make(1): remove void pointers from addErrorCMD

(rillig)

2020-10-23 06:18:23 UTC MAIN commitmail json YAML

2020-10-23 05:44:02 UTC MAIN commitmail json YAML

2020-10-23 05:27:33 UTC MAIN commitmail json YAML

make(1): move handling of the "..." command to JobPrintCommands

Over there, the current list node is known and thus doesn't need to be
searched again.

(rillig)

2020-10-23 05:18:19 UTC MAIN commitmail json YAML

make(1): remove void pointers from JobPrintCommand

(rillig)

2020-10-23 04:58:33 UTC MAIN commitmail json YAML

make(1): remove Lst_ForEachUntilConcurrent

The remaining callers of that function don't modify the list
structurally and thus can use the simpler Lst_ForEachUntil instead.

(rillig)

2020-10-23 00:25:45 UTC MAIN commitmail json YAML

- sleepq_block(): Add a new LWP flag, LW_CATCHINTR, that is used to track
  the intent to catch signals while sleeping.  Initialize this flag based
  on the catch_p argument to sleepq_block(), and rather than test catch_p
  when awakened, test LW_CATCHINTR.  This allows the intent to change
  (based on whatever criteria the owner of the sleepq wishes) while the
  LWP is asleep.  This is separate from LW_SINTR in order to leave all
  other logic around LW_SINTR unaffected.
- In sleepq_transfer(), adjust also LW_CATCHINTR based on the catch_p
  argument.  Also allow the new LWP lock argument to be NULL, which
  will cause the lwp_setlock() call to be skipped; this allows transfer
  to another sleepq that is known to be protected by the same lock.
- Add a new function, sleepq_uncatch(), that will transition an LWP
  from "interruptible sleep" to "uninterruptible sleep" on its current
  sleepq.

(thorpej)

2020-10-22 21:53:01 UTC MAIN commitmail json YAML

make(1): fix MakePrintStatusList

The current unit tests don't cover a situation where there are more than
100 errors reported at once.  This fixes the bug introduced in the
previous commit, a few minutes ago.

(rillig)

2020-10-22 21:49:44 UTC MAIN commitmail json YAML

make(1): remove void pointers from MakePrintStatus

(rillig)

2020-10-22 21:43:56 UTC MAIN commitmail json YAML

make(1): remove void pointers from MakePrintStatusOrder

(rillig)

2020-10-22 21:27:24 UTC MAIN commitmail json YAML

make(1): add Lst_ForEachUntilConcurrent

Previously, Lst_ForEachUntil allowed the list to be modified while
iterating.  Almost none of the code needs this, and it's also confusing
for human readers.

None of the current unit tests makes use of this concurrent modification
right now, but that's not evidence enough.  Only 72% of the code are
covered by unit tests right now, and there are lots of edge cases
(whether intended or not) that are not covered by unit tests.

Therefore, all calls to Lst_ForEachUntil were changed to
Lst_ForEachUntilConcurrent and those that were obvious were changed
back.  The remaining calls probably don't need the concurrent
modification code, but that's not obvious from looking at the code.

(rillig)

2020-10-22 20:47:23 UTC MAIN commitmail json YAML

2020-10-22 20:18:20 UTC MAIN commitmail json YAML

make(1): remove Lst_Open, Lst_Next, Lst_Close

These functions had made the Lst data type more complicated and hard to
understand than necessary.  This additional complexity was not needed in
the vast majority of the cases.

(rillig)

2020-10-22 20:13:02 UTC MAIN commitmail json YAML

Rework the description of process priorities in renice(8).

It is inherently confusing, thanks to historical practice and
standards, so let's be very explicit.

(dholland)

2020-10-22 20:09:07 UTC MAIN commitmail json YAML

make(1): replace Lst_Open with simple iteration in Make_ProcessWait

(rillig)

2020-10-22 20:00:13 UTC MAIN commitmail json YAML

make(1): replace Lst_Open with simple iteration in Make_Update

(rillig)

2020-10-22 19:55:14 UTC MAIN commitmail json YAML

Rearrange the description of the renice arguments and options.

Don't refer to "who" parameters that aren't defined anywhere, make it
clear how the options are actually interpreted (since it's not and
can't be getopt-style), and also document the behavior when a named
collection of processes doesn't start out with uniform priority.

The dangling "who" parameters issue seems to date back to 4.4.

Prompted by Ottavio Caruso.

(dholland)

2020-10-22 19:39:48 UTC MAIN commitmail json YAML

ossaudio(3): This is not compat_linux

(nia)

2020-10-22 19:34:12 UTC MAIN commitmail json YAML

Fix usage check; reject renice without any targets, whether or not -n given.

(dholland)

2020-10-22 19:30:37 UTC MAIN commitmail json YAML

make(1): replace Lst_Open with simple iteration in SuffFindCmds

Again, no concurrent modification nearby.

(rillig)

2020-10-22 19:14:06 UTC MAIN commitmail json YAML

make(1): remove code for circular lists from Lst_Next

Since make does not use circular lists, they have been removed from the
list library a few weeks ago.

(rillig)

2020-10-22 19:05:24 UTC MAIN commitmail json YAML

make(1): rename local variables in SuffFindCmds

Several types have fields named "parents" and "children", which makes an
expression like s->children ambiguous.

(rillig)

2020-10-22 18:59:12 UTC MAIN commitmail json YAML

make(1): migrate Lst_Open to simple iteration in SuffRemoveSrc

During the iteration, the list is modified.  But after the modification,
the iteration stops by returning, therefore the additional complexity of
Lst_Open is not needed in this case.

(rillig)

2020-10-22 17:29:33 UTC MAIN commitmail json YAML

make(1): extract UpdateImplicitParentsVars from Make_Update

(rillig)

2020-10-22 17:20:35 UTC MAIN commitmail json YAML

make(1): replace Lst_Open with simple iteration in Make_Update

This iteration is safe from concurrent modification.

(rillig)

2020-10-22 11:33:29 UTC netbsd-8 commitmail json YAML

2020-10-22 11:31:16 UTC netbsd-8 commitmail json YAML

Apply patch, requested by maya and mrg in ticket #1618:

xsrc/external/mit/freetype/dist/src/sfnt/pngshim.c (apply patch)

Fix for CVE-2020-15999.

(martin)

2020-10-22 11:28:41 UTC netbsd-9 commitmail json YAML

2020-10-22 11:26:42 UTC netbsd-9 commitmail json YAML

Apply patch, requested by maya in ticket #1118:

distrib/sets/lists/xcomp/mi (patch)

Update for freetype 2.10.4.

(martin)

2020-10-22 11:25:36 UTC netbsd-9 commitmail json YAML

xsrc/external/mit/freetype/dist/.ChangeLog.swp@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
xsrc/external/mit/freetype/dist/.clang-format@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
xsrc/external/mit/freetype/dist/CMakeLists.txt@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/ChangeLog@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/ChangeLog.20@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/ChangeLog.21@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/ChangeLog.22@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/ChangeLog.23@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/ChangeLog.24@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/ChangeLog.25@1.1.1.3.2.1 / diff / nxr@1.1.1.3.2.1
xsrc/external/mit/freetype/dist/ChangeLog.26@1.1.1.2.2.1 / diff / nxr@1.1.1.2.2.1
xsrc/external/mit/freetype/dist/ChangeLog.27@1.1.1.2.2.1 / diff / nxr@1.1.1.2.2.1
xsrc/external/mit/freetype/dist/ChangeLog.28@1.1.1.2.2.1 / diff / nxr@1.1.1.2.2.1
xsrc/external/mit/freetype/dist/ChangeLog.29@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
xsrc/external/mit/freetype/dist/Jamfile deleted
xsrc/external/mit/freetype/dist/Jamrules deleted
xsrc/external/mit/freetype/dist/Makefile@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/README@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/README.git@1.4.2.1 / diff / nxr@1.4.2.1
xsrc/external/mit/freetype/dist/autogen.sh@1.4.2.1 / diff / nxr@1.4.2.1
      :
(more 831 files)
Pull up the following, requested by maya in ticket #1118:

external/mit/freetype/dist/builds/unix/ftconfig.h.in up to 1.1.1.1
external/mit/freetype/dist/builds/unix/ax_compare_version.m4 up to 1.1.1.1
external/mit/freetype/dist/builds/unix/ax_prog_python_version.m4 up to 1.1.1.1
external/mit/freetype/dist/builds/vms/LIBS.OPT_IA64 up to 1.1.1.1
external/mit/freetype/dist/builds/vms/_LINK.OPT_IA64 up to 1.1.1.1
external/mit/freetype/dist/builds/vms/vmslib.dat up to 1.1.1.1
external/mit/freetype/dist/builds/cmake/FindBrotliDec.cmake up to 1.1.1.1
external/mit/freetype/dist/builds/meson/extract_freetype_version.py up to 1.1.1.1
external/mit/freetype/dist/builds/meson/extract_libtool_version.py up to 1.1.1.1
external/mit/freetype/dist/builds/meson/generate_reference_docs.py up to 1.1.1.1
external/mit/freetype/dist/builds/meson/parse_modules_cfg.py up to 1.1.1.1
external/mit/freetype/dist/builds/meson/process_ftoption_h.py up to 1.1.1.1
external/mit/freetype/dist/docs/reference/ft2-auto_hinter.html up to 1.5
external/mit/freetype/dist/docs/reference/404.html up to 1.1.1.1
external/mit/freetype/dist/docs/reference/ft2-base_interface.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-basic_types.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-bdf_fonts.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-bitmap_handling.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-bzip2.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-cache_subsystem.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-cff_driver.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-cid_fonts.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-color_management.html up to 1.1.1.1
external/mit/freetype/dist/docs/reference/ft2-computations.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-error_code_values.html up to 1.3
external/mit/freetype/dist/docs/reference/ft2-error_enumerations.html up to 1.3
external/mit/freetype/dist/docs/reference/ft2-font_formats.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-gasp_table.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-glyph_management.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-glyph_stroker.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-glyph_variants.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-gx_validation.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-gzip.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-header_file_macros.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-header_inclusion.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-incremental.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-index.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-layer_management.html up to 1.1.1.1
external/mit/freetype/dist/docs/reference/ft2-lcd_rendering.html up to 1.1.1.1
external/mit/freetype/dist/docs/reference/ft2-list_processing.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-lzw.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-mac_specific.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-module_management.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-multiple_masters.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-ot_validation.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-outline_processing.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-parameter_tags.html up to 1.3
external/mit/freetype/dist/docs/reference/ft2-pcf_driver.html up to 1.3
external/mit/freetype/dist/docs/reference/ft2-pfr_fonts.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-properties.html up to 1.3
external/mit/freetype/dist/docs/reference/ft2-quick_advance.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-raster.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-sfnt_names.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-sizes_management.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-system_interface.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-t1_cid_driver.html up to 1.3
external/mit/freetype/dist/docs/reference/ft2-truetype_engine.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-tt_driver.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-truetype_tables.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-type1_tables.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-user_allocation.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-version.html up to 1.5
external/mit/freetype/dist/docs/reference/ft2-winfnt_fonts.html up to 1.5
external/mit/freetype/dist/docs/reference/index.html up to 1.1.1.1
external/mit/freetype/dist/docs/reference/sitemap.xml up to 1.1.1.1
external/mit/freetype/dist/docs/reference/sitemap.xml.gz up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/fonts/specimen/FontAwesome.ttf up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/fonts/specimen/FontAwesome.woff up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/fonts/specimen/FontAwesome.woff2 up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/fonts/specimen/MaterialIcons-Regular.ttf up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/fonts/specimen/MaterialIcons-Regular.woff up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/fonts/specimen/MaterialIcons-Regular.woff2 up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/fonts/font-awesome.css up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/fonts/material-icons.css up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/images/icons/bitbucket.1b09e088.svg up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/images/icons/github.f0b8504a.svg up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/images/icons/gitlab.6dd19c00.svg up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/images/favicon.png up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.ar.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.da.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.de.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.du.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.es.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.fi.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.fr.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.hu.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.it.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.ja.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.jp.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.multi.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.nl.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.no.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.pt.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.ro.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.ru.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.stemmer.support.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.sv.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.th.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.tr.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/lunr.vi.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/tinyseg.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/wordcut.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/application.c33a9706.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/javascripts/modernizr.86422ebf.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/stylesheets/application-palette.a8b3c06d.css up to 1.1.1.1
external/mit/freetype/dist/docs/reference/assets/stylesheets/application.adb8469c.css up to 1.1.1.1
external/mit/freetype/dist/docs/reference/images/favico.ico up to 1.1.1.1
external/mit/freetype/dist/docs/reference/javascripts/extra.js up to 1.1.1.1
external/mit/freetype/dist/docs/reference/search/search_index.json up to 1.1.1.1
external/mit/freetype/dist/docs/reference/stylesheets/extra.css up to 1.1.1.1
external/mit/freetype/dist/docs/README          up to 1.1.1.1
external/mit/freetype/dist/include/freetype/config/integer-types.h up to 1.1.1.1
external/mit/freetype/dist/include/freetype/config/mac-support.h up to 1.1.1.1
external/mit/freetype/dist/include/freetype/config/public-macros.h up to 1.1.1.1
external/mit/freetype/dist/include/freetype/internal/wofftypes.h up to 1.1.1.1
external/mit/freetype/dist/include/freetype/internal/compiler-macros.h up to 1.1.1.1
external/mit/freetype/dist/src/sfnt/sfwoff.c    up to 1.1.1.1
external/mit/freetype/dist/src/sfnt/sfwoff.h    up to 1.1.1.1
external/mit/freetype/dist/src/sfnt/sfwoff2.c  up to 1.1.1.1
external/mit/freetype/dist/src/sfnt/sfwoff2.h  up to 1.1.1.1
external/mit/freetype/dist/src/sfnt/woff2tags.c up to 1.1.1.1
external/mit/freetype/dist/src/sfnt/woff2tags.h up to 1.1.1.1
external/mit/freetype/dist/src/tools/make_distribution_archives.py up to 1.1.1.1
external/mit/freetype/dist/meson.build          up to 1.1.1.1
external/mit/freetype/dist/.ChangeLog.swp      up to 1.1.1.1
external/mit/freetype/dist/.clang-format        up to 1.1.1.1
external/mit/freetype/dist/ChangeLog.29        up to 1.1.1.1
external/mit/freetype/dist/meson_options.txt    up to 1.1.1.1
external/mit/freetype/dist/builds/unix/ftconfig.in delete
external/mit/freetype/dist/Jamfile              delete
external/mit/freetype/dist/Jamrules            delete
external/mit/freetype/dist/docs/reference/site/assets/fonts/specimen/FontAwesome.ttf delete
external/mit/freetype/dist/docs/reference/site/assets/fonts/specimen/FontAwesome.woff delete
external/mit/freetype/dist/docs/reference/site/assets/fonts/specimen/FontAwesome.woff2 delete
external/mit/freetype/dist/docs/reference/site/assets/fonts/specimen/MaterialIcons-Regular.ttf delete
external/mit/freetype/dist/docs/reference/site/assets/fonts/specimen/MaterialIcons-Regular.woff delete
external/mit/freetype/dist/docs/reference/site/assets/fonts/specimen/MaterialIcons-Regular.woff2 delete
external/mit/freetype/dist/docs/reference/site/assets/fonts/font-awesome.css delete
external/mit/freetype/dist/docs/reference/site/assets/fonts/material-icons.css delete
external/mit/freetype/dist/docs/reference/site/assets/images/icons/bitbucket.1b09e088.svg delete
external/mit/freetype/dist/docs/reference/site/assets/images/icons/github.f0b8504a.svg delete
external/mit/freetype/dist/docs/reference/site/assets/images/icons/gitlab.6dd19c00.svg delete
external/mit/freetype/dist/docs/reference/site/assets/images/favicon.png delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.da.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.de.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.du.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.es.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.fi.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.fr.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.hu.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.it.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.ja.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.jp.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.multi.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.nl.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.no.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.pt.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.ro.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.ru.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.stemmer.support.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.sv.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.th.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/lunr.tr.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/tinyseg.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/lunr/wordcut.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/application.d9aa80ab.js delete
external/mit/freetype/dist/docs/reference/site/assets/javascripts/modernizr.1f0bcf2b.js delete
external/mit/freetype/dist/docs/reference/site/assets/stylesheets/application-palette.224b79ff.css delete
external/mit/freetype/dist/docs/reference/site/assets/stylesheets/application.982221ab.css delete
external/mit/freetype/dist/docs/reference/site/404.html delete
external/mit/freetype/dist/docs/reference/site/ft2-auto_hinter.html delete
external/mit/freetype/dist/docs/reference/site/ft2-base_interface.html delete
external/mit/freetype/dist/docs/reference/site/ft2-basic_types.html delete
external/mit/freetype/dist/docs/reference/site/ft2-bdf_fonts.html delete
external/mit/freetype/dist/docs/reference/site/ft2-bitmap_handling.html delete
external/mit/freetype/dist/docs/reference/site/ft2-bzip2.html delete
external/mit/freetype/dist/docs/reference/site/ft2-cache_subsystem.html delete
external/mit/freetype/dist/docs/reference/site/ft2-cff_driver.html delete
external/mit/freetype/dist/docs/reference/site/ft2-cid_fonts.html delete
external/mit/freetype/dist/docs/reference/site/ft2-color_management.html delete
external/mit/freetype/dist/docs/reference/site/ft2-computations.html delete
external/mit/freetype/dist/docs/reference/site/ft2-error_code_values.html delete
external/mit/freetype/dist/docs/reference/site/ft2-error_enumerations.html delete
external/mit/freetype/dist/docs/reference/site/images/favico.ico delete
external/mit/freetype/dist/docs/reference/site/ft2-font_formats.html delete
external/mit/freetype/dist/docs/reference/site/ft2-gasp_table.html delete
external/mit/freetype/dist/docs/reference/site/ft2-glyph_management.html delete
external/mit/freetype/dist/docs/reference/site/ft2-glyph_stroker.html delete
external/mit/freetype/dist/docs/reference/site/ft2-glyph_variants.html delete
external/mit/freetype/dist/docs/reference/site/ft2-gx_validation.html delete
external/mit/freetype/dist/docs/reference/site/ft2-gzip.html delete
external/mit/freetype/dist/docs/reference/site/ft2-header_file_macros.html delete
external/mit/freetype/dist/docs/reference/site/ft2-header_inclusion.html delete
external/mit/freetype/dist/docs/reference/site/ft2-incremental.html delete
external/mit/freetype/dist/docs/reference/site/ft2-index.html delete
external/mit/freetype/dist/docs/reference/site/ft2-layer_management.html delete
external/mit/freetype/dist/docs/reference/site/ft2-lcd_rendering.html delete
external/mit/freetype/dist/docs/reference/site/ft2-list_processing.html delete
external/mit/freetype/dist/docs/reference/site/ft2-lzw.html delete
external/mit/freetype/dist/docs/reference/site/ft2-mac_specific.html delete
external/mit/freetype/dist/docs/reference/site/ft2-module_management.html delete
external/mit/freetype/dist/docs/reference/site/ft2-multiple_masters.html delete
external/mit/freetype/dist/docs/reference/site/ft2-ot_validation.html delete
external/mit/freetype/dist/docs/reference/site/ft2-outline_processing.html delete
external/mit/freetype/dist/docs/reference/site/ft2-parameter_tags.html delete
external/mit/freetype/dist/docs/reference/site/ft2-pcf_driver.html delete
external/mit/freetype/dist/docs/reference/site/ft2-pfr_fonts.html delete
external/mit/freetype/dist/docs/reference/site/ft2-properties.html delete
external/mit/freetype/dist/docs/reference/site/ft2-quick_advance.html delete
external/mit/freetype/dist/docs/reference/site/ft2-raster.html delete
external/mit/freetype/dist/docs/reference/site/ft2-sfnt_names.html delete
external/mit/freetype/dist/docs/reference/site/ft2-sizes_management.html delete
external/mit/freetype/dist/docs/reference/site/ft2-system_interface.html delete
external/mit/freetype/dist/docs/reference/site/ft2-t1_cid_driver.html delete
external/mit/freetype/dist/docs/reference/site/ft2-truetype_engine.html delete
external/mit/freetype/dist/docs/reference/site/ft2-tt_driver.html delete
external/mit/freetype/dist/docs/reference/site/ft2-truetype_tables.html delete
external/mit/freetype/dist/docs/reference/site/ft2-type1_tables.html delete
external/mit/freetype/dist/docs/reference/site/ft2-user_allocation.html delete
external/mit/freetype/dist/docs/reference/site/ft2-version.html delete
external/mit/freetype/dist/docs/reference/site/ft2-winfnt_fonts.html delete
external/mit/freetype/dist/docs/reference/site/index.html delete
external/mit/freetype/dist/docs/reference/site/sitemap.xml delete
external/mit/freetype/dist/docs/reference/site/sitemap.xml.gz delete
external/mit/freetype/dist/docs/reference/site/javascripts/extra.js delete
external/mit/freetype/dist/docs/reference/site/search/search_index.json delete
external/mit/freetype/dist/docs/reference/site/stylesheets/extra.css delete
external/mit/freetype/dist/docs/reference/README delete
external/mit/freetype/dist/include/freetype/internal/internal.h delete
external/mit/freetype/dist/src/Jamfile          delete
external/mit/freetype/dist/src/autofit/Jamfile  delete
external/mit/freetype/dist/src/base/Jamfile    delete
external/mit/freetype/dist/src/bdf/Jamfile      delete
external/mit/freetype/dist/src/bzip2/Jamfile    delete
external/mit/freetype/dist/src/cache/Jamfile    delete
external/mit/freetype/dist/src/cff/Jamfile      delete
external/mit/freetype/dist/src/cid/Jamfile      delete
external/mit/freetype/dist/src/gxvalid/Jamfile  delete
external/mit/freetype/dist/src/gzip/Jamfile    delete
external/mit/freetype/dist/src/lzw/Jamfile      delete
external/mit/freetype/dist/src/otvalid/Jamfile  delete
external/mit/freetype/dist/src/pcf/Jamfile      delete
external/mit/freetype/dist/src/pfr/Jamfile      delete
external/mit/freetype/dist/src/psaux/Jamfile    delete
external/mit/freetype/dist/src/pshinter/Jamfile delete
external/mit/freetype/dist/src/psnames/Jamfile  delete
external/mit/freetype/dist/src/raster/Jamfile  delete
external/mit/freetype/dist/src/sfnt/Jamfile    delete
external/mit/freetype/dist/src/smooth/Jamfile  delete
external/mit/freetype/dist/src/tools/Jamfile    delete
external/mit/freetype/dist/src/truetype/Jamfile delete
external/mit/freetype/dist/src/type1/Jamfile    delete
external/mit/freetype/dist/src/type42/Jamfile  delete
external/mit/freetype/dist/src/winfonts/Jamfile delete
external/mit/freetype/dist/CMakeLists.txt      up to 1.5
external/mit/freetype/dist/ChangeLog            up to 1.5
external/mit/freetype/dist/ChangeLog.20        up to 1.5
external/mit/freetype/dist/ChangeLog.21        up to 1.5
external/mit/freetype/dist/ChangeLog.22        up to 1.5
external/mit/freetype/dist/ChangeLog.23        up to 1.5
external/mit/freetype/dist/ChangeLog.24        up to 1.5
external/mit/freetype/dist/ChangeLog.25        up to 1.1.1.4
external/mit/freetype/dist/ChangeLog.26        up to 1.1.1.3
external/mit/freetype/dist/ChangeLog.27        up to 1.1.1.3
external/mit/freetype/dist/ChangeLog.28        up to 1.1.1.3
external/mit/freetype/dist/Makefile            up to 1.5
external/mit/freetype/dist/README              up to 1.5
external/mit/freetype/dist/README.git          up to 1.5
external/mit/freetype/dist/autogen.sh          up to 1.5
external/mit/freetype/dist/configure            up to 1.5
external/mit/freetype/dist/modules.cfg          up to 1.5
external/mit/freetype/dist/vms_make.com        up to 1.5
external/mit/freetype/dist/builds/detect.mk    up to 1.5
external/mit/freetype/dist/builds/exports.mk    up to 1.5
external/mit/freetype/dist/builds/freetype.mk  up to 1.5
external/mit/freetype/dist/builds/link_dos.mk  up to 1.5
external/mit/freetype/dist/builds/link_std.mk  up to 1.5
external/mit/freetype/dist/builds/modules.mk    up to 1.5
external/mit/freetype/dist/builds/toplevel.mk  up to 1.5
external/mit/freetype/dist/builds/amiga/README  up to 1.5
external/mit/freetype/dist/builds/amiga/makefile up to 1.5
external/mit/freetype/dist/builds/amiga/makefile.os4 up to 1.5
external/mit/freetype/dist/builds/amiga/smakefile up to 1.5
external/mit/freetype/dist/builds/amiga/include/config/ftconfig.h up to 1.5
external/mit/freetype/dist/builds/amiga/include/config/ftmodule.h up to 1.5
external/mit/freetype/dist/builds/amiga/src/base/ftdebug.c up to 1.5
external/mit/freetype/dist/builds/amiga/src/base/ftsystem.c up to 1.5
external/mit/freetype/dist/builds/ansi/ansi-def.mk up to 1.5
external/mit/freetype/dist/builds/ansi/ansi.mk  up to 1.5
external/mit/freetype/dist/builds/beos/beos-def.mk up to 1.5
external/mit/freetype/dist/builds/beos/beos.mk  up to 1.5
external/mit/freetype/dist/builds/beos/detect.mk up to 1.5
external/mit/freetype/dist/builds/cmake/FindHarfBuzz.cmake up to 1.1.1.3
external/mit/freetype/dist/builds/cmake/iOS.cmake up to 1.5
external/mit/freetype/dist/builds/cmake/testbuild.sh up to 1.1.1.4
external/mit/freetype/dist/builds/compiler/ansi-cc.mk up to 1.5
external/mit/freetype/dist/builds/compiler/bcc-dev.mk up to 1.5
external/mit/freetype/dist/builds/compiler/bcc.mk up to 1.5
external/mit/freetype/dist/builds/compiler/emx.mk up to 1.5
external/mit/freetype/dist/builds/compiler/gcc-dev.mk up to 1.5
external/mit/freetype/dist/builds/compiler/gcc.mk up to 1.5
external/mit/freetype/dist/builds/compiler/intelc.mk up to 1.5
external/mit/freetype/dist/builds/compiler/unix-lcc.mk up to 1.5
external/mit/freetype/dist/builds/compiler/visualage.mk up to 1.5
external/mit/freetype/dist/builds/compiler/visualc.mk up to 1.5
external/mit/freetype/dist/builds/compiler/watcom.mk up to 1.5
external/mit/freetype/dist/builds/compiler/win-lcc.mk up to 1.5
external/mit/freetype/dist/builds/dos/detect.mk up to 1.5
external/mit/freetype/dist/builds/dos/dos-def.mk up to 1.5
external/mit/freetype/dist/builds/dos/dos-emx.mk up to 1.5
external/mit/freetype/dist/builds/dos/dos-gcc.mk up to 1.5
external/mit/freetype/dist/builds/dos/dos-wat.mk up to 1.5
external/mit/freetype/dist/builds/mac/ftmac.c  up to 1.5
external/mit/freetype/dist/builds/os2/detect.mk up to 1.5
external/mit/freetype/dist/builds/os2/os2-def.mk up to 1.5
external/mit/freetype/dist/builds/os2/os2-dev.mk up to 1.5
external/mit/freetype/dist/builds/os2/os2-gcc.mk up to 1.5
external/mit/freetype/dist/builds/symbian/bld.inf up to 1.5
external/mit/freetype/dist/builds/symbian/freetype.mmp up to 1.5
external/mit/freetype/dist/builds/unix/aclocal.m4 up to 1.4
external/mit/freetype/dist/builds/unix/config.guess up to 1.5
external/mit/freetype/dist/builds/unix/config.sub up to 1.5
external/mit/freetype/dist/builds/unix/configure up to 1.5
external/mit/freetype/dist/builds/unix/configure.ac up to 1.5
external/mit/freetype/dist/builds/unix/configure.raw up to 1.5
external/mit/freetype/dist/builds/unix/detect.mk up to 1.5
external/mit/freetype/dist/builds/unix/freetype-config.in up to 1.13
external/mit/freetype/dist/builds/unix/freetype2.m4 up to 1.5
external/mit/freetype/dist/builds/unix/ft-munmap.m4 up to 1.5
external/mit/freetype/dist/builds/unix/ftsystem.c up to 1.5
external/mit/freetype/dist/builds/unix/install.mk up to 1.5
external/mit/freetype/dist/builds/unix/unix-cc.in up to 1.5
external/mit/freetype/dist/builds/unix/unix-def.in up to 1.5
external/mit/freetype/dist/builds/unix/unix-dev.mk up to 1.5
external/mit/freetype/dist/builds/unix/unix-lcc.mk up to 1.5
external/mit/freetype/dist/builds/unix/unix.mk  up to 1.5
external/mit/freetype/dist/builds/unix/unixddef.mk up to 1.5
external/mit/freetype/dist/builds/vms/ftconfig.h up to 1.5
external/mit/freetype/dist/builds/vms/ftsystem.c up to 1.5
external/mit/freetype/dist/builds/wince/ftdebug.c up to 1.5
external/mit/freetype/dist/builds/wince/vc2005-ce/freetype.vcproj up to 1.5
external/mit/freetype/dist/builds/wince/vc2005-ce/index.html up to 1.5
external/mit/freetype/dist/builds/wince/vc2008-ce/freetype.vcproj up to 1.5
external/mit/freetype/dist/builds/wince/vc2008-ce/index.html up to 1.5
external/mit/freetype/dist/builds/windows/detect.mk up to 1.5
external/mit/freetype/dist/builds/windows/ftdebug.c up to 1.5
external/mit/freetype/dist/builds/windows/w32-bcc.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-bccd.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-dev.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-gcc.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-icc.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-intl.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-lcc.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-mingw32.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-vcc.mk up to 1.5
external/mit/freetype/dist/builds/windows/w32-wat.mk up to 1.5
external/mit/freetype/dist/builds/windows/win32-def.mk up to 1.5
external/mit/freetype/dist/builds/windows/vc2010/index.html up to 1.5
external/mit/freetype/dist/builds/windows/visualc/freetype.vcproj up to 1.5
external/mit/freetype/dist/builds/windows/visualc/index.html up to 1.5
external/mit/freetype/dist/builds/windows/visualce/freetype.dsp up to 1.5
external/mit/freetype/dist/builds/windows/visualce/freetype.vcproj up to 1.5
external/mit/freetype/dist/builds/windows/visualce/index.html up to 1.5
external/mit/freetype/dist/devel/ft2build.h    up to 1.5
external/mit/freetype/dist/devel/ftoption.h    up to 1.5
external/mit/freetype/dist/docs/CHANGES        up to 1.5
external/mit/freetype/dist/docs/CUSTOMIZE      up to 1.5
external/mit/freetype/dist/docs/DEBUG          up to 1.5
external/mit/freetype/dist/docs/DOCGUIDE        up to 1.1.1.2
external/mit/freetype/dist/docs/INSTALL        up to 1.5
external/mit/freetype/dist/docs/INSTALL.ANY    up to 1.5
external/mit/freetype/dist/docs/INSTALL.CROSS  up to 1.5
external/mit/freetype/dist/docs/INSTALL.GNU    up to 1.5
external/mit/freetype/dist/docs/INSTALL.UNIX    up to 1.5
external/mit/freetype/dist/docs/INSTALL.VMS    up to 1.5
external/mit/freetype/dist/docs/TODO            up to 1.5
external/mit/freetype/dist/docs/VERSIONS.TXT    up to 1.1.1.3
external/mit/freetype/dist/docs/formats.txt    up to 1.5
external/mit/freetype/dist/docs/freetype-config.1 up to 1.5
external/mit/freetype/dist/docs/raster.txt      up to 1.5
external/mit/freetype/dist/docs/release        up to 1.5
external/mit/freetype/dist/include/ft2build.h  up to 1.5
external/mit/freetype/dist/include/freetype/freetype.h up to 1.6
external/mit/freetype/dist/include/freetype/ftadvanc.h up to 1.6
external/mit/freetype/dist/include/freetype/ftbbox.h up to 1.6
external/mit/freetype/dist/include/freetype/ftbdf.h up to 1.6
external/mit/freetype/dist/include/freetype/ftbitmap.h up to 1.6
external/mit/freetype/dist/include/freetype/ftbzip2.h up to 1.6
external/mit/freetype/dist/include/freetype/ftcache.h up to 1.6
external/mit/freetype/dist/include/freetype/ftcid.h up to 1.6
external/mit/freetype/dist/include/freetype/ftcolor.h up to 1.1.1.2
external/mit/freetype/dist/include/freetype/ftdriver.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/fterrdef.h up to 1.6
external/mit/freetype/dist/include/freetype/fterrors.h up to 1.6
external/mit/freetype/dist/include/freetype/ftfntfmt.h up to 1.1.1.4
external/mit/freetype/dist/include/freetype/ftgasp.h up to 1.6
external/mit/freetype/dist/include/freetype/ftglyph.h up to 1.6
external/mit/freetype/dist/include/freetype/ftgxval.h up to 1.6
external/mit/freetype/dist/include/freetype/ftgzip.h up to 1.6
external/mit/freetype/dist/include/freetype/ftimage.h up to 1.6
external/mit/freetype/dist/include/freetype/ftincrem.h up to 1.6
external/mit/freetype/dist/include/freetype/ftlcdfil.h up to 1.6
external/mit/freetype/dist/include/freetype/ftlist.h up to 1.6
external/mit/freetype/dist/include/freetype/ftlzw.h up to 1.6
external/mit/freetype/dist/include/freetype/ftmac.h up to 1.6
external/mit/freetype/dist/include/freetype/ftmm.h up to 1.6
external/mit/freetype/dist/include/freetype/ftmodapi.h up to 1.6
external/mit/freetype/dist/include/freetype/ftmoderr.h up to 1.6
external/mit/freetype/dist/include/freetype/ftotval.h up to 1.6
external/mit/freetype/dist/include/freetype/ftoutln.h up to 1.6
external/mit/freetype/dist/include/freetype/ftparams.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/ftpfr.h up to 1.6
external/mit/freetype/dist/include/freetype/ftrender.h up to 1.6
external/mit/freetype/dist/include/freetype/ftsizes.h up to 1.6
external/mit/freetype/dist/include/freetype/ftsnames.h up to 1.6
external/mit/freetype/dist/include/freetype/ftstroke.h up to 1.6
external/mit/freetype/dist/include/freetype/ftsynth.h up to 1.6
external/mit/freetype/dist/include/freetype/ftsystem.h up to 1.6
external/mit/freetype/dist/include/freetype/fttrigon.h up to 1.6
external/mit/freetype/dist/include/freetype/fttypes.h up to 1.6
external/mit/freetype/dist/include/freetype/ftwinfnt.h up to 1.6
external/mit/freetype/dist/include/freetype/t1tables.h up to 1.6
external/mit/freetype/dist/include/freetype/ttnameid.h up to 1.6
external/mit/freetype/dist/include/freetype/tttables.h up to 1.6
external/mit/freetype/dist/include/freetype/tttags.h up to 1.6
external/mit/freetype/dist/include/freetype/config/ftconfig.h up to 1.10
external/mit/freetype/dist/include/freetype/config/ftheader.h up to 1.6
external/mit/freetype/dist/include/freetype/config/ftmodule.h up to 1.5
external/mit/freetype/dist/include/freetype/config/ftoption.h up to 1.9
external/mit/freetype/dist/include/freetype/config/ftstdlib.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/autohint.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/cffotypes.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/internal/cfftypes.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/internal/ftcalc.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/ftdebug.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/ftdrv.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/internal/ftgloadr.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/fthash.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/internal/ftmemory.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/ftobjs.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/ftpsprop.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/internal/ftrfork.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/ftserv.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/ftstream.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/fttrace.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/ftvalid.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/psaux.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/pshints.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/sfnt.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/t1types.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/tttypes.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svbdf.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svcfftl.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/internal/services/svcid.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svfntfmt.h up to 1.1.1.4
external/mit/freetype/dist/include/freetype/internal/services/svgldict.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svgxval.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svkern.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svmetric.h up to 1.1.1.3
external/mit/freetype/dist/include/freetype/internal/services/svmm.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svotval.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svpfr.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svpostnm.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svprop.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svpscmap.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svpsinfo.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svsfnt.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svttcmap.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svtteng.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svttglyf.h up to 1.6
external/mit/freetype/dist/include/freetype/internal/services/svwinfnt.h up to 1.6
external/mit/freetype/dist/src/autofit/afangles.c up to 1.5
external/mit/freetype/dist/src/autofit/afblue.c up to 1.5
external/mit/freetype/dist/src/autofit/afblue.cin up to 1.5
external/mit/freetype/dist/src/autofit/afblue.dat up to 1.5
external/mit/freetype/dist/src/autofit/afblue.h up to 1.5
external/mit/freetype/dist/src/autofit/afblue.hin up to 1.5
external/mit/freetype/dist/src/autofit/afcjk.c  up to 1.5
external/mit/freetype/dist/src/autofit/afcjk.h  up to 1.5
external/mit/freetype/dist/src/autofit/afcover.h up to 1.5
external/mit/freetype/dist/src/autofit/afdummy.c up to 1.5
external/mit/freetype/dist/src/autofit/afdummy.h up to 1.5
external/mit/freetype/dist/src/autofit/aferrors.h up to 1.5
external/mit/freetype/dist/src/autofit/afglobal.c up to 1.5
external/mit/freetype/dist/src/autofit/afglobal.h up to 1.5
external/mit/freetype/dist/src/autofit/afhints.c up to 1.5
external/mit/freetype/dist/src/autofit/afhints.h up to 1.5
external/mit/freetype/dist/src/autofit/afindic.c up to 1.5
external/mit/freetype/dist/src/autofit/afindic.h up to 1.5
external/mit/freetype/dist/src/autofit/aflatin.c up to 1.5
external/mit/freetype/dist/src/autofit/aflatin.h up to 1.5
external/mit/freetype/dist/src/autofit/aflatin2.c up to 1.5
external/mit/freetype/dist/src/autofit/aflatin2.h up to 1.5
external/mit/freetype/dist/src/autofit/afloader.c up to 1.5
external/mit/freetype/dist/src/autofit/afloader.h up to 1.5
external/mit/freetype/dist/src/autofit/afmodule.c up to 1.5
external/mit/freetype/dist/src/autofit/afmodule.h up to 1.5
external/mit/freetype/dist/src/autofit/afranges.c up to 1.5
external/mit/freetype/dist/src/autofit/afranges.h up to 1.5
external/mit/freetype/dist/src/autofit/afscript.h up to 1.5
external/mit/freetype/dist/src/autofit/afshaper.c up to 1.1.1.4
external/mit/freetype/dist/src/autofit/afshaper.h up to 1.1.1.4
external/mit/freetype/dist/src/autofit/afstyles.h up to 1.5
external/mit/freetype/dist/src/autofit/aftypes.h up to 1.5
external/mit/freetype/dist/src/autofit/afwarp.c up to 1.5
external/mit/freetype/dist/src/autofit/afwarp.h up to 1.5
external/mit/freetype/dist/src/autofit/afwrtsys.h up to 1.5
external/mit/freetype/dist/src/autofit/autofit.c up to 1.5
external/mit/freetype/dist/src/autofit/module.mk up to 1.5
external/mit/freetype/dist/src/autofit/rules.mk up to 1.5
external/mit/freetype/dist/src/base/ftadvanc.c  up to 1.5
external/mit/freetype/dist/src/base/ftbase.c    up to 1.5
external/mit/freetype/dist/src/base/ftbase.h    up to 1.5
external/mit/freetype/dist/src/base/ftbbox.c    up to 1.5
external/mit/freetype/dist/src/base/ftbdf.c    up to 1.5
external/mit/freetype/dist/src/base/ftbitmap.c  up to 1.5
external/mit/freetype/dist/src/base/ftcalc.c    up to 1.5
external/mit/freetype/dist/src/base/ftcid.c    up to 1.5
external/mit/freetype/dist/src/base/ftcolor.c  up to 1.1.1.2
external/mit/freetype/dist/src/base/ftdbgmem.c  up to 1.5
external/mit/freetype/dist/src/base/ftdebug.c  up to 1.5
external/mit/freetype/dist/src/base/fterrors.c  up to 1.1.1.2
external/mit/freetype/dist/src/base/ftfntfmt.c  up to 1.5
external/mit/freetype/dist/src/base/ftfstype.c  up to 1.5
external/mit/freetype/dist/src/base/ftgasp.c    up to 1.5
external/mit/freetype/dist/src/base/ftgloadr.c  up to 1.5
external/mit/freetype/dist/src/base/ftglyph.c  up to 1.5
external/mit/freetype/dist/src/base/ftgxval.c  up to 1.5
external/mit/freetype/dist/src/base/fthash.c    up to 1.1.1.4
external/mit/freetype/dist/src/base/ftinit.c    up to 1.5
external/mit/freetype/dist/src/base/ftlcdfil.c  up to 1.5
external/mit/freetype/dist/src/base/ftmac.c    up to 1.5
external/mit/freetype/dist/src/base/ftmm.c      up to 1.5
external/mit/freetype/dist/src/base/ftobjs.c    up to 1.5
external/mit/freetype/dist/src/base/ftotval.c  up to 1.5
external/mit/freetype/dist/src/base/ftoutln.c  up to 1.5
external/mit/freetype/dist/src/base/ftpatent.c  up to 1.5
external/mit/freetype/dist/src/base/ftpfr.c    up to 1.5
external/mit/freetype/dist/src/base/ftpsprop.c  up to 1.1.1.3
external/mit/freetype/dist/src/base/ftrfork.c  up to 1.5
external/mit/freetype/dist/src/base/ftsnames.c  up to 1.5
external/mit/freetype/dist/src/base/ftstream.c  up to 1.5
external/mit/freetype/dist/src/base/ftstroke.c  up to 1.5
external/mit/freetype/dist/src/base/ftsynth.c  up to 1.5
external/mit/freetype/dist/src/base/ftsystem.c  up to 1.5
external/mit/freetype/dist/src/base/fttrigon.c  up to 1.5
external/mit/freetype/dist/src/base/fttype1.c  up to 1.5
external/mit/freetype/dist/src/base/ftutil.c    up to 1.5
external/mit/freetype/dist/src/base/ftver.rc    up to 1.1.1.3
external/mit/freetype/dist/src/base/ftwinfnt.c  up to 1.5
external/mit/freetype/dist/src/base/rules.mk    up to 1.5
external/mit/freetype/dist/src/bdf/bdf.c        up to 1.4
external/mit/freetype/dist/src/bdf/bdf.h        up to 1.5
external/mit/freetype/dist/src/bdf/bdfdrivr.c  up to 1.5
external/mit/freetype/dist/src/bdf/bdfdrivr.h  up to 1.5
external/mit/freetype/dist/src/bdf/bdferror.h  up to 1.5
external/mit/freetype/dist/src/bdf/bdflib.c    up to 1.5
external/mit/freetype/dist/src/bzip2/ftbzip2.c  up to 1.5
external/mit/freetype/dist/src/bzip2/rules.mk  up to 1.5
external/mit/freetype/dist/src/cache/ftcache.c  up to 1.5
external/mit/freetype/dist/src/cache/ftcbasic.c up to 1.5
external/mit/freetype/dist/src/cache/ftccache.c up to 1.5
external/mit/freetype/dist/src/cache/ftccache.h up to 1.5
external/mit/freetype/dist/src/cache/ftccback.h up to 1.5
external/mit/freetype/dist/src/cache/ftccmap.c  up to 1.5
external/mit/freetype/dist/src/cache/ftcerror.h up to 1.5
external/mit/freetype/dist/src/cache/ftcglyph.c up to 1.5
external/mit/freetype/dist/src/cache/ftcglyph.h up to 1.5
external/mit/freetype/dist/src/cache/ftcimage.c up to 1.5
external/mit/freetype/dist/src/cache/ftcimage.h up to 1.5
external/mit/freetype/dist/src/cache/ftcmanag.c up to 1.5
external/mit/freetype/dist/src/cache/ftcmanag.h up to 1.5
external/mit/freetype/dist/src/cache/ftcmru.c  up to 1.5
external/mit/freetype/dist/src/cache/ftcmru.h  up to 1.5
external/mit/freetype/dist/src/cache/ftcsbits.c up to 1.5
external/mit/freetype/dist/src/cache/ftcsbits.h up to 1.5
external/mit/freetype/dist/src/cache/rules.mk  up to 1.5
external/mit/freetype/dist/src/cff/cff.c        up to 1.5
external/mit/freetype/dist/src/cff/cffcmap.c    up to 1.5
external/mit/freetype/dist/src/cff/cffcmap.h    up to 1.5
external/mit/freetype/dist/src/cff/cffdrivr.c  up to 1.5
external/mit/freetype/dist/src/cff/cffdrivr.h  up to 1.5
external/mit/freetype/dist/src/cff/cfferrs.h    up to 1.5
external/mit/freetype/dist/src/cff/cffgload.c  up to 1.5
external/mit/freetype/dist/src/cff/cffgload.h  up to 1.5
external/mit/freetype/dist/src/cff/cffload.c    up to 1.13
external/mit/freetype/dist/src/cff/cffload.h    up to 1.5
external/mit/freetype/dist/src/cff/cffobjs.c    up to 1.5
external/mit/freetype/dist/src/cff/cffobjs.h    up to 1.5
external/mit/freetype/dist/src/cff/cffparse.c  up to 1.5
external/mit/freetype/dist/src/cff/cffparse.h  up to 1.5
external/mit/freetype/dist/src/cff/cfftoken.h  up to 1.5
external/mit/freetype/dist/src/cff/module.mk    up to 1.5
external/mit/freetype/dist/src/cff/rules.mk    up to 1.5
external/mit/freetype/dist/src/cid/ciderrs.h    up to 1.5
external/mit/freetype/dist/src/cid/cidgload.c  up to 1.5
external/mit/freetype/dist/src/cid/cidgload.h  up to 1.5
external/mit/freetype/dist/src/cid/cidload.c    up to 1.5
external/mit/freetype/dist/src/cid/cidload.h    up to 1.5
external/mit/freetype/dist/src/cid/cidobjs.c    up to 1.5
external/mit/freetype/dist/src/cid/cidobjs.h    up to 1.5
external/mit/freetype/dist/src/cid/cidparse.c  up to 1.5
external/mit/freetype/dist/src/cid/cidparse.h  up to 1.5
external/mit/freetype/dist/src/cid/cidriver.c  up to 1.5
external/mit/freetype/dist/src/cid/cidriver.h  up to 1.5
external/mit/freetype/dist/src/cid/cidtoken.h  up to 1.5
external/mit/freetype/dist/src/cid/module.mk    up to 1.5
external/mit/freetype/dist/src/cid/rules.mk    up to 1.5
external/mit/freetype/dist/src/cid/type1cid.c  up to 1.5
external/mit/freetype/dist/src/gxvalid/README  up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvalid.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvalid.h up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvbsln.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvcommn.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvcommn.h up to 1.5
external/mit/freetype/dist/src/gxvalid/gxverror.h up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvfeat.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvfeat.h up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvfgen.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvjust.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvkern.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvlcar.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmod.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmod.h up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmort.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmort.h up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmort0.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmort1.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmort2.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmort4.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmort5.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmorx.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmorx.h up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmorx0.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmorx1.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmorx2.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmorx4.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvmorx5.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvopbd.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvprop.c up to 1.5
external/mit/freetype/dist/src/gxvalid/gxvtrak.c up to 1.5
external/mit/freetype/dist/src/gxvalid/module.mk up to 1.5
external/mit/freetype/dist/src/gxvalid/rules.mk up to 1.5
external/mit/freetype/dist/src/gzip/ftgzip.c    up to 1.15
external/mit/freetype/dist/src/gzip/infblock.c  up to 1.1.1.2
external/mit/freetype/dist/src/gzip/infcodes.c  up to 1.1.1.2
external/mit/freetype/dist/src/gzip/inflate.c  up to 1.1.1.2
external/mit/freetype/dist/src/gzip/infutil.h  up to 1.1.1.2
external/mit/freetype/dist/src/gzip/rules.mk    up to 1.5
external/mit/freetype/dist/src/lzw/ftlzw.c      up to 1.5
external/mit/freetype/dist/src/lzw/ftzopen.c    up to 1.12
external/mit/freetype/dist/src/lzw/ftzopen.h    up to 1.5
external/mit/freetype/dist/src/lzw/rules.mk    up to 1.5
external/mit/freetype/dist/src/otvalid/module.mk up to 1.5
external/mit/freetype/dist/src/otvalid/otvalid.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvalid.h up to 1.5
external/mit/freetype/dist/src/otvalid/otvbase.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvcommn.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvcommn.h up to 1.5
external/mit/freetype/dist/src/otvalid/otverror.h up to 1.5
external/mit/freetype/dist/src/otvalid/otvgdef.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvgpos.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvgpos.h up to 1.5
external/mit/freetype/dist/src/otvalid/otvgsub.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvjstf.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvmath.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvmod.c up to 1.5
external/mit/freetype/dist/src/otvalid/otvmod.h up to 1.5
external/mit/freetype/dist/src/otvalid/rules.mk up to 1.5
external/mit/freetype/dist/src/pcf/pcf.c        up to 1.4
external/mit/freetype/dist/src/pcf/pcf.h        up to 1.5
external/mit/freetype/dist/src/pcf/pcfdrivr.c  up to 1.5
external/mit/freetype/dist/src/pcf/pcfdrivr.h  up to 1.5
external/mit/freetype/dist/src/pcf/pcferror.h  up to 1.5
external/mit/freetype/dist/src/pcf/pcfread.c    up to 1.5
external/mit/freetype/dist/src/pcf/pcfread.h    up to 1.4
external/mit/freetype/dist/src/pcf/pcfutil.c    up to 1.1.1.5
external/mit/freetype/dist/src/pcf/pcfutil.h    up to 1.4
external/mit/freetype/dist/src/pfr/module.mk    up to 1.5
external/mit/freetype/dist/src/pfr/pfr.c        up to 1.5
external/mit/freetype/dist/src/pfr/pfrcmap.c    up to 1.5
external/mit/freetype/dist/src/pfr/pfrcmap.h    up to 1.5
external/mit/freetype/dist/src/pfr/pfrdrivr.c  up to 1.5
external/mit/freetype/dist/src/pfr/pfrdrivr.h  up to 1.5
external/mit/freetype/dist/src/pfr/pfrerror.h  up to 1.5
external/mit/freetype/dist/src/pfr/pfrgload.c  up to 1.5
external/mit/freetype/dist/src/pfr/pfrgload.h  up to 1.5
external/mit/freetype/dist/src/pfr/pfrload.c    up to 1.5
external/mit/freetype/dist/src/pfr/pfrload.h    up to 1.5
external/mit/freetype/dist/src/pfr/pfrobjs.c    up to 1.5
external/mit/freetype/dist/src/pfr/pfrobjs.h    up to 1.5
external/mit/freetype/dist/src/pfr/pfrsbit.c    up to 1.5
external/mit/freetype/dist/src/pfr/pfrsbit.h    up to 1.5
external/mit/freetype/dist/src/pfr/pfrtypes.h  up to 1.5
external/mit/freetype/dist/src/pfr/rules.mk    up to 1.5
external/mit/freetype/dist/src/psaux/afmparse.c up to 1.5
external/mit/freetype/dist/src/psaux/afmparse.h up to 1.5
external/mit/freetype/dist/src/psaux/cffdecode.c up to 1.1.1.3
external/mit/freetype/dist/src/psaux/cffdecode.h up to 1.1.1.3
external/mit/freetype/dist/src/psaux/module.mk  up to 1.5
external/mit/freetype/dist/src/psaux/psarrst.c  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psaux.c    up to 1.5
external/mit/freetype/dist/src/psaux/psauxerr.h up to 1.5
external/mit/freetype/dist/src/psaux/psauxmod.c up to 1.5
external/mit/freetype/dist/src/psaux/psauxmod.h up to 1.5
external/mit/freetype/dist/src/psaux/psblues.c  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psconv.c  up to 1.5
external/mit/freetype/dist/src/psaux/psconv.h  up to 1.5
external/mit/freetype/dist/src/psaux/pserror.h  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psfixed.h  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psfont.c  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psfont.h  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psft.c    up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psft.h    up to 1.1.1.3
external/mit/freetype/dist/src/psaux/pshints.c  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psintrp.c  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psobjs.c  up to 1.5
external/mit/freetype/dist/src/psaux/psobjs.h  up to 1.5
external/mit/freetype/dist/src/psaux/psread.c  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psstack.c  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/psstack.h  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/pstypes.h  up to 1.1.1.3
external/mit/freetype/dist/src/psaux/rules.mk  up to 1.5
external/mit/freetype/dist/src/psaux/t1cmap.c  up to 1.5
external/mit/freetype/dist/src/psaux/t1cmap.h  up to 1.5
external/mit/freetype/dist/src/psaux/t1decode.c up to 1.5
external/mit/freetype/dist/src/psaux/t1decode.h up to 1.5
external/mit/freetype/dist/src/pshinter/module.mk up to 1.5
external/mit/freetype/dist/src/pshinter/pshalgo.c up to 1.5
external/mit/freetype/dist/src/pshinter/pshalgo.h up to 1.5
external/mit/freetype/dist/src/pshinter/pshglob.c up to 1.5
external/mit/freetype/dist/src/pshinter/pshglob.h up to 1.5
external/mit/freetype/dist/src/pshinter/pshinter.c up to 1.5
external/mit/freetype/dist/src/pshinter/pshmod.c up to 1.5
external/mit/freetype/dist/src/pshinter/pshmod.h up to 1.5
external/mit/freetype/dist/src/pshinter/pshnterr.h up to 1.5
external/mit/freetype/dist/src/pshinter/pshrec.c up to 1.5
external/mit/freetype/dist/src/pshinter/pshrec.h up to 1.5
external/mit/freetype/dist/src/pshinter/rules.mk up to 1.5
external/mit/freetype/dist/src/psnames/module.mk up to 1.5
external/mit/freetype/dist/src/psnames/psmodule.c up to 1.5
external/mit/freetype/dist/src/psnames/psmodule.h up to 1.5
external/mit/freetype/dist/src/psnames/psnamerr.h up to 1.5
external/mit/freetype/dist/src/psnames/psnames.c up to 1.5
external/mit/freetype/dist/src/psnames/pstables.h up to 1.5
external/mit/freetype/dist/src/psnames/rules.mk up to 1.5
external/mit/freetype/dist/src/raster/ftmisc.h  up to 1.5
external/mit/freetype/dist/src/raster/ftraster.c up to 1.5
external/mit/freetype/dist/src/raster/ftraster.h up to 1.5
external/mit/freetype/dist/src/raster/ftrend1.c up to 1.5
external/mit/freetype/dist/src/raster/ftrend1.h up to 1.5
external/mit/freetype/dist/src/raster/module.mk up to 1.5
external/mit/freetype/dist/src/raster/raster.c  up to 1.5
external/mit/freetype/dist/src/raster/rasterrs.h up to 1.5
external/mit/freetype/dist/src/raster/rules.mk  up to 1.5
external/mit/freetype/dist/src/sfnt/module.mk  up to 1.5
external/mit/freetype/dist/src/sfnt/pngshim.c  up to 1.5
external/mit/freetype/dist/src/sfnt/pngshim.h  up to 1.5
external/mit/freetype/dist/src/sfnt/rules.mk    up to 1.5
external/mit/freetype/dist/src/sfnt/sfdriver.c  up to 1.5
external/mit/freetype/dist/src/sfnt/sfdriver.h  up to 1.5
external/mit/freetype/dist/src/sfnt/sferrors.h  up to 1.5
external/mit/freetype/dist/src/sfnt/sfnt.c      up to 1.5
external/mit/freetype/dist/src/sfnt/sfobjs.c    up to 1.5
external/mit/freetype/dist/src/sfnt/sfobjs.h    up to 1.5
external/mit/freetype/dist/src/sfnt/ttbdf.c    up to 1.5
external/mit/freetype/dist/src/sfnt/ttbdf.h    up to 1.5
external/mit/freetype/dist/src/sfnt/ttcmap.c    up to 1.13
external/mit/freetype/dist/src/sfnt/ttcmap.h    up to 1.5
external/mit/freetype/dist/src/sfnt/ttcmapc.h  up to 1.5
external/mit/freetype/dist/src/sfnt/ttcolr.c    up to 1.1.1.2
external/mit/freetype/dist/src/sfnt/ttcolr.h    up to 1.1.1.2
external/mit/freetype/dist/src/sfnt/ttcpal.c    up to 1.1.1.2
external/mit/freetype/dist/src/sfnt/ttcpal.h    up to 1.1.1.2
external/mit/freetype/dist/src/sfnt/ttkern.c    up to 1.5
external/mit/freetype/dist/src/sfnt/ttkern.h    up to 1.5
external/mit/freetype/dist/src/sfnt/ttload.c    up to 1.5
external/mit/freetype/dist/src/sfnt/ttload.h    up to 1.5
external/mit/freetype/dist/src/sfnt/ttmtx.c    up to 1.5
external/mit/freetype/dist/src/sfnt/ttmtx.h    up to 1.5
external/mit/freetype/dist/src/sfnt/ttpost.c    up to 1.5
external/mit/freetype/dist/src/sfnt/ttpost.h    up to 1.5
external/mit/freetype/dist/src/sfnt/ttsbit.c    up to 1.5
external/mit/freetype/dist/src/sfnt/ttsbit.h    up to 1.5
external/mit/freetype/dist/src/smooth/ftgrays.c up to 1.5
external/mit/freetype/dist/src/smooth/ftgrays.h up to 1.5
external/mit/freetype/dist/src/smooth/ftsmerrs.h up to 1.5
external/mit/freetype/dist/src/smooth/ftsmooth.c up to 1.14
external/mit/freetype/dist/src/smooth/ftsmooth.h up to 1.5
external/mit/freetype/dist/src/smooth/module.mk up to 1.5
external/mit/freetype/dist/src/smooth/rules.mk  up to 1.5
external/mit/freetype/dist/src/smooth/smooth.c  up to 1.5
external/mit/freetype/dist/src/tools/afblue.pl  up to 1.5
external/mit/freetype/dist/src/tools/apinames.c up to 1.4
external/mit/freetype/dist/src/tools/glnames.py up to 1.5
external/mit/freetype/dist/src/tools/test_afm.c up to 1.1.1.5
external/mit/freetype/dist/src/tools/test_bbox.c up to 1.1.1.3
external/mit/freetype/dist/src/tools/test_trig.c up to 1.1.1.5
external/mit/freetype/dist/src/tools/update-copyright-year up to 1.5
external/mit/freetype/dist/src/tools/ftrandom/ftrandom.c up to 1.4
external/mit/freetype/dist/src/truetype/module.mk up to 1.5
external/mit/freetype/dist/src/truetype/rules.mk up to 1.5
external/mit/freetype/dist/src/truetype/truetype.c up to 1.5
external/mit/freetype/dist/src/truetype/ttdriver.c up to 1.5
external/mit/freetype/dist/src/truetype/ttdriver.h up to 1.5
external/mit/freetype/dist/src/truetype/tterrors.h up to 1.5
external/mit/freetype/dist/src/truetype/ttgload.c up to 1.5
external/mit/freetype/dist/src/truetype/ttgload.h up to 1.5
external/mit/freetype/dist/src/truetype/ttgxvar.c up to 1.5
external/mit/freetype/dist/src/truetype/ttgxvar.h up to 1.5
external/mit/freetype/dist/src/truetype/ttinterp.c up to 1.5
external/mit/freetype/dist/src/truetype/ttinterp.h up to 1.5
external/mit/freetype/dist/src/truetype/ttobjs.c up to 1.5
external/mit/freetype/dist/src/truetype/ttobjs.h up to 1.5
external/mit/freetype/dist/src/truetype/ttpload.c up to 1.5
external/mit/freetype/dist/src/truetype/ttpload.h up to 1.5
external/mit/freetype/dist/src/truetype/ttsubpix.c up to 1.5
external/mit/freetype/dist/src/truetype/ttsubpix.h up to 1.5
external/mit/freetype/dist/src/type1/module.mk  up to 1.5
external/mit/freetype/dist/src/type1/rules.mk  up to 1.5
external/mit/freetype/dist/src/type1/t1afm.c    up to 1.5
external/mit/freetype/dist/src/type1/t1afm.h    up to 1.5
external/mit/freetype/dist/src/type1/t1driver.c up to 1.5
external/mit/freetype/dist/src/type1/t1driver.h up to 1.5
external/mit/freetype/dist/src/type1/t1errors.h up to 1.5
external/mit/freetype/dist/src/type1/t1gload.c  up to 1.5
external/mit/freetype/dist/src/type1/t1gload.h  up to 1.5
external/mit/freetype/dist/src/type1/t1load.c  up to 1.5
external/mit/freetype/dist/src/type1/t1load.h  up to 1.5
external/mit/freetype/dist/src/type1/t1objs.c  up to 1.5
external/mit/freetype/dist/src/type1/t1objs.h  up to 1.5
external/mit/freetype/dist/src/type1/t1parse.c  up to 1.5
external/mit/freetype/dist/src/type1/t1parse.h  up to 1.5
external/mit/freetype/dist/src/type1/t1tokens.h up to 1.5
external/mit/freetype/dist/src/type1/type1.c    up to 1.5
external/mit/freetype/dist/src/type42/module.mk up to 1.5
external/mit/freetype/dist/src/type42/rules.mk  up to 1.5
external/mit/freetype/dist/src/type42/t42drivr.c up to 1.5
external/mit/freetype/dist/src/type42/t42drivr.h up to 1.5
external/mit/freetype/dist/src/type42/t42error.h up to 1.5
external/mit/freetype/dist/src/type42/t42objs.c up to 1.5
external/mit/freetype/dist/src/type42/t42objs.h up to 1.5
external/mit/freetype/dist/src/type42/t42parse.c up to 1.5
external/mit/freetype/dist/src/type42/t42parse.h up to 1.5
external/mit/freetype/dist/src/type42/t42types.h up to 1.5
external/mit/freetype/dist/src/type42/type42.c  up to 1.5
external/mit/freetype/dist/src/winfonts/fnterrs.h up to 1.5
external/mit/freetype/dist/src/winfonts/module.mk up to 1.5
external/mit/freetype/dist/src/winfonts/rules.mk up to 1.5
external/mit/freetype/dist/src/winfonts/winfnt.c up to 1.5
external/mit/freetype/dist/src/winfonts/winfnt.h up to 1.5

Update freetype to 2.10.4.

(martin)

2020-10-22 11:21:42 UTC netbsd-9 commitmail json YAML

2020-10-22 09:28:30 UTC MAIN commitmail json YAML

2020-10-22 09:14:41 UTC MAIN commitmail json YAML

If the framebuffer node already exists, we don't need to create one

(jmcneill)

2020-10-22 08:26:00 UTC MAIN commitmail json YAML

Note update to tzdata 2020d

(kre)

2020-10-22 08:24:04 UTC MAIN commitmail json YAML

2020-10-22 07:36:02 UTC MAIN commitmail json YAML

Use the correct (more relaxed) membar_exit barrier in cpu_switchto_softint

(skrll)

2020-10-22 07:34:18 UTC MAIN commitmail json YAML

Use the isb macro - missed in previous commit

(skrll)

2020-10-22 07:31:15 UTC MAIN commitmail json YAML

2020-10-22 07:23:25 UTC MAIN commitmail json YAML

2020-10-22 07:16:06 UTC MAIN commitmail json YAML

Don't trap EL0 accesses to the DCC registers.
VMWare use "mrs xzr, mdccsr_el0" for guest side backdoor.

(ryo)